Postgresql – 用于Postgres的GitLab Omnibus配置

前端之家收集整理的这篇文章主要介绍了Postgresql – 用于Postgres的GitLab Omnibus配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在我的开发Debian 7(Wheezy)机器上安装gitlab_6.8.1-omnibus.4-1_amd64.deb,其中Postgres 9.1已经安装.

当我运行sudo gitlab-ctl重新配置我抓到一个错误

Error executing action `run` on resource 'execute[migrate database]'
    ======================================================================

    Mixlib::ShellOut::ShellCommandFailed  
------------------------------------
Expected process to exit with [0],but received '1'
---- Begin output of /opt/gitlab/bin/gitlab-rake db:migrate ----
STDOUT:
STDERR: WARNING: Nokogiri was built against LibXML version 2.8.0,but has dynamically loaded 2.7.8
rake aborted!
FATAL:  password authentication Failed for user "gitlab"
FATAL:  password authentication Failed for user "gitlab"

我在Postgres中创建了两个用户git和gitlab(密码为git和gitlab),但没有帮助.

/var/log/postgresql/postgresql-9.1-main.log充满了认证错误

2014-05-10 14:51:30 MSK FATAL:  password authentication Failed for user "gitlab"

如何配置Postgresql选项来安装GitLab Omnibus?

解决了我现有的Postgresql实例的问题.

>添加到/etc/gitlab/gitlab.rb:

# Disable the built-in Postgres
postgresql['enable'] = false

gitlab_rails['db_adapter'] = 'postgresql'
gitlab_rails['db_encoding'] = 'unicode'
# Create database manually and place its name here.
gitlab_rails['db_database'] = 'gitlabhq_production'
gitlab_rails['db_host'] = '127.0.0.1'
gitlab_rails['db_port'] = '5432'
gitlab_rails['db_username'] = 'git' # Database owner.
gitlab_rails['db_password'] = 'git' # Database owner's password.

>运行sudo gitlab-ctl重新配置.
>导入默认数据:

sudo gitlab-rake gitlab:setup

替代方案是设置定制端口用于内置Postgresql

postgresql['enable'] = true
    postgresql['port'] = 5433

这将在指定端口上运行单独的Postgresql实例.

原文链接:https://www.f2er.com/postgresql/191749.html

猜你在找的Postgre SQL相关文章