Linux添加开机启动命令】的更多相关文章

1.vi /etc/rc.d/rc.local 添加要启动的命令 如: service php-fpm start  //这样,开机就自动启动了php扩展 2. crontab -e   //是写定时任务的.…
linux 添加开机启动项的三种方法. (1)编辑文件 /etc/rc.local 输入命令:vim /etc/rc.local 将出现类似如下的文本片段: #!/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 sty…
使用chkconfig命令可以查看在不同启动级别下课自动启动的服务(或是程序),命令格式如下:chkconfig --list可能输出如下:openvpn 0:关闭 1:开启 ...... 6:关闭 (0-6 为启动级别 ; 关闭/开启为相应级别下该服务的自动启动选项)如果希望对自动启动选项做出改变,命令格式为:chkconfig --level x name on/offz.B. chkconfig --level 5 openvpn off以上的命令可以查询系统可提供的服务,如果希望开机时启…
使用chkconfig命令可以查看在不同启动级别下课自动启动的服务(或是程序),命令格式如下: chkconfig --list 可能输出如下: network         0:off   1:off   2:on    3:on    4:on    5:on    6:off ntpd            0:off   1:off   2:on    3:on    4:on    5:on    6:off ntpdate         0:off   1:off   2:off…
系统启动时需要加载的配置文件 /etc/profile./root/.bash_profile/etc/bashrc./root/.bashrc/etc/profile.d/*.sh./etc/profile.d/lang.sh/etc/sysconfig/i18n./etc/rc.local(/etc/rc.d/rc.local) 一.修改开机启动文件:/etc/rc.local(或者/etc/rc.d/rc.local) # .编辑rc.local文件 [root@localhost ~]#…
  1.编辑文件 /etc/rc.localvim /etc/rc.local #!/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/l…
[root@mysql ~]# ll /etc/rc.local lrwxrwxrwx. 1 root root 13 Mar 12 22:20 /etc/rc.local -> rc.d/rc.local #rc.local中的命令,会在boot时执行 #rc.local文件默认没有执行权限,这样不会boot运行,需要添加x权限. [root@mysql ~]# cat /etc/rc.local #!/bin/bash touch /var/lock/subsys/local /bin/sh…
1.chkconfig 配置开机启动 在  /etc/init.d  创建执行服务的可执行脚本,赋予脚本可执行权限.如果是通过yum 或者rpm安装的,并且已经在该目录下存在对应的启动脚本,就不用自己创建了. 需要开机通过chkconfig设置开机启动的服务,必须在 /etc/init.d 目录创建一个可执行脚本,服务名称就是脚本名称.每个被chkconfig管理的服务需要在对应的init.d下的脚本加上两行或者更多行的注释. # chkconfig:  chkconfig缺省启动的运行级以及启…
see http://phpcj.org/blog/%E4%B8%8D%E5%90%8Clinux%E7%B3%BB%E7%BB%9F%E6%B7%BB%E5%8A%A0%E5%BC%80%E6%9C%BA%E5%90%AF%E5%8A%A8%E7%A8%8B%E5%BA%8F%E7%9A%84%E5%91%BD%E4%BB%A4/ 不同linux系统添加开机启动程序的命令作者: 清风 日期: 2011 年 9 月 16 日 发表评论 (0) 查看评论 gentoo: rc-update add…
nginx -t 测试 配置文件是否正确,同时可以查看配置文件路径 nginx -c /usr/local/nginx/conf/nginx.conf   启动nginx ps -ef|grep nginx 查看nginx 进程号 左边前三个数字 分别 为UID(被该UID所拥有).PID (程序ID,即进程号).PPID (上级父程序ID) 杀死进程 kill -QUIT 2072 重启 nginx: nginx -s reload 关闭nginx nginx -s stop 或nginx -…