Welcome 微信登录

首页 / 数据库 / MySQL / PostgreSQL 9.1.2源码编译

刚要入门php,然后开始编译环境,先从PostgreSQL开始...
-----------------------------------------------------------| System | CentOS 5.7----------------------------------------------------------- 遇到的编译postgresql的依赖问题,请转文后补充. yum -y install readline-devel?参考:http://www.linuxidc.com/Linux/2012-02/53982.htmPostgreSQL 下载页面 http://www.postgresql.org/ftp/source/?

#mkdir /usr/local/src/postgresql? && cd /usr/local/src/postgresql 
#wget http://ftp.postgresql.org/pub/source/v9.1.2/postgresql-9.1.2.tar.gz

解压缩#tar -zxvf postgresql-9.1.2.tar.gz?#su - -c "useradd -M postgres"#chown -R postgres:postgres postgresql-9.1.2
配置编译
#./configure --help
#./configure --prefix=/opt/pgsql--sysconfdir=/opt/pgsql/etc?#mkdir/opt/pgsql/data#chown postgres:postgres /opt/pgsql/data

初始化# su postgresbash-3.2$ /opt/pgsql/bin/initdb -D /opt/pgsql/data[plain]
  1. The files belonging to this database system will be owned by user "postgres".  
  2. This user must also own the server process.  
  3. ?  
  4. The database cluster will be initialized with locale en_US.UTF-8.  
  5. The default database encoding has accordingly been set to UTF8.  
  6. The default text search configuration will be set to "english".  
  7.   
  8. fixing permissions on existing directory /opt/pgsql/data ... ok  
  9. creating subdirectories ... ok  
  10. selecting default max_connections ... 100  
  11. selecting default shared_buffers ... 32MB  
  12. creating configuration files ... ok  
  13. creating template1 database in /opt/pgsql/data/base/1 ... ok  
  14. initializing pg_authid ... ok  
  15. initializing dependencies ... ok  
  16. creating system views ... ok  
  17. loading system objects" descriptions ... ok  
  18. creating collations ... ok  
  19. creating conversions ... ok  
  20. creating dictionaries ... ok  
  21. setting privileges on built-in objects ... ok  
  22. creating information schema ... ok  
  23. loading PL/pgSQL server-side language ... ok  
  24. vacuuming database template1 ... ok  
  25. copying template1 to template0 ... ok  
  26. copying template1 to postgres ... ok  
  27.   
  28. WARNING: enabling "trust" authentication for local connections  
  29. You can change this by editing pg_hba.conf or using the -A option the  
  30. next time you run initdb.  
  31. ?  
  32. Success. You can now start the database server using:  
  33.   
  34. /opt/pgsql/bin/postgres -D /opt/pgsql/data  
  35. or  
  36. /opt/pgsql/bin/pg_ctl -D /opt/pgsql/data -l logfile start  
添加环境变量#vi /etc/profilePATH=/opt/pgsql/bin:$PATHexport PATH?#source /etc/profile?启动:#mkdir /opt/pgsql/logs/#chown postgres:postgres /opt/pgsql/logs/#su postgresbash-3.2$ /opt/pgsql/bin/pg_ctl -D /opt/pgsql/data -l /opt/pgsql/logs/pgsql.log start设置启动脚本:#su -c "cp /usr/local/src/postgresql/postgresql-9.1.2/contrib/start-scripts/linux /etc/rc.d/init.d/postgresql-9.1.2"#su -c "chmod a+x /etc/rc.d/init.d/postgresql-9.1.2"#vi /etc/rc.d/init.d/postgresql-9.1.2
  • 1
  • 2
  • 3
  • 下一页
PostgreSQL教程:configure: error: readline library not foundOracle数据库的游标Cursor和存储过程 PL/SQL相关资讯      PostgreSQL 
  • Ubuntu 16.04 下安装 PostgreSQL   (08月14日)
  • PostgreSQL 发布全系安全更新  (02月12日)
  • 使用pg_basebackup搭建PostgreSQL  (12/30/2015 09:00:29)
  • Linux下RPM包方式安装PostgreSQL  (03月04日)
  • PostgreSQL9.5新特性之行级安全性  (01月19日)
  • 利用pgpool实现PostgreSQL的高可用  (12/30/2015 08:54:36)
本文评论 查看全部评论 (0)
表情: 姓名: 字数