linux上svn的安装
yum install subversion
创建版本库目录
创建版本库
此时,wechat线面就会多出几个文件
注意事项:
防火墙开启3690端口
腾讯云服务器在安全组中开启3690端口
启动subversion
svnserve -d -r svn/ //svn目录下是版本库文件
注意如果svn没有以root用户启动的话,可能没有写入文件的权限,在commit的时候会提示无法写入文件
关闭svn
kill -9 svnserve
killall svnserve
检出版本库文件
svn co svn://IP/wechat //检出wechat版本库,假如svn文件下存在wechat版本库
钩子(hooks)文件
#!/bin/sh
REPOS="$1"
REV="$2"
export LANG=en_US.UTF-8
echo `date`,`whoami`,$REPOS,$REV >> /svndata/wechat/hooks/svn_hook.log
svn update --username username--password password /var/www/html/wechat --no-auth-cache
#这儿的username和password可以是svn中passwd文件夹下的用户名和密码
在这儿采用的是yum安装lamp,所以httpd.conf中的模块可以不用加载,httpd可以自动加载/etc/httpd/modules中的模块
将httpd,mariadb服务加入开机自启动
chkconfig httpd on/off
chkconfig mariadb on/off
在centos7及以上版本中,systemctl 替代了chkconfig和service命令,用起来也非常方便,使用方法如下
systemctl enable httpd.service
systemctl enbale mariadb.service
systmctl命令:
systemctl is-enabled servicename.service #查询服务是否开机启动
systemctl enable *.service #开机运行服务
systemctl disable *.service #取消开机运行
systemctl start *.service #启动服务
systemctl stop *.service #停止服务
systemctl restart *.service #重启服务
systemctl reload *.service #重新加载服务配置文件
systemctl status *.service #查询服务运行状态
systemctl --failed #显示启动失败的服务