之前在centos6中添加开机启动一般都是在/etc/rc.local下添加命令或脚本
# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
centos7中已经不推荐通过/etc/rc.local来实现开机运行脚本,而是通过systemd或udev规则实现。
[root@localhost ~]# ll /etc/rc.local #软链接,默认是有执行权限,但是rc.d/rc.local是没有执行权限的。 再次重启,脚本就可以运行了。 nginx启动另一种方法:
通过查阅资料,,程序启动脚本都在/usr/lib/systemd/system下,比如nginx为nginx.service 可以看到是创建软连接到/etc/systemd/system/multi-user.target.wants/下,根据这个文件手动创建源码编译的nginx启动脚本 [Unit] Description=The nginx HTTP and reverse proxy server After=syslog.target network.target remote-fs.target nss-lookup.target [Service] Type=forking PIDFile=/usr/local/nginx/logs/nginx.pid ExecStartPre=/usr/local/nginx/sbin/nginx -t ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf ExecReload=/bin/kill -s HUP $MAINPID ExecStop=/bin/kill -s QUIT $MAINPID PrivateTmp=true [Install] WantedBy=multi-user.target这样就可以实现开机启动,而且可以用systemdctl start/stop/status nginx管理nginx服务。 (责任编辑:IT) |