Quote:
|
mysql is not started automatically (/etc/.rc.d)
|
So you just have to issue this command to start mysqld whenever you want :
/usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/run/mysql/mysql.pid --log=/var/lib/mysql/access_log --err-log=/var/lib/mysql/error_log &
Maybe do an alias for it in your ~/.bashrc like :
start_mysql="/usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/run/mysql/mysql.pid --log=/var/lib/mysql/access_log --err-log=/var/lib/mysql/error_log &"