Welcome 微信登录

首页 / 数据库 / MySQL / Mac OSX下编译安装PostgreSQL

原先使用的是官方提供的安装包,但是安装包会创建postgre这个用户,在登陆界面看的有点不爽,搜索了半天竟然没有找到如何在osx下编译安装的教程,而且如果是按照官方文档的编译安装办法一定会让你崩溃,本着源码安装都类似的想法,根据以往在Linux下的经验竟然一把通过了,注意要安装COMMANDER LINE DEVELOPERS就是了。./configuremakesudo mkdir /u01
sudo mkdir -p /u01/pgdatasudo chown -R linuxidc:staff /u01/pgdatasudo make installvi .bash_profileexport PGDATA=/u01/pgdata
export PG_HOME=/usr/local/pgsql
export PGDATABASE=postgresexport PATH=/usr/local/bin:$PG_HOME/bin:$PATHexport LD_LIBRARY_PATH=$PG_HOME/lib:$LD_LIBRARY_PATHexport DYLD_LIBRARY_PATH=$PG_HOME/lib:$DYLD_LIBRARY_PATH 
initdb /u01/pgdata -E utf8pg_ctl -l $PGDATA/server.log start 
linuxidc:~ gtlions$ ps -ef | grep postgres
  501  1624  1622 0  9:05上午 ??       0:00.00 postgres: checkpointer process 
  501  1625  1622 0  9:05上午 ??       0:00.02 postgres: writer process 
  501  1626  1622 0  9:05上午 ??       0:00.00 postgres: wal writer process 
  501  1627  1622 0  9:05上午 ??       0:00.00 postgres: autovacuum launcher process 
  501  1628  1622 0  9:05上午 ??       0:00.00 postgres: stats collector process 
  501  1622   1 0  9:05上午 ttys001    0:00.02 /usr/local/pgsql/bin/postgres
  501  1636  1613 0  9:06上午 ttys001    0:00.00 grep postgres
linuxidc:~ gtlions$ psql -l
                                List of databases
 Name    |  Owner  | Encoding | Collate |    Ctype    |  Access privileges 
-----------+---------+----------+-------------+-------------+---------------------
 postgres  | linuxidc | UTF8   | zh_CN.UTF-8 | zh_CN.UTF-8 |
 template0 | linuxidc | UTF8   | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/linuxidc       +
         |       |          |           |           | linuxidc=CTc/gtlions
 template1 | linuxidc | UTF8   | zh_CN.UTF-8 | zh_CN.UTF-8 | =c/linuxidc       +
         |       |          |           |           | linuxidc=CTc/gtlions
(3 rows)linuxidc:~ gtlions$ psql -ac "select version();"
select version();
                                                              version                                                             
-----------------------------------------------------------------------------------------------------------------------------------
 PostgreSQL 9.3.5 on x86_64-apple-darwin14.0.0, compiled by Apple LLVM version 6.0 (clang-600.0.51) (based on LLVM 3.5svn), 64-bit
(1 row)linuxidc:~ gtlions$-EOF-------------------------------------华丽丽的分割线------------------------------------CentOS 6.3环境下yum安装PostgreSQL 9.3 http://www.linuxidc.com/Linux/2014-05/101787.htmPostgreSQL缓存详述 http://www.linuxidc.com/Linux/2013-07/87778.htmWindows平台编译 PostgreSQL http://www.linuxidc.com/Linux/2013-05/85114.htmUbuntu下LAPP(Linux+Apache+PostgreSQL+PHP)环境的配置与安装 http://www.linuxidc.com/Linux/2013-04/83564.htmUbuntu上的phppgAdmin安装及配置 http://www.linuxidc.com/Linux/2011-08/40520.htmCentOS平台下安装PostgreSQL9.3 http://www.linuxidc.com/Linux/2014-05/101723.htmPostgreSQL配置Streaming Replication集群 http://www.linuxidc.com/Linux/2014-05/101724.htm如何在CentOS 7/6.5/6.4 下安装PostgreSQL 9.3 与 phpPgAdmin  http://www.linuxidc.com/Linux/2014-12/110108.htm------------------------------------华丽丽的分割线------------------------------------PostgreSQL 的详细介绍:请点这里
PostgreSQL 的下载地址:请点这里本文永久更新链接地址