Process Owner 703 ??
Hello
Under Home " System Health " Process Manager all php process are
username /usr/bin/php /home/username/public_html/index.php
but there is 1 domain that is
703 /usr/bin/php /home/username/public_html/index.php
Why ??
-
703 it's id user on system. 0 -
if you have access to the /etc/passwd file you can do the following to find out who it is: grep 703 /etc/passwd 0 -
703 is "username" but why it's indicate as 703 and not username on process list ? may be usefull for check how php is called .. 0 -
Hello :) Is the username longer than eight characters? Or, have you made any manual changes to the /etc/passwd file? Thank you. 0 -
]Hello :) Is the username longer than eight characters? Or, have you made any manual changes to the /etc/passwd file? Thank you.
Hi Michael Yes, username is 9 characters0 -
It's a limitation of the "ps" command: Why do long usernames get printed as numbers? The UNIX and POSIX standards require that user names and group names be printed as decimal integers when there is not enough room in the column. Truncating the names, besides being a violation of the standard, would lead to confusion between names like MichelleRichards and MichelleRichardson.
Thank you.0
Please sign in to leave a comment.
Comments
6 comments