1、找到mysql 的 mysql.server/ 文件位置
find / -name mysql.server
2、编辑mysql.server脚本,并将mysql.server脚本添加到linux服务
3、将mysql.server 复制到etc/init.d/mysqld 目录
cp /app/db/mysql/support-files/mysql.server /etc/init.d/mysqld
4、授权
chmod 755 /etc/init.d/mysqld
5、将mysqld加入到服务中
chkconfig --add mysqld
6、启动
service mysqld start
7、开机启动mysqld服务
chkconfig mysqld on
8、检查状态
service mysqld status