sysVinit

You are viewing an old version of this article. View the current version here.

sysVinit is one of the most common service managers. On systems that use sysVinit, the mysql.server script is normally installed to /etc/init.d/mysql. The service can be interacted with by using the service command. The service can be enabled to start at boot with the chkconfig command.

Interacting with the MariaDB Server Process

Starting the MariaDB Server Process on Boot

chkconfig --add mysql
chkconfig --level 345 mysql on

Starting the MariaDB Server Process

service mysql start

Stopping the MariaDB Server Process

service mysql stop

Checking the Status of the MariaDB Server Process

service mysql status

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.