If your server is running on Linux you can also use OS commands to determine the start date of the process. For instance:
This will return the process information including the process ID and start time.
Code:
# ps -fu mysql
UID PID PPID C STIME TTY TIME CMD
mysql 3436 3385 0 Sep06 ? 00:02:22 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/lib/mysql/mysqld.pid --skip-external-locking --port=3306 --socket=/var/lib/
If the start time (STIME) is not sufficient in this case you can have a look at the process directory (using root):
Code:
ls -lad /proc/3436
dr-xr-xr-x 6 mysql mysql 0 Sep 6 21:45 /proc/3436
This directory is created when the process gets created and one exists for each process running on the server.