Mac 下 PostgreSQL 的安装与使用

在 mac 下,可以利用 homebrew 直接安装 PostgreSQL:

1
brew  install postgresql - v

稍等片刻,PostgreSQL 就安装完成。接下来就是初始数据库,在终端执行一下命令,初始配置 PostgreSQL:

1
initdb  /usr/local/var/postgres -E utf8

上面指定 "/usr/local/var/postgres" 为 PostgreSQL 的配置数据存放目录,并且设置数据库数据编码是 utf8,更多配置信息可以 "initdb --help" 查看。

设成开机启动 PostgreSQL:

1
2
ln -sfv  /usr/local/opt/postgresql/ *.plist ~ /Library/LaunchAgents
launchctl load ~ /Library/LaunchAgents/homebrew .mxcl.postgresql.plist

启动 PostgreSQL:

1
pg_ctl -D  /usr/local/var/postgres -l  /usr/local/var/postgres/server .log start

关闭 PostgreSQL:

1
pg_ctl -D  /usr/local/var/postgres stop -s -m fast

创建一个 PostgreSQL 用户

1
2
3
createuser username -P
#Enter password for new role:
#Enter it again:

上面的 username 是用户名,回车输入 2 次用户密码后即用户创建完成。更多用户创建信息可以 "createuser --help" 查看。

创建数据库

1
createdb dbname -O username -E UTF8 -e

上面创建了一个名为 dbname 的数据库,并指定 username 为改数据库的拥有者(owner),数据库的编码(encoding)是 UTF8,参数 "-e" 是指把数据库执行操作的命令显示出来。

更多数据库创建信息可以 "createdb --help" 查看。

连接数据库

1
psql -U username -d dbname -h 127.0.0.1

PostgreSQL 数据库操作

显示已创建的数据库:

1
\l  

在不连接进 PostgreSQL 数据库的情况下,也可以在终端上查看显示已创建的列表:

1
psql -l

连接数据库

1
\c dbname

显示数据库表

1
\d  

创建一个名为 test 的表

1
CREATE TABLE test(id  int , text  VARCHAR (50));

插入一条记录

1
INSERT INTO test(id, text)  VALUES (1,  'sdfsfsfsdfsdfdf' );

查询记录

1
SELECT FROM test  WHERE id = 1;

更新记录

1
UPDATE test  SET text =  'aaaaaaaaaaaaa' WHERE id = 1;

删除指定的记录

1
DELETE FROM test  WHERE id = 1;

删除表

1
DROP TABLE test;

删除数据库

1
DROP DATABASE dbname;

或者利用 dropdb 指令,在终端上删除数据库

1
dropdb -U  user dbname

下面是自用的 PostgreSQL 的 php 操作类:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
 
define( "HOST" "127.0.0.1" );
define( "PORT" , 5432);
define( "DBNAME" "dbname" );
define( "USER" "user" );
define( "PASSWORD" "password" );
 
class Ext_Pgsql {
     
     //单例
     private static $instance = null;
 
     private $conn = null;
 
     private function __construct()
     {
         $this ->conn = pg_connect( "host=" . HOST .  " port=" . PORT .  " dbname=" . DBNAME .  " user=" . USER .  " password=" . PASSWORD)  or die ( 'Connect Failed : ' . pg_last_error());
     }
 
     public function __destruct()
     {
         @pg_close( $this ->conn);
     }
 
     /**
      * 单例模式
      * @param $name
      */
     public static function getInstance()
     {
         if ( ! self:: $instance )
         {
             self:: $instance new self();
         }
         return self:: $instance ;
     }
 
     /**
      * 获取记录
      */
     public function fetchRow( $sql )
     {
         $ret array ();
         $rs = pg_query( $this ->conn,  $sql );
         $ret = pg_fetch_all( $rs );
         if ( !  is_array ( $ret ) )
         {
             return array ();
         }
         return $ret ;
     }
 
     /**
      * 执行指令
      * @param string $sql
      */
     public function query( $sql )
     {
         $result = pg_query( $this ->conn,  $sql );
         if ( !  $result )
             die ( "SQL : {$sql} " . pg_last_error());
     }
 
     /**
      * 获取一条记录
      */
     public function fetchOne( $sql )
     {
         $ret array ();
         $rs = pg_query( $this ->conn,  $sql );
         $ret = pg_fetch_all( $rs );
         if ( !  is_array ( $ret ) )
         {
             return array ();
         }
         return current( $ret );
     }
     
}
 
?>

一些问题

PostgreSQL 9.2 版本升级到 9.3.1 版本后的数据兼容问题

连接 PostgreSQL 时报以下错误:

1
2
3
psql: could not connect to server: Connection refused
Is the server running on host "127.0.0.1" and accepting
TCP/IP connections on port 5432?

打开 PostgreSQL 的服务日志发现是 PostgreSQL 9.2 版本升级到 9.3.1 版本后的数据兼容问题:

1
2
3
tail -f /usr/local/var/postgres/server.log
FATAL:  database files are incompatible with server
DETAIL:  The data directory was initialized by PostgreSQL version 9.2, which is not compatible with this version 9.3.1.

对于版本的数据升级问题,PostgreSQL 提供了 pg_upgrade 来做版本后的数据迁移,用法如下:

1
pg_upgrade -b 旧版本的bin目录 -B 新版本的bin目录 -d 旧版本的数据目录 -D 新版本的数据目录 [其他选项...]

数据迁移前,记得先关闭 PostgreSQL 的 postmaster 服务,不然会报以下错误:

1
2
3
There seems to be a postmaster servicing the new cluster.
Please shutdown that postmaster and try again.
Failure, exiting

利用 pg_ctl 关闭 postmaster:

1
pg_ctl -D /usr/local/var/postgres stop

Mac 下也可以这样关闭:

1
launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist

首先备份就版本的数据(默认是在 /usr/local/var/postgres 目录):

1
mv /usr/local/var/postgres /usr/local/var/postgres.old

利用 initdb 命令再初始一个数据库文件:

1
initdb /usr/local/var/postgres -E utf8 --locale=zh_CN.UTF-8

NOTE:记得加 "--locale=zh_CN.UTF-8" 选项,不然会报以下错误:

1
lc_collate cluster values do not match:  old "zh_CN.UTF-8", new "en_US.UTF-8"

最后运行 pg_upgrade 进行数据迁移:

1
pg_upgrade -b /usr/local/Cellar/postgresql/9.2.4/bin/ -B /usr/local/

猜你喜欢

转载自xialluyouyue.iteye.com/blog/2219985