• postmaster.pid —— postgresql 主进程文件


    利用 cat -n postmaster.pid 显示内容

    [root@ceph-104 pgsql]# cat -n postmaster.pid
         1  37935                                  # 代表Postgresql主进程的PID
         2  /var/lib/zstor/zms/pgsql               # 代表数据目录
         3  1620265813                             # 代表postmaster.pid文件创建时间
         4  5433                                   # 数据库监听端口,对应postgresql.conf文件中的参数port=5433 
         5  /var/run/postgresql                    # unix socket的监听目录,对应postgresql.conf文件中的参数unix_socket_directory = '/var/run/postgresql'
         6  localhost                              # 数据库监听地址
         7    5433001         9                    # 共享内存的地址(可利用ipcs查看消息队列、共享内存、信号量的通信情况,5433001和9分别对应共享内存的key和shmid)
         8  ready                                  # 代表主进程状态
    
  • 相关阅读:
    Linux
    Linux
    Linux
    Linux
    Linux
    shell tr命令
    grep 正则表达
    shell 运算符
    shell 重定向
    bzoj 1026 DP,数位统计
  • 原文地址:https://www.cnblogs.com/fyusac/p/14734113.html
Copyright © 2020-2023  润新知