一、创建psotgres用户 groupadd postgres useradd -g postgres postgres 二、创建必须目录
一、创建psotgres用户
groupadd postgres
useradd -g postgres postgres
二、创建必须目录
下载路径https://www.enterprisedb.com/download-postgresql-binaries
wget Https://get.enterprisedb.com/postgresql/postgresql-9.6.4-1-linux-x64-binaries.tar.gz
进入下载目录
tar -xzf postgresql-9.6.4-1-linux-x64-binaries.tar.gz -C /data/service
创建data目录:
mkdir -p /data/service/postgresql/data
mkdir -p /data/service/postgresql/log
授权:
chown -R postgres.postgres pgsql (解压目录)
chown -R postgres.postgres postgresql
三、初始化
cd /data/service/pgsql/
su postgres
./bin/initdb -E utf8 -D /data/service/postgresql/data
四、启动
./postgres -D /data/service/postgresql/data/ > /data/service/postgresql/log/postgres.log &
关闭
./pg_ctl -D /data/service/postgresql/data stop
登录
./psql -U pg -d mydb
----------------------
远程连接
1 修改pg_hba.conf文件
host all all 127.0.0.1/32 trust
host all all 192.168.1.0/24 md5
其中,数字24是子网掩码,表示允许192.168.1.0--192.168.1.255的计算机访问!
--结束END--
本文标题: postgresql Linux 二进制文件安装
本文链接: https://lsjlt.com/news/47757.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0