gitlab修改redis、postgresql配置

來源:互聯網
上載者:User

標籤:

由於工作需要將redis認證方式改為了允許遠端連線,並作了requirepass設定,postgresql認證方式也改為了允許遠端連線並且需要通過密碼。

引起的問題
提交的動態無法寫入,表現在gitlab上就是提交的動態無法在首頁顯示,postgresql中也沒有提交記錄
解決辦法
  1. 修改gitlab資料庫配置 /home/git/gitlab/config/database.yml

    production:adapter: postgresqlencoding: unicodedatabase: gitlabhq_productionpool: 10username: 使用者名稱password: 密碼host: localhostport: 5432
  2. 修改resque.yml 配置,主要是串連redis配置

    development: redis://:密碼@localhost:6379/資料庫(可選)test: redis://:密碼@localhost:6379/資料庫(可選)production: redis://:密碼@localhost:6379/資料庫(可選)
  3. 修改gitlab-shell中redis配置, 串連redis配置 /home/git/gitlab-shell/config.yml

    redis:bin: /usr/bin/redis-clihost: localhostport: 6379password: 密碼db: 資料庫namespace: resque:gitlab
  4. 修改gitlab程式 /home/git/gitlab-shell/lib/gitlab_config.rb 58行

    //加上密碼和資料庫參數%W(#{redis[‘bin‘]} -h #{redis[‘host‘]} -p #{redis[‘port‘]} -a #{redis[‘password‘]} -n #{redis[‘db‘]})

gitlab修改redis、postgresql配置

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.