본문 바로가기

centos

Gitlab과 Redmine 한서버에 설치하기 Redmine도 설치를 해보고 Git랩도 설치를 해봤다. 둘다 보니 rails로 만들어져있네? 한서버에 몰아서 설치할 수 있을 것 같다. CentOS : 6.9 GitLab : 11.1.4 Redmine : 3.4.6 우선 GitLab을 설치한 상태에서 진행한다. GitLab 설치는 이전글을 참조할것.2018/08/21 - [개발개발] - Centos 에서 GitLab 설치하기 1. 의존 라이브러리 설치#> yum groupinstall "Development Tools"#> yum install ImageMagick ImageMagick-devel #> yum install wget ##루비설치 #> wget https://cache.ruby-lang.org/pub/ruby/2.5/ruby-2.5.1... 더보기
Centos 에서 GitLab 설치하기 소스로 컴파일 설치를 시도해보았는데, 몇일간 삽질끝에 포기했다. 그냥 yum 으로 설치하자.정신건강에 해롭다. CentOS : 6.9GitLab : 11.1.4 1. 의존 라이브러리 설치 #> yum install -y curl policycoreutils-python openssh-server openssh-clients cronie #> lokkit -s http -s ssh #> yum install postfix#> service postfix start#> chkconfig postfix on 2. Gitlab 설치 #>curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | bash #> .. 더보기
CentOS에 NginX 설치하기 nginx 설치Centos버전 : 6.9 NginX버전 : 1.14.0CentOS 의존라이브러리 설치 pcre #> yum install pcre pcre-devel zlib #> yum install zlib zlib-devel openssl#> yum install openssl openssl-devel gcc#> yum install gcc NginX 설치#> wgetj https://nginx.org/download/nginx-1.14.0.tar.gz #> tar xvf nginx-1.14.0.tar.gz #> cd nginx-1.14.0.tar.gz #> ./configure --prefix=/usr/local/nginx-1.14.0 --with-http_ssl_module --with-http.. 더보기