Linux平台启动、停止PostgreSQL数据库服务

1. 查看服务

systemctl status postgresql-10

2. 启动服务

systemctl start postgresql-10

3. 停止服务

systemctl stop postgresql-10

4. 禁用自启动服务

systemctl disable postgresql-10

5. 启用自启动服务

systemctl enable postgresql-10

你可能感兴趣的:(postgresql,数据库,Linux,postgres,禁用,启用,自启动,服务)