当前位置:   article > 正文

pgsql常用命令行代码_homestead 重启postgresql

homestead 重启postgresql
# 链接psql
# 我这里是homestead,正常应该是postgres
$ psql -U homestead -W;
homestead:/# 
  • 1
  • 2
  • 3
  • 4
#创建数据库
 CREATE DATABASE cloud_v2 WITH OWNER = postgres ENCODING = 'UTF8';
  • 1
  • 2
#把数据库转给root
ALTER DATABASE cloud_v2 OWNER TO root;
  • 1
  • 2
#导入数据库,不要把< 写成>,我就是个坑
psql -U root -h localhost -W cloud(数据库名称) < /home/databse/abc.sql
  • 1
  • 2

使用service命令重启postgresql

#首先看一下service里面的服务叫什么
$ cd /usr/lib/systemd/system
  • 1
  • 2

在这里插入图片描述

# 然后我们就可以使用service命令了
$ service postgresql stop
$ service postgresql start
$ service postgresql restart
  • 1
  • 2
  • 3
  • 4

顺便记录下虚拟机怎么开放端口,让你本地电脑的pgadmin连接上

$ cd /etc/postgresql/13/main
$ vim pg_hba.conf
  • 1
  • 2

然后在尾端加上下图所示代码,然后重启
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/893557
推荐阅读
相关标签
  

闽ICP备14008679号