내부 개발 환경git 코드 트랜잭션 설명

7017 단어 개발 환경

전언


직원의 증가 코드의 개발 버전 관리가 일정에 올랐다.초기 계획:
1 기기 192.168.1.240 git 코드 버전 관리
2 운영 환경 192.168.1.241 내부 개발 운영 환경
 
소프트웨어 엔지니어는git를 통해 매일 바 코드를 로컬push에서git 서버로, git 서버는 실시간으로 최신 동적으로 운영 환경 서버로 동기화합니다.
소프트웨어 엔지니어가 192.168.1.241을 통한 테스트 코드
 

동기화 rsync 구축


원키 구축 설치 rsync 패키지 코드
#!/bin/bash
#rsync Written by zhumaohai
#For more information please visit http://www.centos.bz
echo "Please input the rsync username:"
read username
echo "Please input the rsync username password:"
read password
echo "Please input the allow ip address:"
read allowip
echo "Please input the path you want to rsync:"
read rsyncpath
echo "==========================input all completed========================"
echo "==========================install rsync========================"
yum -y install rsync
useradd $username
mkdir /etc/rsyncd
cat >/etc/rsyncd/rsyncd.conf<<EOF
# Minimal configuration file for rsync daemon
# See rsync(1) and rsyncd.conf(5) man pages for help
 
# This line is required by the /etc/init.d/rsyncd script
pid file = /var/run/rsyncd.pid   
port = 873
#address = $serverip
#uid = nobody
#gid = nobody   
uid = root   
gid = root   
 
use chroot = yes
read only = yes
 
 
#limit access to private LANs
hosts allow=$allowip
hosts deny=*
 
max connections = 5
motd file = /etc/rsyncd/rsyncd.motd
 
#This will give you a separate log file
#log file = /var/log/rsync.log
 
#This will log every file transferred - up to 85,000+ per user, per sync
#transfer logging = yes
 
log format = %t %a %m %f %b
syslog facility = local3
timeout = 300
 
[home]   
path = $rsyncpath   
list=yes
ignore errors
auth users = $username
secrets file = /etc/rsyncd/rsyncd.secrets 
EOF
echo "$username:$password" > /etc/rsyncd/rsyncd.secrets
chmod 600 /etc/rsyncd/rsyncd.secrets
cat >/etc/rsyncd/rsyncd.motd<<EOF
+++++++++++++++++++++++++++
+ centos.bz  rsync  2011-2012 +
+++++++++++++++++++++++++++
EOF
/usr/bin/rsync --daemon  --config=/etc/rsyncd/rsyncd.conf
echo "/usr/bin/rsync --daemon  --config=/etc/rsyncd/rsyncd.conf" >>/etc/rc.d/rc.local
ps -aux | grep rsync

클라이언트도 마찬가지
클라이언트 설정 암호 파일은 사용자 이름이 필요 없습니다. 비밀번호만 기억하면 됩니다.
/etc/rsyncd/rsyncd.secrets  #    

동기 테스트
rsync -vzrtopg --progress --delete root@192.168.1.240::home /ranmufei/test/ --password-file=/etc/rsyncd/rsyncd.secrets

클라이언트가 상기 코드를 실행하여 홈 모듈의 설정을 로컬ranmufei/test/디렉터리에 동기화합니다!
 

git 서버 구축


git 원키 설치 패키지 참조
 
 
 
후속--------

좋은 웹페이지 즐겨찾기