[root-shell]
> cd /etc/init.d
> chkconfig mysql
off
> chkconfig mysql on
> chkconfig mysql
on
> rcmysql status
Checking for service MySQL: Unused
> rcmysql start
> rcmysql status
Checking for service MySQL: Running
[root-shell]
> cd /etc/init.d
> find . -name "*mysql*"
./mysql
> insserv mysql
> find . -name "*mysql*"
./mysql
./rc2.d/S12mysql
./rc2.d/K10mysql
./rc3.d/S12mysql
./rc3.d/K10mysql
./rc5.d/S12mysql
./rc5.d/K10mysql
> rcmysql status
Checking for service MySQL: Unused
> rcmysql start
> rcmysql status
Checking for service MySQL: Running