溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

postgresql遠(yuǎn)程連接失敗怎么解決

發(fā)布時(shí)間:2020-07-15 16:24:15 來(lái)源:億速云 閱讀:713 作者:清晨 欄目:編程語(yǔ)言

小編給大家分享一下postgresql遠(yuǎn)程連接失敗怎么解決,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

下載使用第三方軟件Navicat for PostgreSQL管理postgresql。

推薦:PostgreSQL教程

連接時(shí)navicat報(bào)錯(cuò):

could not connect to server:Connection refused (0x0000274D/10061)

解決方法:

1、關(guān)閉postgresql服務(wù)

[postgres@server2 data]$./pg_ctl -D /opt/pgsql/data -l logfile stop

2、修改配置文件/opt/pgsql/data/postgresql.conf

listen_addresses = ‘*’ # what IP address(es) to listen on;
# comma-separated list of addresses;
# defaults to ‘localhost’; use ‘*’ for all

注:不加引號(hào)pg無(wú)法啟動(dòng)

[postgres@server2 bin]$ ./postgres -D /opt/pgsql/data
LOG: syntax error in file “/opt/pgsql/data/postgresql.conf” line 60, near token “*”
FATAL: configuration file “/opt/pgsql/data/postgresql.conf” contains errors

3、修改pg_hba.conf

在該配置文件的ipv4配置后面的host all all 127.0.0.1/32 md5行下添加以下配置,或者直接將這一行修改為以下配置

host all all 0.0.0.0/0 trust

4、重啟服務(wù)

[postgres@server2 data]$./pg_ctl -D /opt/pgsql/data -l logfile start

看完了這篇文章,相信你對(duì)postgresql遠(yuǎn)程連接失敗怎么解決有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI