安裝PostgreSQL資料庫(Linux篇)
0.編譯環境
- Linux: CentOS 5.5
- gcc: 4.1.2
1. 安裝PostgreSQL
1) 解壓postgresql-9.1.7.tar.bz2
#tar jxvf postgresql-9.1.7.tar.bz2
2) 進入解壓後的postgresql-9.1.7目錄
#cd postgresql-9.1.7
3) 編譯postgresql原始碼
#./configure --prefix=/opt/pgsql-9.1.7
#make
#make install
至此,完成postgresql的安裝。進入/opt/pgsql-9.1.7目錄可以看到安裝後的postgresql的檔案。
#ls /opt/pgsql-9.1.7
2.建立postgresql資料庫
1) 建立postgres使用者
#useradd postgres
修改postgres密碼
#passwd postgres
2) 設定postgres使用者的環境變數
切換到postgres使用者
#su - postgres
進入postgres的主目錄
#cd ~
編輯~/.bash_profile檔案
#vi ~/.bash_profile
設定以下的環境變數
export PGHOME=/opt/pgsql-9.1.7
export PGDATA=~/data
儲存,退出vi。執行以下命令,使環境變數生效
#source ~/.bash_profile
3) 初始化postgres資料庫
#initdb
至此,完成postgres資料庫的初始化。
4) 啟動postgres資料庫例項
#pg_ctl start
可以看到postgresql資料庫例項已經啟動,通過下面的命令可以檢視系統中執行的postgres程式
#ps -ef | grep postgres
5) 連線postgresql資料庫
#psql -h 127.0.0.1 -d postgres -U postgres
6) 停止postgresql資料庫例項
#pg_ctl stop
#ps -ef | grep postgres
可以看到已經沒有postgres程式
3. 設定PostgreSQL開機自啟動
PostgreSQL的開機自啟動指令碼位於PostgreSQL原始碼目錄的contrib/start-scripts路徑下
linux檔案即為linux系統上的啟動指令碼
1)修改linux檔案屬性,新增X屬性
#chmod a+x linux
2) 複製linux檔案到/etc/init.d目錄下,更名為postgresql
#cp linux /etc/init.d/postgresql
3)修改/etc/init.d/postgresql檔案的兩個變數
prefix設定為postgresql的安裝路徑:/opt/pgsql-9.1.2
PGDATA設定為postgresql的資料目錄路徑:
4) 執行service postgresql start,就可以啟動PostgreSQL服務
#service postgresql start
5)設定postgresql服務開機自啟動
#chkconfig --add postgresql
執行上面的命令,就可以實現postgresql服務的開機自啟動。
Please Note this is coming from http://www.cnblogs.com/marsprj/archive/2013/02/08/2893519.html
相關文章
- Alibaba Cloud Linux 安裝 PostgreSQL 資料庫CloudLinuxSQL資料庫
- 1. PostgreSQL 資料庫安裝SQL資料庫
- PostgreSQL 資料庫學習 - 0. 資料庫安裝SQL資料庫
- PostgreSQL資料庫管理系列之一——安裝SQL資料庫
- linux下Postgresql-9.2安裝及資料庫的建立過程LinuxSQL資料庫
- postgresql資料庫安裝以及修改資料檔案路徑SQL資料庫
- linux安裝Cassandra資料庫Linux資料庫
- 講解Linux資料庫安裝Linux資料庫
- Linux下安裝Mysql資料庫LinuxMySql資料庫
- Linux安裝MariaDB資料庫-1Linux資料庫
- linux下oracle資料庫的安裝LinuxOracle資料庫
- Windows版PostgreSQL資料庫下載及安裝教程(關係型資料庫管理系統)WindowsSQL資料庫
- 在Linux上安裝postgresqlLinuxSQL
- 在 Linux 上安裝 PostgreSQLLinuxSQL
- Postgresql Linux版本安裝——RPM包安裝SQLLinux
- postgreSQL學習(一):在Linux下安裝postgreSQLSQLLinux
- MongoDB資料庫安裝MongoDB資料庫
- Redis 資料庫安裝Redis資料庫
- oricle資料庫安裝資料庫
- GreenPlum資料庫安裝資料庫
- oracle資料庫安裝Oracle資料庫
- 安裝HBase資料庫資料庫
- Mongo資料庫安裝Go資料庫
- 【PG安裝】postgresql10 for linux 原始碼安裝SQLLinux原始碼
- linux下如何完全解除安裝mysql資料庫LinuxMySql資料庫
- Linux 非圖形介面安裝oracle資料庫LinuxOracle資料庫
- Linux 安裝 Oracle資料庫11G 配置LinuxOracle資料庫
- 在Linux環境下安裝Progres資料庫Linux資料庫
- Linux 下安裝oracle 資料庫的準備LinuxOracle資料庫
- linux安裝postgresql三種方式LinuxSQL
- Linux下PostgreSQL原始碼安裝LinuxSQL原始碼
- SQlServer高可用性之資料庫映象篇(2)--安裝SQLServer資料庫
- 想安裝PostgreSQL,看這篇也就夠了SQL
- Linux環境下達夢資料庫安裝及解除安裝手冊Linux資料庫
- protobuf安裝-Linux篇Linux
- Linux系統徹底解除安裝MySQL資料庫LinuxMySql資料庫
- 在Linux 6.3安裝mysql5.7.16資料庫LinuxMySql資料庫
- linux系統和oracle資料庫安裝簡介LinuxOracle資料庫