오늘의 IT144 gitlab default branch 변경 ### gitlab default branch 변경 프로젝트 -> settings -> Repository Branch defaults에서 브랜치 선택 후, Save Changes 2023. 12. 28. gitlab port 변경 ### gitlab web port 변경 vi /etc/gitlab/gitlab.rb external_url 'http://ip:8000' ### GitLab ReConfigure 및 Restart gitlab-ctl reconfigure gitlab-ctl restart 2023. 12. 28. gitlab 설치 #### Linux GitLab 설치 ### 의존성 패키지 설치 yum install epel-release yum install -y curl policycoreutils-python openssh-server perl ### 방화벽 포트 오픈 80, 443 ### GitLab CE 저장소 추가 curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash ### GitLab CE 설치 yum install -y gitlab-ce ### GitLab 설정 vi /etc/gitlab/gitlab.rb external_url 'http://serverip' ### configure gitl.. 2023. 12. 28. MariaDB 설치 ##### MariaDB Download (원하는 Version Download) wget http://downloads.mariadb.org/interstitial/mariadb-10.3.28/bintar-linux-x86/mariadb-10.3.28-linux-x86_64.tar.gz ##### mysql 그룹 및 user 생성 groupadd -g 501 mysql useradd -u 501 -g 501 -d /usr/local/mysql -s /sbin/nologin mysql ##### MariaDB 설치 tar zxvf mariadb-10.3.28-linux-x86_64.tar.gz ln -s mariadb-10.3.28 mysql cd mysql mkdir innodb mysql-bin tm.. 2023. 12. 27. 이전 1 2 3 4 5 6 7 ··· 36 다음