linux下自动启动apache和gerrit

编辑 /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 style init stuff.


touch /var/lock/subsys/local
/usr/soft/apache/bin/apachectl start
/usr/soft/gerrit/bin/gerrit.sh start







---------------下面的不好用


首先新建两个文件在目录/etc/rc.d/init.d

touch apache

touch gerrit


然后修改成可执行的

chmod 777 apache

chmod 777 gerrit

然后用vi编辑内容为:

apache文件内容

chmod 777 apache
#!/bin/bash
#Start httpd service
/usr/soft/apache/bin/apachectl start


gerrit文件内容:

#!/bin/bash
#Start httpd service
/usr/soft/gerrit/bin/gerrit.sh start

chmod 777 apache

你可能感兴趣的:(linux下自动启动apache和gerrit)