[摘要]PostgreSQL是一种特性非常齐全的自由软件的对象-关系型数据库管理系统(ORDBMS),可以说是目前世界上最先进,功能最强大的自由数据库管理系统。
1、下载postgresql最新版:
PostgreSQL v9.2.1.1 For Linux下载
界面预览2、解压文件:
tar zxvf postgresql-8.3.7.tar.gzcd postgresql-8.3.7
3、配置:
./configure --prefix=http://down.chinaz.com/usr/local/pgsql4、编译:
make5、安装:
make install6、创建用户组和用户:
groupadd postgresuseradd -g postgres postgres
7、创建数据库库文件存储目录、给postgres赋予权限:
mkdir /usr/local/pgsql/datacd /usr/local/pgsql
chown postgres.postgres data
8、初始化数据库目录:
切换用户
su - postgresql初始化数据
/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data启动数据库
/usr/local/pgsql/bin/postmaster -D /usr/local/pgsql/data9、配置监听地址和端口:
vi /usr/local/pgsql/data/postgresql.conf取消以下两行的注释
listen_addresses = '*'port = 5432
10、允许远程连接:
vi /usr/local/pgsql/data/pg_hba.conf添加
host all all 192.168.1.0/24 trust每项的具体意思在配置文件中有详细说明
配置iptables让远程主机能访问:
添加
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPTservice iptables restart
11、让postgresql数据库随系统启动而启动:
将启动脚本拷贝到/etc/init.d/目录下,具体执行如下命令:
cd /etc/rc.d/init.dcp (第一步解压的安装文件目录)/postgresql-8.3.7/contrib/start-scripts/linux postgresql
chmod +x postgresql
vi postgresql
prefix=http://down.chinaz.com/usr/local/pgsql
PGDATA="/usr/local/pgsql/data"
PGUSER=postgres
PGLOG="/var/log/pgsql.log"
chkconfig --add postgresql
启动数据库:
service postgresql start配置完毕 。
分享到