当前位置:   article > 正文

ubuntu 安装postgresql(附源码安装)_ubuntu 基于安装包安装postgresql 9.5.0

ubuntu 基于安装包安装postgresql 9.5.0

卸载

1.查看postgresql是否在运行

命令:ps -ef|grep postgresql 
结果:
root@iZ2ze99yw68khbwsm2w698Z:/var/run/postgresql# ps -ef | grep postgres
root      4766  4604  0 09:46 pts/0    00:00:00 grep --color=auto postgres
postgres 19001     1  0 Nov13 ?        00:00:01 /usr/lib/postgresql/9.5/bin/postgres -D /var/lib/postgresql/9.5/main -c config_file=/etc/postgresql/9.5/main/postgresql.conf
postgres 19003 19001  0 Nov13 ?        00:00:00 postgres: checkpointer process   
postgres 19004 19001  0 Nov13 ?        00:00:01 postgres: writer process   
postgres 19005 19001  0 Nov13 ?        00:00:01 postgres: wal writer process   
postgres 19006 19001  0 Nov13 ?        00:00:00 postgres: autovacuum launcher process   
postgres 19007 19001  0 Nov13 ?        00:00:00 postgres: stats collector process

停止数据库运行: sudo service postgresql stop
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

卸载当前所有postgresql 相关的包

命令:apt-get remove postgresql*
      sudo apt-get --purge remove postgresql\*
结果:
root@iZ2ze99yw68khbwsm2w698Z:/# sudo apt-get --purge remove postgresql
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  postgresql*
0 upgraded, 0 newly installed, 1 to remove and 250 not upgraded.
After this operation, 59.4 kB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 100851 files and directories currently installed.)
Removing postgresql (9.5+173ubuntu0.2) ...
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

删除postgresql所有文件

查看文件命令:whereis postgresql* # 注意 : 要 cd / 进入主目录搜索
结果:
postgres@iZ2ze99yw68khbwsm2w698Z:/$ whereis postgresql
postgresql: /usr/lib/postgresql /etc/postgresql /usr/share/postgresql
执行删除:
root@iZ2ze99yw68khbwsm2w698Z:/# sudo rm -rf /usr/lib/postgresql
root@iZ2ze99yw68khbwsm2w698Z:/# sudo rm -rf /etc/postgresql
root@iZ2ze99yw68khbwsm2w698Z:/# sudo rm -rf /usr/share/postgresql
查看文件命令:find -name postgresql* # 注意 : 要 cd / 进入主目录搜索
       rm -rf 加上文件名删除   慎用
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

安装

1.运行  sudo apt-get update     --这个用来查找数据源
2.运行  apt install postgresql   --开始安装数据库
-- 下方编辑配置文件的地址要对应改变。9.5改成对应版本
2.1 不同版本的命令:sudo apt-get install postgresql-10 -y 

  • 1
  • 2
  • 3
  • 4
  • 5

1.1配置文件修改

运行 vi  /etc/postgresql/9.5/main/postgresql.conf  
把   #listen_addresses='localhost'  修改为  listen_addresses='*'
把  #password_encryption=on  修改为  password_encryption=on
  • 1
  • 2
  • 3

在这里插入图片描述

1.2配置文件修改

运行 vi /etc/postgresql/9.5/main/pg_hba.conf 
 在 IPv4 下面添加

 host      all      all        0.0.0.0/0     md5
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

2修改密码

//   修改linux密码
运行  sudo passwd -d postgres   -清除原来的密码  
运行  sudo -u postgres passwd   -添加新密码
//  修改postgresql密码
sudo -u postgres psql
ALTER USER postgres WITH PASSWORD '123456';  #修改PostgreSQL的登录密码为:postgres
\q  #退出PostgreSQL psql客户端
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

3重启

service postgresql stop  -- 停止
service postgresql start -- 启动
service postgresql restart -- 重启
service postgresql status  -- 查看状态
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

源码安装

1.官网下载源码https://www.postgresql.org/ftp/source/
在这里插入图片描述
2.将源码上传到服务器并解压
tar -zxvf 压缩包名称

3.进入postgresql文件夹
4. ./configure -prefix=/usr/local/pgsql --without-readline 中途会遇到各种错误,百度解决
5. make
6. make install 5,6步骤也会遇到错误百度解决
#apt-get upgrade
运行完成之后输入 ls -l /usr/local/pgsql/
在这里插入图片描述
参考文档:https://blog.csdn.net/u011652364/article/details/79286652

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

闽ICP备14008679号