Postgres主进程文件—postmaster.pid
生活随笔
收集整理的這篇文章主要介紹了
Postgres主进程文件—postmaster.pid
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
postmaster內容
使用cat -n?命令可以查看postmaster.pid文件內容:
)
根據每一行進行解釋,并給出對應的源代碼說明
/usr/local/pgsql/data: 代表數據目錄
1529235109: 代表postmaster文件的創建時間。
5432: 代表數據庫監聽端口,在postgresql.conf中對應port = 5432
來自源代碼說明:
/* The socket number we are listening for connections on */ int PostPortNumber;- 1
- 2
來自源代碼說明:
/* The directory names for Unix socket(s) */ char *Unix_socket_directories;- 1
- 2
來自源代碼說明:
/* The TCP listen address(es) */ char *ListenAddresses;- 1
- 2
輸入ipcs可以查看:
注:?postmaster.pid顯示的是key轉成10進制后的數字。
總結
以上是生活随笔為你收集整理的Postgres主进程文件—postmaster.pid的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 几何基础,多种矩阵的学习,世界坐标到屏幕
- 下一篇: 2018-4-25mysql数据库基础