我在Windows 10上运行Ubuntu WSL 2。在我安装WSL之前,我已经在Windows 10上安装了Postgresql。我想从WSL连接到数据库,但到目前为止它失败了。
运行时:
psql
我得到:
psql: error: could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
运行时:
psql -h 127.0.0.1 -p 5432 -U postgres
我得到:
psql: error: could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?
而且WSL显然看不到数据库。
sudo service postgresql start
它会传回:
postgresql: unrecognized service
我知道一个解决方案是在WSL中安装数据库,但我想先尝试连接到现有示例。
1条答案
按热度按时间2ic8powd1#
您应该编辑
pg_hba.conf
1.检查wsl子网
从cmd执行
ipconfig
。下面是一个示例。1.编辑pg_hba.conf
pg_hba.conf
路径为C:\Program Files\PostgreSQL\{postgresqlVersion}\data\pg_hba.conf
如果您安装了Windows Postgresql,则为默认安装路径子网掩码是
ipconfig
中使用值1.重新启动postgresql您可以从
services.msc
重新启动postgresql服务名称为postgresql-x64-{postgresqlVersion}
1.从psql访问