CentOS6.3下设置apache和SVN开机自动启动

在上一篇apache+svn整合的基础上再续,apache+svn整合成功后,每次都要进行apchea和svn的启动,显得很麻烦,于是我把apache和SVN开机自动启动。

1、编辑rc.local文件

#su root

#vi /etc/rc.local

进入到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/local/apache2/bin/apachectl start
/usr/local/subversion//bin/svnserve -d -r /home/svnroot/data/project1

其中

/usr/local/apache2/bin/apachectl是apache apachectl文件安装绝对路径;

/usr/local/subversion//bin/svnserve是SVN svnserve文件的安装绝对路径;

/home/svnroot/data/project1是svn版本库的绝对路径。

3、重启电脑,输入http://localhost/svn/project1 或 http://127.0.0.1/svn/project1

系统弹出svn对话框要求输入用户名及密码是,恭喜你成功了。

 

 

你可能感兴趣的:(apache,SVN)