View Single Post
  #3  
Old 10-24-2003, 04:43 PM
krich
Hill Giant
 
Join Date: May 2003
Location: The Great Northwest
Posts: 150
Default

If you're root, you can do the following:

To see if its running:
Code:
service mysqld status
If its stopped, you can start it:
Code:
service mysqld start
If its running but you want to stop it:
Code:
service mysqld stop
If its running and you want to restart it:
Code:
service mysqld restart
If you want to play around with mysql, login as default user by typing:
Code:
mysql -u root
regards,

krich
Reply With Quote