postgresql部署
短信预约 信息系统项目管理师 报名、考试、查分时间动态提醒
-
版本: 10.10
-
官方下载地址:https://www.postgresql.org/download/linux/redhat/
# 安装yum源
yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
# 安装pg相关包
yum install postgresql10
yum install postgresql10-server
-
修改pg数据路径
vi /usr/lib/systemd/system/postgresql-10.service Environment=PGDATA=/data/pgsql/data
-
初始化数据库
/usr/pgsql-10/bin/postgresql-10-setup initdb
-
设置开机启动 & 启动pg
systemctl enable postgresql-10
systemctl start postgresql-10
sudo -su postgres
psql
> CREATE ROLE yunxi superuser PASSWORD "Yunxi711" login;
>
# 修改密码
alter user yunxi with password "Yunxi711";
# 修改配置文件 加入如下项
vi /data/pgsql/data/postgresql.conf
> listen_addresses = "*"
vi pg_hba.conf
> host all all 0.0.0.0/0 md5
# 重启pg
systemctl restart postgresql-10
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341