第一步:新建start文件,里面的内容如下
#!/bin/bash
#chkconfig: 2345 80 08
#description: Start
echo “service iptables stop”
service iptables stop
echo “Starting MySQL Service …”
/opt/sudytech/mysql/bin/mysqld_safe &
注:linux服务器mysql开机自启动 (这个是我百度微云里的,已分享,可以下载查看)
第二步:
1)放在/etc/rc.d/init.d/start
2)把start的属性改成 “777”(chmod -R 777 /etc/rc.d/init.d/start)
3)查看start的属性是否修改成功 ls -l /etc/rc.d/init.d/start
4)运行 chkconfig –add start
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/4910.html