postgresql 安裝

在Linux上安裝PostgreSQL

時間:2010-11-19 10:40 來源:51CTO 收藏 複製分享 共有評論(0)條 php

 MySQL 是一條輕快的小海豚,可是缺乏不少現代關係數據庫應有的特點,例如:引用完整性,視圖,觸發器等。所以,若是你須要開發一個電子商務的網站,須要這些功能 的話,你或許應該考慮 PostgreSQL 了。本文將經過其在 Red Hat 7.1 上安裝過程,簡要介紹其用法。 sql

  PostgreSQL 的官方下載地址爲: 數據庫

  ftp://ftp.postgresql.org/pub/v7.1.3/postgresql-7.1.3.tar.gz 安全

  http://www.postgresql.org/ bash

  若是下載最新的開發版本,你須要下載並安裝 flex(版本號大於 2.5.4) 以及 bison (版本號大於 1.28) 工具

  設計人員爲了安全考慮,PostgreSQL 不能以 root 用戶運行,因此必須創建對應的用戶和組。 post

  # useradd postgre (自動創建 postgre 組) flex

  安裝的過程並不複雜和其餘源碼版本的安裝方法相似: 網站

  解壓到 /usr/local/src: spa

  # tar xvfz postgresql-7.1.3.tar.gz

  # cd postgresql-7.1.3

  # ./configure --prefix=/usr/local/pgsql

  # make

  # make install

  # chown -R postgre.postgre /usr/local/pgsql

  這樣安裝完畢後,並非萬事大吉了,還有一些收尾工做要作:

  # vi ~postgre/.bash_profile

  添加:

  PGLIB=/usr/local/pgsql/lib

  PGDATA=$HOME/data

  PATH=$PATH:/usr/local/pgsql/bin

  MANPATH=$MANPATH:/usr/local/pgsql/man

  export PGLIB PGDATA PATH MANPATH

  以 postgres 用戶登陸,

  # su - postgre

  創建數據庫目錄:

  $ mkdir data

  啓動數據庫引擎:

  $ initdb

  [postgre@www postgre]$ initdb

  This database system will be initialized with username "postgre".

  This user will own all the data files and must also own the server process.

  Fixing permissions on pre-existing data directory /home/postgre/data

  Creating database system directory /home/postgre/data/base

  Creating database XLOG directory /home/postgre/data/pg_xlog

  Creating template database in /home/postgre/data/base/template1

  Creating global relations in /home/postgre/data/base

  Adding template1 database to pg_database

  Creating view pg_user.

  Creating view pg_rules.

  Creating view pg_views.

  Creating view pg_tables.

  Creating view pg_indexes.

  Loading pg_description.

  Vacuuming database.

  Success. You can now start the database server using:

  /usr/local/pgsql/bin/postmaster -D /home/postgre/data

  or

  /usr/local/pgsql/bin/pg_ctl -D /home/postgre/data start

  $ postmaster -i -D ~/data &

  [1] 22603

  [postgre@www postgre]$ DEBUG: Data Base System is starting up at Thu Jan 31 02:00:44 2002

  DEBUG: Data Base System was shut down at Thu Jan 31 01:57:58 2002

  DEBUG: Data Base System is in production state at Thu Jan 31 02:00:44 2002

  這樣 PostgreSQL 使用位於 /usr/local/pgsql/data 的數據庫,容許 Internet 用戶的鏈接( -i ) ,並在後臺運行。

  創建數據庫

  $createdb mydb

  PostgreSQL 會返回 「 CREATED DATABASE」的信息,代表數據庫創建完成。

  $psql mydb

  進入交互 psql 工具,創建表:

  CREATE TABLE mytable (

  id varchar(20),

  name varchar(30));

  創建完成後,會獲得一條 「CREATED」 的信息,表示創建成功。如今插入一條數據:

  INSERT INTO mytable values(Author, Xu Yongjiu);

  psql 返回 INSERT 18732 1,查詢插入是否成功:

  SELECT * FROM MYTABLE;

  退出 psql ,用 q 命令。

相關文章
相關標籤/搜索