PostgreSQL 10 1 linux安裝配置

2021-08-19 16:53:40 字數 1300 閱讀 7518

解除安裝舊版本

rpm -qa | grep postgres    檢查postgresql 是否已經安裝

rpm -qal | grep postgres   檢查postgresql 安裝位置

rpm -e 解除安裝

解壓tar -zxvf postgresql-10.1.tar.gz

編譯安裝

./configure --prefix=/opt/pgsql-10.1

make

make install

檢視安裝目錄

ls /opt/pgsql-10.1

建立使用者並且切換使用者postgres

useradd postgres

passwd postgres

su postgres

設定環境變數

vim ~/.bash_profile

新增以下變數

export pghome=/opt/pgsql-10.1

export pgdata=~/data

儲存退出,生效環境變數

source ~/.bash_profile

初始化資料庫

initdb

啟動資料庫例項

pg_ctl start

檢視執行的postgres程序

ps -ef | grep postgres

連線postgresql資料庫

psql -h 127.0.0.1 -d postgres -u postgres

停止postgresql資料庫例項

pg_ctl stop

檢視執行的postgres程序

ps -ef |  grep postgres

給linux檔案新增x(執行)屬性

cd /work/postgresql-10.1/contrib/start-scripts/

chmod a+x linux

複製linux檔案到/etc/init.d目錄下,更名為postgresql

cp linux /etc/init.d/postgresql

修改/etc/init.d/postgresql檔案的兩個變數

vim /etc/init.d/postgresql

prefix=/opt/pgsql-10.1

pgdata=/work/postgresql-10.1/data/

啟動postgresql服務

service postgresql start

設定postgresql服務開機自啟動

chkconfig --add postgresql

ubuntu安裝配置postgreSQL

sudo apt get install y postgresql 9.1 postgresql client 9.1 postgresql contrib 9.1 postgresql server dev 9.1 使用新立得軟體包管理器搜尋postgresql,並安裝,我安裝的是9.3 sudo...

ubuntu下postgreSQL安裝配置

一 安裝並配置,並設定遠端登陸的使用者名稱和密碼 1 安裝postgresql sudo apt get update sudo apt get install postgresql 9.4 2 修改postgres資料庫使用者的密碼為123456 開啟客戶端工具 psql sudo u postg...

yum安裝配置postgresql

os版本 centos linux release 7.7.1908 檢視 選擇合適的yum源頭,這裡我們選擇安裝postgresql10。sudo yum install y sudo yum install y postgresql10 serversudo usr pgsql 10 bin p...