postgresql install centos6.x

來源:互聯網
上載者:User

標籤:style   http   color   os   資料   io   for   art   

系統:centos6.4 安裝postgresql9.3

(防火牆需要開啟5432連接埠)

添加yum源
yum install -y http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-redhat93-9.3-1.noarch.rpm
安裝postgresql
yum install -y postgresql93-server postgresql93-contrib

更改預設安裝目錄為/data/pgsql  (可選,預設為/var/lib/postgres)

vim /etc/init.d/postgresql-9.3 

更改

PGDATA=/data/pgsql/9.3/data
PGLOG=/data/pgsql/9.3/pgstartup.log
PGUPLOG=/data/pgsql/$PGMAJORVERSION/PGUPGRADE.log
初始化資料庫
service postgresql-9.3 initdb

        

chown postgres.postgres /data/pgsql

vim /etc/passwd     (更改postgres使用者家目錄)

更改

postgres:x:26:26:PostgreSQLServer:/data/pgsql:/bin/bash


添加可訪問網段

#vim /data/pgsql/9.3/data/pg_hba.conf      (允許以下網段網段ip登入 )

host all all 192.168.1.0/24 md5host all all 192.168.2.0/24 md5
更改監聽地址

#vim /data/pgsql/9.3/data/postgresql.conf       (監聽更改為*)

listen_addresses = ‘*‘

#service postgresql-9.3 start    (啟動資料庫)

#su - postgres    

$createuser  --help   (查看建立使用者協助)$createuser -s root  建立超級使用者root    (可選)-bash-4.1$ psqlpsql (9.3.2)Type "help" for help.postgres=# \du                             List of roles Role name | Attributes | Member of-----------+------------------------------------------------+----------- postgres | Superuser, Create role, Create DB, Replication | {} root | Superuser, Create role, Create DB | {}

建立一個mydb庫 並賦予普通使用者test 對mydb 擁有所有許可權

$createdb mydb       (建立名字為mydb的資料庫)$createuser test    (建立普通使用者test)$psqlpostgres=# ALTER USER test with password ‘test‘;  (為test使用者更改密碼為test)postgres=#grante all on database mydb TO test;postgres=# \q


參考:

 http://jianlee.ylinux.org/Computer/Server/postgresql%E6%95%B0%E6%8D%AE%E5%BA%93%E5%85%A5%E9%97%A8.html


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.