一聚教程网:一个值得你收藏的教程网站

热门教程

CentOS系统安装 PostgreSQL9.4例子

时间:2022-06-30 21:12:18 编辑:袖梨 来源:一聚教程网

添加软件源,以 PostgreSQL 9.4 为例

yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm

安装数据库

yum -y install postgresql-server postgresql94 postgresql94-devel

建立数据库目录并赋予 postgres 用户权限

mkdir -p /home/pgsql/data
chown -R postgres:postgres /home/pgsql/

切换用户并初始化数据库目录

su - postgres
/usr/pgsql-9.4/bin/initdb -D /home/pgsql/data/ -E UTF-8 --locale=en_US.UTF-8

使用 root 用户修改启动脚本

vim /etc/init.d/postgresql-9.4

PGDATA=/home/pgsql/data     # 将 PGDATA 的值改为新建的数据库目录

启动数据库

/etc/init.d/postgresql-9.4 start

热门栏目