一.方法 在/etc/rc.local写程序的启动命令(系统执行内核过程中会启动init进程,该进程把当前runlevel所对应的的所有service 都启动后,才会执行rc.local里的命令),程序默认以root身份启动:也可以通过 sudo -u user1 命令 指定以user1身份启动. 二.示例:以tomcat为例 由于tomcat运行需要JAVA_HOME,而在init进程运行时还未加载用户的profile,所以需要在命令前指定JAVA_HOME. 1.默认以当前用户即root身份…
注意:CentOS 6下基本没什么问题,CentOS 7估计不一定能行. 在CentOS系统下,主要有两种方法设置自己安装的程序开机启动. 1.把启动程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是设置开机启动httpd. #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in…
先说说ubuntu,它有运行级别这个概念 0:停机 1:单用户形式,只root进行维护 2:多用户,不能使用net file system 3:完全多用户 5:图形化 6:重启 例子:按指定顺序.在指定运行级别中启动或关闭 update-rc.d <basename> start|stop <order> <runlevels> 实例:update-rc.d apachectl start 20 2 3 4 5 . stop 20 0 1 6 . A启动后B才能启动,B…
在Ubuntu下用sysv-rc-conf命令,它是chkconfig的替代命令,而使用方法与chkconfig基本相同. 安装: sudo apt-get install sysv-rc-conf 配置nginx开机启动 sudo sysv-rc-conf nginx on 检查nginx在各运行级别下是否为开机启动 sysv-rc-conf --list nginx 一般在2~5运行级别下为开机启动就行了…
假设我有一个tomcat应用需要开机启动. 前提你的JAVA环境变量已经配置好没有问题,检测方法如图 然后找到tomcat的目录,我的目录是 /home/yuqing_4.0/tomcat_share/bin 复制这个目录. 打开/etc/rc.local 这个文件 [root@hadoop4 bin]# vim /etc/rc.local 添加如图我圈出来的内容 #source /etc/profile #/home/yuqing_4.0/tomcat_share/bin/startup.sh…
参考:https://blog.csdn.net/qq_29663071/article/details/80814081 systemctl是RHEL 7 的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体. 可以使用它永久性或只在当前会话中启用/禁用服务. 启动服务:systemctl start vsftpd.service 关闭服务:systemctl stop vsftpd.service 重启服务:systemctl restart vsftpd.s…
vim /etc/rc.local export PATH=$PATH:/work/apps/node-v0.12.7-linux-x64/bin:/work/apps/ledisdb/binexport PATH=$PATH:/usr/local/go/binexport GOPATH=/work/apps/go . /work/test/run_echo_server.sh &>/dev/null & 在sh 文件中,最后一行添加: exit 0…
CentOS设置程序开机启动的方法: 1.启动命令添加到/etc/rc.d/rc.local 文件中, 如: vim /etc/rc.d/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…
转自:http://www.centos.bz/2011/09/centos-setup-process-startup-boot/ 在CentOS系统下,主要有两种方法设置自己安装的程序开机启动. 1.把启动程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是设置开机启动httpd. #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put you…
Linux CentOS设置服务开机启动的方法 by 天涯 · 2013/07/26 CentOS设置服务开机启动的两种方法 1.利用 chkconfig 来配置启动级别 在CentOS或者RedHat其他系统下,如果是后面安装的服务,如httpd.mysqld.postfix等,安装后系统默认不会自动启动的.就算 手动执行 /etc/init.d/mysqld start 启动了服务,只要服务器重启后,系统仍然不会自动启动服务. 在这个时候,我们就需要在安装后做个设置,让系统自动启动这些服务,…