Linux开机启动服务
Linux服务器重启后,有些服务是不会自动重启的,可以设置为开机自启。
以apache nginx iptables为例:
chkconfig --add httpd
chkconfig httpd on
chkconfig --add nginx
chkconfig nginx on
chkconfig --add iptables
chkconfig iptables on
如果还没配置成服务,需先配置成服务,然后再设置开机启动。
o(╯□╰)o (゜-゜)つロ o(╯□╰)o
Linux服务器重启后,有些服务是不会自动重启的,可以设置为开机自启。
以apache nginx iptables为例:
chkconfig --add httpd
chkconfig httpd on
chkconfig --add nginx
chkconfig nginx on
chkconfig --add iptables
chkconfig iptables on
如果还没配置成服务,需先配置成服务,然后再设置开机启动。