溫馨提示×

溫馨提示×

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

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

PostgreSQL數(shù)據(jù)庫啟動時socket存儲目錄的配置是什么

發(fā)布時間:2021-11-08 14:43:25 來源:億速云 閱讀:542 作者:iii 欄目:關(guān)系型數(shù)據(jù)庫

這篇文章主要講解了“PostgreSQL數(shù)據(jù)庫啟動時socket存儲目錄的配置是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“PostgreSQL數(shù)據(jù)庫啟動時socket存儲目錄的配置是什么”吧!

unix_socket_directories參數(shù)默認(rèn)為/tmp,由于該目錄是臨時目錄,以免誤操作,一般設(shè)置在其他目錄中。
下面把unix_socket_directories設(shè)置為/data/pg12,重新啟動

[pg12@localhost pg120db]$ grep 'unix' postgresql.conf 
unix_socket_directories = '/data/pg12' # comma-separated list of directories
#unix_socket_directories = '/tmp'   # comma-separated list of directories
#unix_socket_group = ''       # (change requires restart)
#unix_socket_permissions = 0777     # begin with 0 to use octal notation
[pg12@localhost pg120db]$ 
[pg12@localhost pg120db]$ pg_ctl restart
pg_ctl: PID file "/data/pgsql/pg120db/postmaster.pid" does not exist
Is server running?
trying to start server anyway
waiting for server to start....2019-11-18 18:17:35.123 CST [15542] LOG:  starting PostgreSQL 12.0 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16), 64-bit
2019-11-18 18:17:35.123 CST [15542] LOG:  listening on IPv4 address "0.0.0.0", port 5432
2019-11-18 18:17:35.123 CST [15542] LOG:  listening on IPv6 address "::", port 5432
2019-11-18 18:17:35.155 CST [15542] LOG:  listening on Unix socket "/data/pg12/.s.PGSQL.5432"
2019-11-18 18:17:35.237 CST [15542] LOG:  redirecting log output to logging collector process
2019-11-18 18:17:35.237 CST [15542] HINT:  Future log output will appear in directory "pg_log".
 done
server started

嘗試連接數(shù)據(jù)庫

[pg12@localhost pg120db]$ psql -d testdb
psql: error: could not connect to server: could not connect to server: No such file or directory
   Is the server running locally and accepting
   connections on Unix domain socket "/tmp/.s.PGSQL.5432"?

提示找不到socket(默認(rèn)在/tmp下),可使用指定主機(jī)&端口連接


但這樣的連接方式不是本地連接

[pg12@localhost ~]$ netstat -anpo|grep psql
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
tcp6       0      0 ::1:52206               ::1:5432                ESTABLISHED 16200/psql           keepalive (7207.79/0/0)

設(shè)置參數(shù)PGHOST,使用本地連接(PGHOST behaves the same as the host connection parameter.)

[pg12@localhost pg120db]$ export PGHOST=/data/pg12
[pg12@localhost pg120db]$ psql -d testdb
Expanded display is used automatically.
psql (12.0)
Type "help" for help.
...
[pg12@localhost ~]$ netstat -anpo|grep psql
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
unix  3      [ ]         STREAM     CONNECTED     876042   15681/psql           
[pg12@localhost ~]$

或者使用-h指定為socket所在目錄

[pg12@localhost ~]$ psql -h /data/pg12
Expanded display is used automatically.
psql (12.0)
Type "help" for help.
[local:/data/pg12]:5432 pg12@testdb=# 
...
[pg12@localhost ~]$ netstat -anpo|grep psql
(Not all processes could be identified, non-owned process info
 will not be shown, you would have to be root to see it all.)
unix  3      [ ]         STREAM     CONNECTED     880596   16309/psql           
[pg12@localhost ~]$

感謝各位的閱讀,以上就是“PostgreSQL數(shù)據(jù)庫啟動時socket存儲目錄的配置是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對PostgreSQL數(shù)據(jù)庫啟動時socket存儲目錄的配置是什么這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

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

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

AI