微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/postgresql/191749.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐