我尝试使用Vagrant在本地模拟我们的生产设置。在生产中,我们为postgresql数据库使用docker容器,在centos6.5 / redhat上运行(不是选择)。
所以,在本地,我已经安装了Vagrant,创建了一台机器,在该机器上启动并运行了postgresql docker容器,确保它通过从VM连接运行。但是,我无法弄清楚如何从主机(或从另一个VM)连接到postgresql。
这是我的Vagrant文件:
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "chef/centos-6.5"
config.vm.provision "shell" do |s|
s.inline = "ps aux | grep 'sshd:' | awk '{print $2}' | xargs kill"
end
config.vm.define "db" do |db|
db.vm.synced_folder "../db", "/vagrant/db"
db.vm.synced_folder "../deploy", "/vagrant/deploy"
db.vm.hostname = "dbserver"
db.vm.network :private_network, ip: "192.168.50.4"
db.vm.network :forwarded_port, guest: 5432, host: 6543
end
end
注意我将访客端口5432转发到主机端口6543。
在VM上,您可以看到运行postgresql容器的docker:
[vagrant@dbserver vagrant]$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
075f71e9f8de quay.io/aptible/postgresql:standardized "run-database.sh" 12 hours ago Up 12 hours 0.0.0.0:5432->5432/tcp hungry_morse
在VM上时,我必须使用如下命令进行连接:
psql -h 0.0.0.0 -U <username> -d db
从主机看来,我似乎应该使用:
psql -h 192.168.50.4 -p 6543 -U <username> -d db
但那给了我:
psql: could not connect to server: Connection refused
Is the server running on host "192.168.50.4" and accepting
TCP/IP connections on port 6543?
请注意,这不是postgresql特有的。我有一个redis容器设置方式相同,给出了相同的问题。
我不确定这是我的Vagrant设置,Centos上的防火墙或者是什么的问题。关于如何使这项工作的任何想法?
我们的docker容器中的pg_hba.conf文件如下所示:
local all all peer
hostssl all all 0.0.0.0/0 md5
我们的docker容器中的postgresql.conf文件如下所示:
#------------------------------------------------------------------------------
# FILE LOCATIONS
#------------------------------------------------------------------------------
data_directory = '/var/lib/postgresql/9.3/main'
hba_file = '/etc/postgresql/9.3/main/pg_hba.conf'
ident_file = '/etc/postgresql/9.3/main/pg_ident.conf'
external_pid_file = '/var/run/postgresql/9.3-main.pid'
#------------------------------------------------------------------------------
# CONNECTIONS AND AUTHENTICATION
#------------------------------------------------------------------------------
listen_addresses = '*'
port = 5432
max_connections = 250
unix_socket_directories = '/var/run/postgresql'
ssl = on
ssl_ciphers = 'DEFAULT:!LOW:!EXP:!MD5:@STRENGTH'
ssl_cert_file = '/etc/postgresql/9.3/ssl/server.crt'
ssl_key_file = '/etc/postgresql/9.3/ssl/server.key'
#------------------------------------------------------------------------------
# RESOURCE USAGE (except WAL)
#------------------------------------------------------------------------------
shared_buffers = 128MB
#------------------------------------------------------------------------------
# QUERY TUNING
#------------------------------------------------------------------------------
log_line_prefix = '%t '
log_timezone = 'UTC'
client_min_messages = ERROR
log_min_messages = FATAL
log_min_error_statement = FATAL
#------------------------------------------------------------------------------
# CLIENT CONNECTION DEFAULTS
#------------------------------------------------------------------------------
datestyle = 'iso, mdy'
timezone = 'UTC'
lc_messages = 'C'
lc_monetary = 'C'
lc_numeric = 'C'
lc_time = 'C'
default_text_search_config = 'pg_catalog.english'
tcp_keepalives_idle = 30
tcp_keepalives_interval = 30
VM的iptables规则:
[vagrant@dbserver vagrant]$ sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT tcp -- anywhere anywhere tcp dpt:postgres
Chain FORWARD (policy ACCEPT)
target prot opt source destination
DOCKER all -- anywhere anywhere
ACCEPT all -- anywhere anywhere ctstate RELATED,ESTABLISHED
ACCEPT all -- anywhere anywhere
ACCEPT all -- anywhere anywhere
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain DOCKER (1 references)
target prot opt source destination
ACCEPT tcp -- anywhere 172.17.0.3 tcp dpt:postgres
答案 0 :(得分:2)
您似乎误解了如何访问Vagrant实例上的服务。您可以作为服务的主机及其服务端口连接到VM,也可以使用port forwarding将流量从本地端口转发到VM的端口。
从主机看来,我似乎应该使用:
psql -h 192.168.50.4 -p 6543 -U <username> -d db
使用Vagrant,如果你转发了你的端口,那么就像在localhost上一样访问它。
在您的情况下,您应该使用:
psql -h 192.168.50.4 -p 5432 -U <username> -d db
或
psql -h 127.0.0.1 -p 6543 -U <username> -d db
而不是<VM ip>:<forwarded port>
。
除此之外,您还需要确保将Postgres实例配置为允许远程访问asmPostgres,开箱即用,仅接受来自localhost的连接。
要开启远程访问权限,您必须先修改pg_hba.conf和listen_address
postresql.conf。
pg_hba.conf需要有一行允许您的Vagrant主机连接到它。这通常被VM视为10.0.2.2,因此您需要添加的行看起来像:
# Allow connections from Vagrant host on 10.0.2.2 to all datababases for all users using an md5 hashed password
host all all 10.0.2.2/32 md5
您的postgresql.conf更改很简单,因为您只需要替换:
listen_addresses='localhost'
使用:
listen_addresses='*'
对于典型的虚拟机,我建议使用配置程序进行更改但是使用Docker,您应该通过Dockerfile进行设置。有用的是,Docker在其文档中提供了useful example。