
Originally Posted by
john_hudson
Use Yast to go into System Services and check mysql and apache and everything will be OK.
You shouldn't try to run mysql from the Linux root at all as Apache is up and running and you will be vulnerable, only from user.
If you are worried about accidents while root, use sudo:
Code:
sudo /usr/sbin/rcmysql start
or
Code:
sudo /etc/init.d/mysql start
which is portable across Linuxes.
Much faster than firing up YaST and works over a terminal connection.