此SVN部署主要是在家和单位都会做一些活儿!所以这儿做个笔记,可能你在部署的时候未必会和我的一样,但思路差不多! 服务器配置: centos 6.x lnmp,openresty, web目录:/home/wwwroot/你的项目名
1 2 3 4 yum install -y subversion svnserve --version;
我习惯使用home目录,你可以根据自己的情况做以下调整。
新建一个版本库目录 1 2 mkdir -p /home/wwwroot/svn/repos cd /home/wwwroot/svn/repos
建立svn版本库: 1 svnadmin create /home/wwwroot/svn/repos/版本库名称(www.xxx.com)
进入创建的这个版本库,里面有个conf的目录,目录下的几个文件不多介绍,挨个儿来。先设置账号和密码
1 2 3 vim passwd [users] root = lvtao
接着配置权限
1 2 3 4 5 vim authz [groups] admin = root [/] @admin = rw
再配置svnserve.conf
1 2 3 4 5 6 7 8 9 10 11 12 vim svnserve.conf [general] anon-access = none auth-access = write password-db = /home/wwwroot/svn/repos/你的项目/conf/passwd realm = my frist project.
如果有防火墙,请检查相关端口,并设置启动
启动 默认端口 3690 1 2 killall svnserve svnserve -d -r /home/wwwroot/svn/repos
加入开机启动 1 echo svnserve -d -r /home/wwwroot/svn/repos >> /etc/rc.local
到这儿安装就结束了!客户端的使用不讲!我们来继续下面的,提交应用后自动更新到WEB站点的目录 第一步进入目录
1 cd /home/wwwroot/svn/repos/你的项目/hooks
#创建文件 post-commit
1 2 3 4 5 6 7 8 vi post-commit 如下内容,相关参数自己修改 #!/bin/sh export LANG=zh_CN.UTF-8 SVN_PATH=/usr/bin/svn WEB_PATH=/home/wwwroot/你的项目 $SVN_PATH export --username 用户名 --password 密码 svn://127.0.0.1/你的项目名 $WEB_PATH --no-auth-cache --non-interactive --force
那有时候我们开发中,会有数据库的修改操作,肿么办!我在刚才的post-commit下加了一个小判断,如果有数据更新,我就将数据库导出一个db.sql并更新到服务器上,然后提交后如果有这个文件,就执行一次数据库导入!O了!!
1 2 3 4 5 if [ -f "$WEB_PATH /db.sql" ]; then mysql -hlocalhost -uroot -plvtao demo > $WEB_PATH /db.sql rm -r $WEB_PATH /db.sql fi
最后,给这个post-commit执行权限
好了,至此就结束了!
转自:https://www.lvtao.net/config/svn-web-mysql.html