標籤: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