1.PostgresSQL安装
【数据库|【无标题】】1.安装rpm文件yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
2.安装客服端yum install postgressql10
3.安装服务端yum install postgresql10-server
4.初始化/usr/pgsql-10/bin/postgresql-10-setup initdb
5.设置自动启动并且启动postgressql服务systemctl enable postgresql-10
systemctl start postgresql-10
2.创建用户和数据库
1.使用postgres用户登录(PostgresSQL安装后会自动创建postgres用户,无密码)su - postgres
2.登录到postgresql数据库psql
3.创建用户
create user test with password 'cps123';
4.创建数据库
create database test_db owner test ;
5.授权访问
grant all privileges on database test_db to test
3.远程访问
1、修改/var/lib/pgsql/10/data/postgresql.conf文件,取消 listen_addresses 的注释,将参数值改为“*”
2、修改/var/lib/pgsql/10/data/pg_hba.conf文件,添加
host all all 0.0.0.0/0 md5
3、切换到root用户,重启postgresql服务systemctl restart postgresql-10.service
文章图片
推荐阅读
- Linux|Linux Shell脚本实现自动交互
- java|【开发工具】Windows远程桌面连接
- mysql|《MySQL是怎样运行的》学习导图
- Linux|个人学习linux的心得(其实熟悉命令就是记住秘籍)
- Linux操作系统|【Linux】进程信号
- Linux操作系统|【Linux】进程间通信(匿名管道、命名管道、共享内存)
- 【Linux】多线程,你绝对不能错过,详解!
- Linux|给自己一首歌的时间学习来Linux基本开发工具
- 运维|Anolis龙蜥升级kernel