首页 | 邮件资讯 | 技术教程 | 解决方案 | 产品评测 | 邮件人才 | 邮件博客 | 邮件系统论坛 | 软件下载 | 邮件周刊 | 热点专题 | 工具
网络技术 | 操作系统 | 邮件系统 | 客户端 | 电子邮箱 | 反垃圾邮件 | 邮件安全 | 邮件营销 | 移动电邮 | 邮件软件下载 | 电子书下载

操作系统

Windows 9X | Linux&Uinx | Windows Server | 其它操作系统 | Vista | FreeBSD | Windows 7 |
首页 > 操作系统 > 其它操作系统 > OpenBSD4.0 PostgreSQL8.1.5数据库的安装 > 正文

OpenBSD4.0 PostgreSQL8.1.5数据库的安装

出处:chinaunix 作者:chinaunix 时间:2007-2-10 11:02:35
 一、建立postgresql相关用户

    #groupadd postgresql

    #mkdir /home/postgres

    #useradd –g postgresql postgres

    #passwd postgres

    设置密码 password

    确认密码 password

    二、安装PostgreSQL

    #mkdir –p /var/postgresql/data                     
    *建立数据库初始目录,安装时会自动建立但会提示个错误。

    #chown –R postgres /var/postgresql/data    
    *让用户postgres拥有数据库目录控制权限

    #pkg_add -r postgresql-server-8.1.5.tgz

    三、开机启动PostgreSQL数据库

    #vi /etc/rc.local                            
    *加入如下内容,注意格式
    CODE:[Copy to clipboard]if [ -x /usr/local/bin/pg_ctl -a -x /usr/local/bin/postmaster ]; then

    su postgres -c "/usr/local/bin/pg_ctl start -D /var/postgresql/data -l /var/postgresql/data/log.txt -o '-D /var/postgresql/data' -o '-k /var/www/tmp/'"

    ln -s /var/www/tmp/.s.PGSQL.5432 /tmp

    ln -s /var/www/tmp/.s.PGSQL.5432.lock /tmp

    echo -n ' postgresql'

    fi
    :wq    *保存退出

    #ln -s /var/www/tmp/.s.PGSQL.5432 /tmp

    #ln -s /var/www/tmp/.s.PGSQL.5432.lock /tmp

    四、关机时关闭PostgreSQL数据库

    #vi /etc/rc.shutdown    *加入如下内容,注意格式


    CODE:[Copy to clipboard]if [ -f /var/postgresql/data/postmaster.pid ]; then

    su postgres -c '/usr/local/bin/pg_ctl stop -m fast -D /var/postgresql/data'

    rm -f /var/postgresql/data/postmaster.pid

    fi
    :wq

  五、建立数据库

    #su postgres

    $initdb –D /var/postgresql/data

    $exit
    (如果这步提示 /tmp/.s.PGSQL.5432.lock 文件已存在无法创建该文件,请把/tmp/.s.PGSQL.5432.lock 删除,再次启动数据)


    六、启动数据库、建立新用户、创建数据

    #su postgres

    $/usrl/local/bin/postmaster -D /var/postgresql/data

    或者

    $/usr/local/bin/pg_ctl –D /var/postgresql/data –l /var/postgresql/data/pgsql.log start

    $createuser –P        
    *创建一个带密码的超级用户 -P 大写

    Enter name of role to add: (新的用户名)

    Enter password for new role: (新密码)

    Enter it again: (确认密码)

    Shall the new role be a superuser? (y/n) y        
    (使该用户拥有超级用户权限y/n) 如果输入y,下面两项将不再出现

    Shall the new role be allowed to create databases?(y/n)      
    (使该用户拥有创建新数据库的权限y/n)

    Shall the new role be allowed to create more new roles?(y/n)   
    (使该用户拥有新用户创建的权限y/n)

    $/usr/local/bin/createdb -O admin -E UNICODE phpbb

    *(为admin用户创建一个编码为UTF-8的phpbb数据库,注意大小写,admin必须拥有superuser权限)*

    CREATE DATABASE

    $exit

    七、配置postgresql

    #vi /var/postgresql/data/pg_hba.conf

    # TYPE  DATABASE  USER  CIDR-ADDRESS  METHOD

    # "local" is for Unix domain socket connections only
    local   postgres   all               trust 
    # IPv4 local connections:
    host     all     all    0.0.0.0 0.0.0.0   md5 * 密码认证


    #vi /var/postgresql/data/postgresql.conf

    改:


    CODE:[Copy to clipboard]#listen_addresses = 'localhost'

    #port = 5432

    #unix_socket_permissions = 0777

    #authentication_timeout = 60

    #password_encryption = on

    #db_user_namespace = off

    为:

    listen_addresses = '*'   

    port = 5432

    unix_socket_permissions = 0700

    authentication_timeout = 60

    password_encryption = on

    db_user_namespace = off
    :wq 
  八、安装并配置phpPgAdmin-4.0.1

    #pkg_add -r php5-pgsql-5.1.4.tgz

    #/usr/local/sbin/phpxs -a pgsql

    网上下载phpPgAdmin-4.0.1.tar.gz 到 /var/www/htdocs    

    #tar zxf phpPgAdmin-4.0.1.tar.gz

    #mv phpPgAdmin-4.0.1 pgadmin       
   

    *改个容易记住的名字,当然你喜欢长文件名不改也行~_~

    #vi /var/www/htdocs/pgadmin/conf/config.inc.php


    CODE:[Copy to clipboard]改:

    $conf['servers'][0]['host'] = '';     

    $conf['servers'][0]['defaultdb'] = 'Template1';

    $conf['extra_login_security'] = true;

    为:

    $conf['servers'][0]['host'] = 'localhost';     
    * 指定postgresql 在本机

    $conf['servers'][0]['defaultdb'] = 'posrgres';   
    * PostgreSQL 8.1 以上版本,你需要到将这项设定为 'postgres'

    $conf['extra_login_security'] = false;      
    *启用密码认证
    :wq

相关文章 热门文章
  • OpenBSD3.8+PF+PFSYNC+CARP
  • OpenBSD自带ftpd程序搭建ftp服务器
  • OpenBSD2.8服务器配置实务手册
  • OpenBSD入门
  • NetBSD操作系统在VMware下的安装指南
  • OpenBSD入门
  • SCO UNIX系统安装全图解
  • 怎样选择服务器操作系统?
  • Netware 6.5操作系统安装全程图解
  • 在Fedora core 4.0 加载NTFS和FAT32分区详述
  • IBM专家解析UNIX和Windows之间区别
  • Gentoo 完整的USE参数清单中文详解
  • Fedora Core下声卡驱动全功略
  • 建立针对arm-linux的交叉编译环境
  • Debian服务器设置入门教程之一
  • OpenBSD2.8服务器配置实务手册
  • 自由广告区
     
    最新软件下载
  • SharePoint Server 2010 部署文档
  • Exchange 2010 RTM升级至SP1 教程
  • Exchange 2010 OWA下RBAC实现的组功能...
  • Lync Server 2010 Standard Edition 标..
  • Lync Server 2010 Enterprise Edition...
  • Forefront Endpoint Protection 2010 ...
  • Lync Server 2010 Edge 服务器部署文档
  • 《Exchange 2003专家指南》
  • Mastering Hyper-V Deployment
  • Windows Server 2008 R2 Hyper-V
  • Microsoft Lync Server 2010 Unleashed
  • Windows Server 2008 R2 Unleashed
  • 今日邮件技术文章
  • 腾讯,在创新中演绎互联网“进化论”
  • 华科人 张小龙 (中国第二代程序员 QQ...
  • 微软推出新功能 提高Hotmail密码安全性
  • 快压技巧分享:秒传邮件超大附件
  • 不容忽视的邮件营销数据分析过程中的算..
  • 国内手机邮箱的现状与未来发展——访尚..
  • 易观数据:2011Q2中国手机邮箱市场收入..
  • 穿越时空的爱恋 QQ邮箱音视频及贺卡邮件
  • Hotmail新功能:“我的朋友可能被黑了”
  • 入侵邻居网络发骚扰邮件 美国男子被重..
  • 网易邮箱莫子睿:《非你莫属》招聘多过..
  • 中国电信推广189邮箱绿色账单
  • 最新专题
  • 鸟哥的Linux私房菜之Mail服务器
  • Exchange Server 2010技术专题
  • Windows 7 技术专题
  • Sendmail 邮件系统配置
  • 组建Exchange 2003邮件系统
  • Windows Server 2008 专题
  • ORF 反垃圾邮件系统
  • Exchange Server 2007 专题
  • ISA Server 2006 教程专题
  • Windows Vista 技术专题
  • “黑莓”(BlackBerry)专题
  • Apache James 专题
  • 分类导航
    邮件新闻资讯:
    IT业界 | 邮件服务器 | 邮件趣闻 | 移动电邮
    电子邮箱 | 反垃圾邮件|邮件客户端|网络安全
    行业数据 | 邮件人物 | 网站公告 | 行业法规
    网络技术:
    邮件原理 | 网络协议 | 网络管理 | 传输介质
    线路接入 | 路由接口 | 邮件存储 | 华为3Com
    CISCO技术 | 网络与服务器硬件
    操作系统:
    Windows 9X | Linux&Uinx | Windows NT
    Windows Vista | FreeBSD | 其它操作系统
    邮件服务器:
    程序与开发 | Exchange | Qmail | Postfix
    Sendmail | MDaemon | Domino | Foxmail
    KerioMail | JavaMail | Winwebmail |James
    Merak&VisNetic | CMailServer | WinMail
    金笛邮件系统 | 其它 |
    反垃圾邮件:
    综述| 客户端反垃圾邮件|服务器端反垃圾邮件
    邮件客户端软件:
    Outlook | Foxmail | DreamMail| KooMail
    The bat | 雷鸟 | Eudora |Becky! |Pegasus
    IncrediMail |其它
    电子邮箱: 个人邮箱 | 企业邮箱 |Gmail
    移动电子邮件:服务器 | 客户端 | 技术前沿
    邮件网络安全:
    软件漏洞 | 安全知识 | 病毒公告 |防火墙
    攻防技术 | 病毒查杀| ISA | 数字签名
    邮件营销:
    Email营销 | 网络营销 | 营销技巧 |营销案例
    邮件人才:招聘 | 职场 | 培训 | 指南 | 职场
    解决方案:
    邮件系统|反垃圾邮件 |安全 |移动电邮 |招标
    产品评测:
    邮件系统 |反垃圾邮件 |邮箱 |安全 |客户端
    广告联系 | 合作联系 | 关于我们 | 联系我们 | 繁體中文
    版权所有:邮件技术资讯网©2003-2010 www.5dmail.net, All Rights Reserved
    www.5Dmail.net Web Team   粤ICP备05009143号