每次连接服务器postgre数据库都要执行的步骤
作者:互联网
- 在终端启动服务器
root@6f65f3f5d148 ~# pg_ctlcluster 13 main start
- 查看数据库状态
root@6f65f3f5d148 ~# service postgresql status
- 切换到数据库用户
root@6f65f3f5d148 ~# sudo su postgres
- 打开数据库命令行
postgres@6f65f3f5d148:/root$ psql
- 连接模式
postgres=# \c mimic;
mimic=# set search_path to mimiciii;
- 退出数据库命令行
mimic=# \q
- 切回root用户
postgres@6f65f3f5d148:~$ su
标签:postgres,数据库,postgre,su,mimic,6f65f3f5d148,服务器,root 来源: https://blog.csdn.net/weixin_44157403/article/details/123126133