下载地址:PostgreSQL: File Browser
选择要安装的版本进行下载:
在要安装postgresql数据库的Linux服务器上执行以下命令安装所需要的依赖包:
yum install -y perl-ExtUtils-Embed readline-devel zlib-devel pam-devel libxml2-devel libxslt-devel openldap-devel python-devel gcc-c++ openssl-devel cmake
1、在根目录下新建/opt/pgsql文件夹,并将pgsql的压缩包移入。
2、解压压缩包
tar -zxvf postgresql-12.0.tar.gz
3、进入解压后的文件夹
cd postgresql-12.0
4、编译postgresql源码
./configure --prefix=/opt/pgsql/postgresql
make
make install
至此,已完成postgreql的安装。进入/opt/pgsql/postgresql目录可以看到安装后的postgresql的文件。
groupadd postgres
useradd -g postgres postgres
id postgres
mkdir data
chown postgres:postgres data
进入home/postgres目录可以看到.bash_profile文件。
cd /home/postgres
ls -al
编辑修改.bash_profile文件。
vim .bash_profile
添加以下内容。
export PGHOME=/opt/pgsql/postgresql export PGDATA=/opt/pgsql/postgresql/data PATH=$PATH:$HOME/bin:$PGHOME/bin
保存,退出vim。执行以下命令,使环境变量生效
source .bash_profile
su - postgres
initdb可以看到/opt/pgsql/postgresql/data已经有文件了。
cd /opt/pgsql/postgresql/data九、配置服务
修改/opt/pgsql/postgresql/data目录下的两个文件。
postgresql.conf 配置PostgreSQL数据库服务器的相应的参数。
pg_hba.conf 配置对数据库的访问权限。
vim postgresql.conf其中,参数“listen_addresses”表示监听的IP地址,默认是在localhost处监听,也就是127.0.0.1的ip地址上监听,只接受来自本机localhost的连接请求,这会让远程的主机无法登陆这台数据库,如果想从其他的机器上登陆这台数据库,需要把监听地址改为实际网络的地址,一种简单的方法是,将行开头的#去掉,把这个地址改为*,表示在本地的所有地址上监听。
vim pg_hba.confhost all all 0.0.0.0/0 trust #新增这一行找到最下面这一行 ,这样局域网的人才能访问
PostgreSQL的开机自启动脚本位于PostgreSQL源码目录的contrib/start-scripts路径下。
linux文件即为linux系统上的启动脚本
cd /opt/pgsql/postgresql-12.0/contrib/start-scripts
切换为root用户,修改linux文件属性,添加X属性
su root
chmod a+x linux
复制linux文件到/etc/init.d目录下,更名为postgresql
cp linux /etc/init.d/postgresql
修改/etc/init.d/postgresql文件的两个变量
prefix设置为postgresql的安装路径:/pgsql/postgresql
PGDATA设置为postgresql的数据目录路径:/pgsql/postgresql/data
vim /etc/init.d/postgresql
设置postgresql服务开机自启动
chkconfig --add postgresql
执行service postgresql start,启动PostgreSQL服务
service postgresql start