- 1、本文档共6页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
linux下搭建svn服务器
Linux下搭建SVN服务器环境(svnserve方式apr-1.3.3.tar.gz
apr-util-1.3.4.tar.gz
zlib-1.2.3.tar.gz
openssl-0.9.8k.tar.gz
httpd-2.2.9.tar.bz2
libxml2-2.7.3.tar.gz
解压
tar zvxf apr-1.3.3.tar.gztar zvxf apr-util-1.3.4.tar.gztar zvxf zlib-1.2.3.tar.gz
tar -jxvf httpd-2.2.9.tar.bz2
tar –zvxf openssl-0.9.8k.tar.gz
tar -zxvf libxml2-2.7.3.tar.gz
安装
cd apr-1.3.3
./configure --prefix=/usr/local/apr //装在/usr/local/apr目录下
make make install
cd apr-util-1.3.4
./configure --with-apr=/usr/local/apr //装在/usr/local/apr目录下
Make make install
cd httpd-2.2.9
./configure --prefix=/usr/local/apache2 --enable-so --enable-dav --with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config
make make install
/usr/local/apache2/bin/apachectl start (启动apache)
ps -ef |grep apache 查看有没有启动
测试
打开浏览器输入http://服务器ip 如果出现
It Works! Apache安装成功
如果出现这个错误Invalid command AuthDigestProvider, perhaps misspelled or defined by a module not included in the server configuration
/usr/local/apache2/conf/extra/httpd-dav.conf 提示这个文件31行有问题,那么你就
Vi /usr/local/apache2/conf/extra/httpd-dav.conf 找到31行,把这个注释掉 # AuthDigestProvider file
这样就ok了!
cd openssl-0.9.8k
./config --prefix=/usr/local/ssl/
make
make install
cd libxml2-2.7.3
vi INSTALL
./configure --help
./configure
make
make install
cd openssl-0.9.8k
./config
./config -t
make depend
make
make test
make install
cd zlib-1.2.3
./configure --prefix=/usr/local/zlib //装在/usr/local/zlib目录下
make make install
cd /usr/local/src/zlib-1.2.3
cat INDEX (看看而已)
cd /usr/local/src/
ln -s zlib-1.2.3
cd /usr/local/
cd
mkdir -p /home/svnadmin/access/users
mkdir -p /home/svnadmin/access/control
mkdir -p /home/svnadmin/repos
cd /home/svnadmin/
cd /usr/local/apache2/bin/
cd /home/svnadmin/access/
rm -rf control
rm -rf users/
touch control
touch users
vi users (建立了就有用户)
cd ..
svnadmin create /home/svnadmin/repos/networks (建立新库)
cd repos/
ls
cd /usr/local/apache2/conf/
cp httpd.conf httpd.conf.0818
vi httpd.conf(在最后加入以下东西):
Dire
您可能关注的文档
- 2007—2012北京高考真题完形 英语集锦(含答案).doc
- 上海-Hochiminh.doc
- OpenFiler安装配置手册.doc
- 小型科学计算器的设计与实现1.doc
- 2009年美国棉花公司家纺用品调查报告.doc
- Codingblock使用.doc
- 英语简历的写作技巧.doc
- 七校联合体2016届高三第二次联考(英语).doc
- 2011中国房地产百强.docx
- 简单 loading 代码.doc
- 鲁科版四上 Unit 2-Lesson2 She likes dancing课件PPT.pptx
- 鲁科版四上 Unit 1-Lesson3We sing here课件PPT.pptx
- 鲁科版四上 Unit 1-Lesson4 Again please课件PPT.pptx
- 鲁科版四上 Unit 3-Lesson2 I can dance on Friday课件PPT.pptx
- 鲁科版四上 Unit 2-Lesson3 What's your hobby课件PPT.pptx
- 鲁科版四上 Unit 1-Lesson1 We have Chinese课件PPT.pptx
- 鲁科版四上 Unit 2-Lesson4 Again please课件PPT.pptx
- 鲁科版四上 Unit 3-Lesson1 What day is today课件PPT.pptx
- 鲁科版四上 Unit 3-Lesson4 Again, please课件PPT.pptx
- 鲁科版四上 Unit 1-Lesson2What's your favourite subject课件.pptx
文档评论(0)