Centos 시작하기 튜토리얼의 다음 칼럼에서는 centos에서 SVN을 빌드하고 프로젝트를 PHP 프로젝트의 시스템 루트 디렉터리에 동기화하는 방법을 소개합니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!
1. SVN 설치
여기에서는 yum 설치 방법이 사용됩니다.
1 rpm -qa subversion 제거 SVN
3 이전 버전 설치를 시작하세요. subversion 설치
설치 후 버전 svnserve --version
4을 확인하세요. 버전 저장소 생성:
mkdir -p /data/svn/project svnadmin create /data/svn/project/
/data/svn/project 폴더를 확인하면 conf, db, format, Hooks가 있는 것을 확인할 수 있습니다. 잠금, README.txt 및 기타 파일은 SVN 라이브러리가 설정되었음을 나타냅니다.
5. 권한 구성
cd /data/svn/project/conf/ //进入配置目录 vim svnserve.conf //编辑配置文件,加入下面五行内容 ``` [general] ### The anon-access and auth-access options control access to the`` ### repository for unauthenticated (a.k.a. anonymous) users and ### authenticated users, respectively. ### Valid values are "write", "read", and "none". ### Setting the value to "none" prohibits both reading and writing; ### "read" allows read-only access, and "write" allows complete ### read/write access to the repository. ### The sample settings below are the defaults and specify that anonymous ### users have read-only access to the repository, while authenticated ### users have read and write access to the repository. # anon-access = read # auth-access = write anon-access = none auth-access = write password-db = passwd authz-db = authz realm = /data/svn/project ```
6. 비밀번호 파일을 편집하고 사용자 테스트 비밀번호 123456을 추가하세요.
vim passwd ### This file is an example password file for svnserve. ### Its format is similar to that of svnserve.conf. As shown in the ### example below it contains one section labelled [users]. ### The name and password for each user follow, one account per line. [users] # harry = harryssecret # sally = sallyssecret test = 123456
7. 권한 파일을 편집하고 사용자 테스트 권한을 추가하세요
vim authz [groups] # harry_and_sally = harry,sally # harry_sally_and_joe = harry,sally,&joe [/] test = rw
Join:
vi /etc/sysconfig/iptables
방화벽 다시 시작: 서비스 iPtables 다시 시작
9, SVN 시작: SVNSERVE -D -R/DATA/SVN/
포트 상태 보기: NetStat -ln | GREP 3690
2. SVN에 후크 동기 파일 추가 PHP 테스트로 PHP 테스트 환경으로(여기서 PHP 프로젝트 디렉터리는 /var/www/html/project/입니다)
1. 저장소
``` -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp -dport 3690 -j ACCEPT ```
cd /data/svn/project/hooks/
cp post-commit.tmpl post-commit
chmod 0777 post-commit
vi post-commit #mailer.py commit "$REPOS" "$REV" /path/to/mailer.conf export.GB2312 SVN=/usr/bin/svn STATIC_DIR=/var/www/html/project/ ${SVN} update ${STATIC_DIR} --username "test" --password "123456"
위 내용은 centos에서 SVN을 빌드하고 프로젝트를 PHP 프로젝트의 시스템 루트 디렉터리에 동기화하는 방법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!