可以将如下内容添加到/etc/rc.d/rc.local来管理开机自启动程序
注意/etc/rc.d/rc.local文件需要具有可执行权限
#mysql
[ $(netstat -nlpt|grep :3306|wc -l) -eq 0 ] && service start mysqld
#redis
[ $(netstat -nlpt|grep :6379|wc -l) -eq 0 ] && service redis start
#gogs
[ $(netstat -nlpt|grep :3000|wc -l) -eq 0 ] && su - git -c 'cd /home/git/gogs;nohup ./gogs web &'
#ntpd
[ $(netstat -nlpu|grep :123|wc -l) -eq 0 ]&&service ntpd start
#php-fpm
[ $(netstat -nlpt|grep :9000|wc -l) -eq 0 ]&&/usr/local/php/sbin/php-fpm
#workerman
[ $(netstat -nlpt|grep :8282|wc -l) -eq 0 ]&&cd /home/www/biglove-workerman && php start.php start -d && cd -
#nginx
[ $(netstat -nlpt|grep :80|wc -l) -eq 0 ]&&/usr/local/nginx/sbin/nginx