在上一篇apache+svn整合的基礎上再續,apache+svn整合成功後,每次都要進行apchea和svn的啓動,顯得很麻煩,因而我把apache和SVN開機自動啓動。apache
一、編輯rc.local文件svn
#su rootip
#vi /etc/rc.localit
進入到rc.local文件io
#!/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密碼
其中touch
/usr/local/apache2/bin/apachectl是apache apachectl文件安裝絕對路徑;文件
/usr/local/subversion//bin/svnserve是SVN svnserve文件的安裝絕對路徑;vi
/home/svnroot/data/project1是svn版本庫的絕對路徑。
三、重啓電腦,輸入http://localhost/svn/project1 或 http://127.0.0.1/svn/project1
系統彈出svn對話框要求輸入用戶名及密碼是,恭喜你成功了。