当前位置:Gxlcms > mysql > Linux安装PostgreSQL8.3步骤

Linux安装PostgreSQL8.3步骤

时间:2021-07-01 10:21:17 帮助过:43人阅读

1、下载postgresql最新版:http://www.postgresql.org/ftp/source/ 2、解压文件:tar zxvf postgresql-8.3.7.tar.gzcd postgresq

Linux公社

首页 → 数据库技术

背景:

阅读新闻

Linux安装PostgreSQL 8.3步骤

[日期:2012-07-31] 来源:Liux社区 作者:sunxingtao [字体:]

1、下载postgresql最新版:

2、解压文件:
tar zxvf postgresql-8.3.7.tar.gz
cd postgresql-8.3.7

3、配置:
./configure --prefix=/usr/local/pgsql

4、编译:
make

5、安装:
make install

6、创建用户组和用户:
groupadd postgres
useradd -g postgres postgres

7、创建数据库库文件存储目录、给postgres赋予权限:
mkdir /usr/local/pgsql/data
cd /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/data

9、配置监听地址和端口:
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让远程主机能访问:
   vi /etc/sysconfig
   添加
     -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT
   service iptables restart

11、让postgresql数据库随系统启动而启动:
将启动脚本拷贝到/etc/init.d/目录下,具体执行如下命令:
cd /etc/rc.d/init.d
cp (第一步解压的安装文件目录)/postgresql-8.3.7/contrib/start-scripts/linux postgresql
chmod +x postgresql
vi postgresql
   prefix=/usr/local/pgsql
   PGDATA="/usr/local/pgsql/data"
   PGUSER=postgres
   PGLOG="/var/log/pgsql.log"

   chkconfig --add postgresql
启动数据库:
   service postgresql start

配置完毕 。

linux

  • 0
  • RHEL Server 6.3下MySQL5.5.25a源码安装

    PostgreSQL 9.1.3 plpgsql debugger module

    相关资讯 PostgreSQL安装

    图片资讯

  • CentOS 6.3下PostgreSQL 的安装与配置

    CentOS 6.3下
  • Linux下PostgreSQL 的安装与配置

    Linux下PostgreSQL 的
  • 本文评论   查看全部评论 (0)

    评论声明

    最新资讯

    本周热门

    Linux公社简介 - 广告服务 - 网站地图 - 帮助信息 - 联系我们
    本站(LinuxIDC)所刊载文章不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。


    Copyright © 2006-2014 Linux公社 All rights reserved 浙ICP备06018118号

    人气教程排行