PostgreSQL 启动、停止数据库

栏目:云苍穹知识作者:金蝶来源:金蝶云社区发布:2024-09-23浏览:1

PostgreSQL 启动、停止数据库

1 PG数据库pg_auto_failover高可用模式下启停

1.1 系统服务方式

启动数据库:systemctl start  postgresql.service

停止数据库:systemctl stop  postgresql.service

重启数据库:systemctl restart postgresql.service

查看数据库运行状态:systemctl status postgresql.service

端口检查:netstat -ntpl|grep 5432/5433

注意事项:5432是主从节点端口号,5433是monitor节点端口号。



1.2 命令行方式

启动数据库:nohup pg_autoctl run &

停止数据库:pg_autoctl stop

查看数据库运行状态:pg_autoctl show  state

端口检查:netstat -ntpl|grep 5432/5433

注意事项:5432是主从节点端口号,5433是monitor节点端口号。



2 PG数据库单机模式下启停

2.1 系统服务方式

启动数据库:systemctl start  postgresql.service

停止数据库:systemctl stop  postgresql.service

重启数据库:systemctl restart postgresql.service

查看数据库运行状态:systemctl status postgresql.service

端口检查:netstat -ntpl|grep 5432

2.2 命令行方式

启动数据库:pg_ctl start  -D  $PGDATA

停止数据库:pg_ctl stop  -D  $PGDATA

重启数据库:pg_ctl restart  -D  $PGDATA

查看数据库运行状态:pg_ctl status -D $PGDATA

端口检查:netstat -ntpl|grep 5432



PostgreSQL 启动、停止数据库

1 PG数据库pg_auto_failover高可用模式下启停1.1 系统服务方式启动数据库:systemctl start postgresql.service停止数据库:systemctl...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息