저렴한 비용으로 초창기 팀을 만드는 DevOps 실천(NAS의 KVM 탑재 Gogs + Jenkins + Nexus 서비스) [0x03] Gogs 설치
1795 단어 수기
구성 계획
1. yum 소스 설정, nfs, iptables 설정 등 작업은 이전 설치 Nexus를 참조하십시오
2. 새 버전의git를 설치하고yum로 설치한git버전이 비교적 낮기 때문에 새 버전의git를 컴파일합니다
3. Gogs 구성
컴파일 설치git
# git , /usr/local/git
wget https://github.com/git/git/archive/v2.24.0.tar.gz
tar -zxvf git-2.24.0.tar.gz
cd git-2.24.0
make prefix=/usr/local/git all
make prefix=/usr/local/git install
cd /usr/bin/
ln -s /usr/local/git/bin/* .
cd -
git --version
# git , gogs
useradd git
# Gogs
cd /home/git/
wget https://dl.gogs.io/0.11.91/gogs_0.11.91_linux_amd64.tar.gz
tar -zxvf gogs_0.11.91_linux_amd64.tar.gz
chown -R git:git gogs
# fstab
mkdir /home/git/gogs-repositories
192.168.x.x:/git /home/git/gogs-repositories nfs defaults 0 0
# git
su git
cd
./gogs/gogs web
# ,
[git@Gogs gogs]$ ./gogs web
2019/12/16 11:08:05 [ WARN] Custom config '/home/git/gogs/custom/conf/app.ini' not found, ignore this if you're running first time
2019/12/16 11:08:05 [TRACE] Custom path: /home/git/gogs/custom
2019/12/16 11:08:05 [TRACE] Log path: /home/git/gogs/log
2019/12/16 11:08:05 [TRACE] Log Mode: Console (Trace)
2019/12/16 11:08:05 [ INFO] Gogs 0.11.91.0811
2019/12/16 11:08:05 [ INFO] Cache Service Enabled
2019/12/16 11:08:05 [ INFO] Session Service Enabled
2019/12/16 11:08:05 [ INFO] SQLite3 Supported
2019/12/16 11:08:05 [ INFO] Run Mode: Development
2019/12/16 11:08:06 [ INFO] Listen: http://0.0.0.0:3000
# , IP:3000 。 , sqlite3 。
# Ctrl + C , root shell
exit
#
ln -s /home/git/gogs/scripts/init/centos/gogs /etc/init.d/gogs
chkconfig --add gogs
chmod +x /etc/init.d/gogs
/etc/init.d/gogs start
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
흔 한 면접 지식 수기텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.