MySQL startup script under BSD/Linux

You can start the MySQL server directly as described here. But most Linux distribution comes to special start and stop script. First, you must login as the root user. Use su - command to login as the root user.

If you are using Red Hat Linux / Fedora Linux:
Start MySQL

# service mysql start

OR

# /etc/init.d/mysql start

Stop MySQL

# service mysql stop

OR

# /etc/init.d/mysql stop

If you are using Debian Linux:
Start MySQL

# /etc/init.d/mysql start

Stop MySQL

# /etc/init.d/mysql stop

If you are using FreeBSD:
Open /etc/rc.conf file and add following line:

vi /etc/rc.conf

And append following line:

mysql_enable="YES"

To Start MySQL under FreeBSD:

#/usr/local/etc/rc.d/mysql-server.sh start

To Stop MySQL under FreeBSD:

#/usr/local/etc/rc.d/mysql-server.sh stop

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post: How do I make a Linux or FreeBSD file an executable file?

Next post: My scripts in cgi-bin directory not working, how do I troubleshoot this problem?