知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

如何让你的程序在linux开机时自动启动

发布时间:2014-09-05 15:25:21作者:知识屋


如何让你的程序在linux开机时自动启动
 
只需要在/etc/rc.local里添加你的程序即可,例如需要nginx服务在每次开机时
自动运行则可以加入如下的配置,添加最后一行/usr/local/nginx/sbin/nginx即可
  www.zhishiwu.com  
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
 
touch /var/lock/subsys/local
/usr/local/nginx/sbin/nginx
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜