<em id="0a85b"><option id="0a85b"></option></em>

<abbr id="0a85b"></abbr>

      <nobr id="0a85b"></nobr>
        <tr id="0a85b"></tr>
        9久久伊人精品综合,亚洲一区精品视频在线,成 人免费va视频,国产一区二区三区黄网,99国产精品永久免费视频,亚洲毛片多多影院,精品久久久无码人妻中文字幕,无码国产欧美一区二区三区不卡
        學習啦 > 學習電腦 > 操作系統 > Linux教程 > CentOS系統怎樣安裝GitLab客戶端

        CentOS系統怎樣安裝GitLab客戶端

        時間: 春健736 分享

        CentOS系統怎樣安裝GitLab客戶端

          CentOS系統怎樣安裝GitLab客戶端?其實在CentOS安裝GitLab的方法非常的簡單,要安裝Ruby環境作為依賴,今天學習啦小編與大家分享下CentOS系統安裝GitLab客戶端的具體操作步驟,有需要的朋友不妨了解下。

          CentOS系統安裝GitLab客戶端方法

          一、安裝環境

          基礎操作系統(CentOS 6.5 Minimal)

          Ruby (版本: 2.0.0p353+)

          創建項目運行用戶(創建git賬號,方便權限管理)

          GitLab Shell(版本:1.8.1)

          數據庫,采用PostgreSQL(可以支持mysql和PostgreSQL)

          GitLab(版本:6-3-stable)

          Web服務器,采用nginx(可支持nginx和apache)

          防火墻,開放相關端口(iptables)

          二、升級更新系統

          yum groupinstall "Development Tools" -y

          yum update -y

          yum install wget vim -y

          三、配置安裝源

          1、下載EPEL的GPG KEY

          wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 https://www.fedoraproject.org/static/0608B895.txt

          rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6

          rpm -qa gpg*

          2、安裝epel-release-6-8.noarch package

          rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

          3、創建PUIAS安裝源

          vim /etc/yum.repos.d/PUIAS_6_computational.repo

          ======================

          [PUIAS_6_computational]

          name=PUIAS computational Base $releasever - $basearch

          mirrorlist=http://puias.math.ias.edu/data/puias/computational/$releasever/$basearch/mirrorlist

          #baseurl=http://puias.math.ias.edu/data/puias/computational/$releasever/$basearch

          gpgcheck=1

          gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puias

          =======================

          4、下載PUIAS的GPG key

          wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-puias http://springdale.math.ias.edu/data/puias/6/x86_64/os/RPM-GPG-KEY-puias

          rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-puias

          5、檢查是否安裝成功

          rpm -qa gpg*

          yum repolist

          四、安裝GitLab所需依賴包

          yum -y install vim-enhanced readline readline-devel ncurses-devel gdbm-devel glibc-devel tcl-devel openssl-devel curl-devel expat-devel db4-devel byacc sqlite-devel gcc-c++ libyaml libyaml-devel libffi libffi-devel libxml2 libxml2-devel libxslt libxslt-devel libicu libicu-devel system-config-firewall-tui python-devel redis sudo wget crontabs logwatch logrotate perl-Time-HiRes git

          五、安裝所需服務

          1、Redis

          chkconfig redis on

          service redis start

          2、Ruby(記得下載好了,tar一個備份,下載賊慢了)

          curl --progress ftp://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p353.tar.gz | tar xz

          cd ruby-2.0.0-p353

          ./configure --prefix=/usr/local/

          make && make install

          3、檢查Ruby是否安裝成功,并配置$PATH

          which ruby

          /usr/local/bin/ruby

          ruby -v

          ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-linux]

          4、Bundle

          gem install bundler --no-ri --no-rdoc

          六、創建git用戶

          注:git@#命令行表示是用git用戶登錄執行命令,其他所有均以root用戶執行

          adduser --system --shell /bin/bash --comment 'GitLab' --create-home --home-dir /home/git/ git

          七、配置GitLab Shell

          注:GitLab shell是專門為GitLab開發的提供ssh訪問和版本管理的軟件

          1、下載gitlab-shell

          su - git

          git@# git clone https://github.com/gitlabhq/gitlab-shell.git

          git@# cd gitlab-shell

          git@# git checkout v1.9.4

          2、修改配置文件

          git@# cp config.yml.example config.yml

          # Url to gitlab instance. Used for api calls. Should end with a slash.

          gitlab_url: "http://yourdomain:8080/"

          注:如果gitlab是使用https訪問,則需將http替換成https,配置文件中的self_signed_cert要修改成true,否則gitlab shell在通過api和gitlab進行通信的時候就會出現錯誤,導致項目push出錯。因為后面配置web服務器的時候是使用ssl,所以這里要按照ssl的方式配置。

          3、安裝gitlab-shell

          git@# ./bin/install

          八、安裝PostgreSQL數據庫

          1、yum安裝postgresql

          yum install postgresql-server postgresql-devel -y

          service postgresql initdb

          service postgresql start

          chkconfig postgresql on

          2、創建數據庫和對應用戶

          su - postgres

          psql -d template1

          template1=# CREATE USER git WITH PASSWORD 'password';

          template1=# CREATE DATABASE gitlabhq_production OWNER git;

          template1=# q

          exit

          附:MYSQL安裝方法

          yum install -y mysql-server mysql-devel

          chkconfig mysqld on

          service mysqld start

          /usr/bin/mysql_secure_installation

          mysql -u root -p

          CREATE USER 'gitlab'@'localhost' IDENTIFIED BY 'password';

          CREATE DATABASE IF NOT EXISTS `gitlabhq_production` DEFAULT CHARACTER SET `utf8` COLLATE `utf8_unicode_ci`;

          GRANT SELECT, LOCK TABLES, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON `gitlabhq_production`.* TO 'gitlab'@'localhost';

          九、安裝GitLab

          1、下載項目

          su - git

          git@# git clone https://github.com/gitlabhq/gitlabhq.git gitlab

          git@# cd /home/git/gitlab

          git@# git checkout 6-3-stable

          2、配置項目

          git@# cp config/gitlab.yml.example config/gitlab.yml

          git@# sed -i 's|localhost|your_domain_name|g' config/gitlab.yml

          3、創建相關目錄,及配置所有者權限

          git@# chown -R git log/

          git@# chown -R git tmp/

          git@# chmod -R u+rwX log/

          git@# chmod -R u+rwX tmp/

          git@# mkdir /home/git/gitlab-satellites

          git@# mkdir tmp/pids/ tmp/sockets

          git@# chmod -R u+rwX tmp/pids/

          git@# chmod -R u+rwX tmp/sockets/

          git@# mkdir public/uploads

          git@# chmod -R u+rwX public/uploads

          git@# cp config/unicorn.rb.example config/unicorn.rb

          4、配置unicorn.rb

          git@# vim config/unicorn.rb

          listen "yourdomain:8080", :tcp_nopush => true

          5、全局配置

          git@# git config --global user.name "GitLab"

          git@# git config --global user.email "gitlab@your_domain_name"

          git@# git config --global core.autocrlf input

          6、修改數據庫配置文件

          git@# cp config/database.yml.postgresql config/database.yml

          git@# vim config/database.yml

          git@# chmod o-rwx config/database.yml

          十、安裝gems

          gem install charlock_holmes --version '0.6.9.4'

          十一、安裝postgresql包

          git@# cd /home/git/gitlab/

          git@# bundle install --deployment --without development test mysql

          注:mysql包安裝方法

          git@# bundle install --deployment --without development test postgres puma aws ( mysql包)

          十二、初始化數據和激活高級功能

          git@# cd /home/git/gitlab

          git@# bundle exec rake gitlab:setup RAILS_ENV=production

          生成默認的管理賬號

          admin@local.host

          5iveL!fe

          十三、安裝GitLab啟動腳本

          1、下載啟動腳本

          wget -O /etc/init.d/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/master/init/sysvinit/centos/gitlab-unicorn

          chmod +x /etc/init.d/gitlab

          chkconfig --add gitlab

          chkconfig gitlab on

          2、檢查狀態

          git@# cd gitlab/

          git@# bundle exec rake gitlab:env:info RAILS_ENV=production

          3、啟動gitlab

          service gitlab start

          4、檢查安裝信息

          git@# cd gitlab/

          git@# bundle exec rake gitlab:check RAILS_ENV=production

          十四、安裝web服務 (nginx)

          1、安裝nginx

          yum -y install nginx

          chkconfig nginx on

          mkdir /etc/nginx/sites-available

          mkdir /etc/nginx/sites-enabled

          wget -O /etc/nginx/sites-available/gitlab https://raw.github.com/gitlabhq/gitlab-recipes/master/web-server/nginx/gitlab-ssl

          ln -sf /etc/nginx/sites-available/gitlab /etc/nginx/sites-enabled/gitlab

          2、修改配置文件

          vim /etc/nginx/nginx.conf

          include /etc/nginx/conf.d/*.conf;

          改為

          include /etc/nginx/sites-enabled/*;

          vim /etc/nginx/sites-available/gitlab

          server_name git.example.com;

          改為

          server_name youdomain.com;

          3、將nginx加入git用戶組

          usermod -a -G git nginx

          chmod g+rx /home/git/

          4、添加ssl證書

          mkdir /etc/nginx/ssl

          cd /etc/nginx/ssl

          openssl req -new -x509 -nodes -days 3560 -out gitlab.crt -keyout gitlab.key

          5、啟動nginx

          service nginx start

          6、要看監聽的端口是否啟動

          nestat -nap | grep nginx

          十五、開放相關端口和服務

          lokkit -s http -s https -s ssh

          service iptables restart

          十六、系統相關配置

          1、主機hosts配置

          vim /etc/hosts

          yourIP yourdomain

          2、關閉selinux

          setenforce 0

          訪問gitlab首頁 http://yourdomain.com/

          十七、郵箱配置

          1、后期再配置,待續.........

          十八、GitLab windows客戶端

          1、TortoiseGit

          2、msysgit

          問題處理:

          1、檢測API-access失敗

          解決方法:

          查看三個配置文件

          vim gitlab/config/unicorn.rb #配置ruby提供的服務端口,ip

          listen "gitlab.test.com:8080", :tcp_nopush => true

          vim gitlab-shell/config.yml #配置gitlab-shell要調用的API接口

          gitlab_url: "http://gitlab.test.com:8080/"

          vim gitlab/config/gitlab.yml #配置gitlab服務的端口,ip

          host: gitlab.test.com

          port: 80

          2、啟動nginx報錯

          service nginx start

          Starting nginx: nginx: [emerg] unknown directive "ssl_stapling" in /etc/nginx/sites-enabled/gitlab:102

          解決方法:

          vim /etc/nginx/sites-available/gitlab

          注釋以下幾行

          3、登錄打開首頁顯示不完全

          解決方法:

          vim /etc/nginx/sites-available/gitlab

          注釋下面幾行

          /etc/init.d/nginx restart #重啟nginx

          4、打開首頁提示BAD GATEWAY

          解決方法:

          setenforce 0

        看過“CentOS系統怎樣安裝GitLab客戶端”的人還看了:

        1.CentOS 6.6系統怎么安裝

        2.如何在CentOS系統中安裝搭建

        3.怎么安裝Ubuntu操作系統

        4.如何用u盤安裝linux系統

        5.用U盤怎么安裝Linux系統

        6.服務器上怎么安裝linux系統

        916677 主站蜘蛛池模板: 一本大道一卡二大卡三卡免费| 国产熟妇另类久久久久久| 亚洲av乱码一区二区| 大肉大捧一进一出好爽视频mba| 国产成人综合色视频精品| 成人内射国产免费观看| 99久久无色码中文字幕鲁信| 国产亚洲999精品AA片在线爽| 国产精品自产拍在线播放| 亚洲av无码乱码在线观看野外| 九九在线精品国产| 日日碰狠狠躁久久躁96avv| 黑人一区二区三区在线| 强奷漂亮人妻系列老师| 老熟妇欲乱一区二区三区| 在线视频中文字幕二区| 成人动漫综合网| 老熟女重囗味hdxx69| 色吊丝二区三区中文字幕| 国产女人18毛片水真多1| 亚洲欧美国产日韩天堂区| 99九九成人免费视频精品| 日本理伦一区二区三区| 国产精品香蕉视频在线| 九九热久久这里全是精品| 少妇人妻偷人精品免费| 无码人妻斩一区二区三区| 2022国产男人亚洲欧美天堂| 福利视频一区二区在线| 国产日韩一区二区天美麻豆| 亚洲欧美人成电影在线观看| 无码精品国产VA在线观看DVD| 久久99亚洲精品久久久久| 漂亮的人妻不敢呻吟被中出| av亚洲在线一区二区| 亚洲一区二区精品偷拍| 精品中文字幕一区在线| 久久九九有精品国产23百花影院| 免费观看全黄做爰的视频| 国产精品熟女乱色一区二区| 狠狠色狠狠色综合久久蜜芽|