gpt4 book ai didi

postgresql - chef-solo + postgres 导致 pg_hba.conf 无效

转载 作者:行者123 更新时间:2023-11-29 11:41:41 27 4
gpt4 key购买 nike

我正在尝试使用 vagrant + chef solo 设置 postgres。

我使用的是正式收据:http://community.opscode.com/cookbooks/postgresql

因为我的 Berksfile 包含:

site :opscode

cookbook "postgresql"

我的 Vagrantfile block 是:

config.berkshelf.enabled = true

config.vm.provision "chef_solo" do |chef|

chef.add_recipe "postgresql::server"

chef.json = {

"postgresql" => {
"version" => "9.2",
"password" => { "postgres" => "123" },
config: {
"ssl" => "false"
},
pg_hba: [
{ type: 'local', db: 'all', user: 'all', addr: '', method: 'trust' },
{ type: 'local', db: 'all', user: 'all', addr: '127.0.0.1/32', method: 'trust' },
{ type: 'local', db: 'all', user: 'all', addr: '::1/128 ', method: 'trust' }
]
}
end

生成的内容:/etc/postgresql/9.2/main/pg_hba.conf 如下所示:

# This file was automatically generated and dropped off by Chef!

# PostgreSQL Client Authentication Configuration File
# ===================================================
#
# Refer to the "Client Authentication" section in the PostgreSQL
# documentation for a complete description of this file.

# TYPE DATABASE USER ADDRESS METHOD

###########
# Other authentication configurations taken from chef node defaults:
###########

local all all trust

local all all 127.0.0.1/32 trust

local all all ::1/128 trust

# "local" is for Unix domain socket connections only
local all all peer

但是,如果我运行 sudo service postgresql restart,它会失败并出现错误:

The PostgreSQL server failed to start. Please check the log output:
2013-11-10 08:12:05 GMT LOG: invalid authentication method "127.0.0.1/32"
2013-11-10 08:12:05 GMT CONTEXT: line 17 of configuration file "/etc/postgresql/9.2/main/pg_hba.conf"
2013-11-10 08:12:05 GMT LOG: invalid authentication method "::1/128"
2013-11-10 08:12:05 GMT CONTEXT: line 19 of configuration file "/etc/postgresql/9.2/main/pg_hba.conf"
2013-11-10 08:12:05 GMT FATAL: could not load pg_hba.conf

有问题的条目是那些持有地址的条目。知道我的用例有什么问题吗?

最佳答案

第一行没问题,实际上这是唯一没问题的行。提到地址的应该是“主机”,而不是“本地”。最后一个目前没用。

Postgres 文档中的更多信息 - "Client Authentication", "The pg_hba.conf File" .

关于postgresql - chef-solo + postgres 导致 pg_hba.conf 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19887665/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com