一、基本使用

第一件事是使用\password命令,为postgres用户设置一个密码。
\password postgres
第二件事是创建数据库用户dbuser(刚才创建的是Linux系统用户),并设置密码。
CREATE USER dbuser WITH PASSWORD ‘password’;
第三件事是创建用户数据库,这里为exampledb,并指定所有者为dbuser。
CREATE DATABASE exampledb OWNER dbuser;
第四件事是将exampledb数据库的所有权限都赋予dbuser,否则dbuser只能登录控制台,没有任何数据库操作权限。
GRANT ALL PRIVILEGES ON DATABASE exampledb to dbuser;
最后,使用\q命令退出控制台(也可以直接按ctrl+D)。
\q

二、用户管理

create user data with password ‘123456’; CREATE DATABASE miu_origin OWNER data;
GRANT ALL PRIVILEGES ON DATABASE miu_origin to data;

copy必须使用能够超级用户使用;
copy .. to file ,copy file to ..中的文件都是数据库服务器所在的服务器上的文件。
\copy 一般用户即可执行
\copy 保存或者读取的文件是在客户端所在的服务器
比如当使用192.168.17.53连上192.168.17.52的数据库,使用copy tb1 to ‘/home/postgres/aa.txt’,该文件是存放在192.168.17.52上;
当使用\copys时候就会把文件存放到客户端所在的服务器上,即使用\copys tb1 to ‘/home/postgres/aa.sql’,该文件是存放在192.168.17.53上;

\copy testjson to ‘/data/jj.txt’ with (DELIMITER ‘/\t’);
\copy testjson from ‘/data/jj.txt’ with (DELIMITER ‘^A’);
\x
select * from testjson; 纵向显示数据结果。

三、重新加载数据库配置的方法有三种:

  1. 用超级用户运行
    postgres=# SELECT pg_reload_conf();

  2. 用UNIX的kill手动发起HUP信号
    $kill -HUP PID

  3. 使用pg_ctl命令触发SIGHUP信号
    $pg_ctl reload

四、只安装客户端:

如果你只想装客户应用和接口,那么你可以用下面的命令:
make -C src/bin install
make -C src/include install
make -C src/interfaces install
make -C doc install
postgresql安装笔记

./configure –prefix=/usr/local/pgsql –with-python
gmake
gmake install

su pg -c ’ls ‘;用一个用户执行命令

五、安装指南

  1. Configure YUM repository
1
2
3
4
vim /etc/yum.repos.d/CentOS-Base.repo

[base] and [updates] sections添加:
exclude=postgresql*
  1. Install PGDG RPM file
1
2
3
4
go http://yum.postgresql.org and find your correct RPM.
For example, to install PostgreSQL 9.3 on CentOS 6 64-bit:
打开 http://yum.postgresql.org/repopackages.php#pg93 后找到CentOS 6-x86_64
然后 yum localinstall http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpm
  1. Install PostgreSQL
1
2
3
4
5
6
7
list available packages:
yum list postgres*

For example, to install a basic PostgreSQL 9.3 server:
yum install postgresql93-server

Other packages can be installed according to your needs.
  1. 配置
1
2
After installing the packages, a database needs to be initialized and configured.
PostgreSQL data directory(/var/lib/pgsql/9.3/data) contains all of the data files for the database.
  1. Initialize
1
2
3
The first command (only needed once) is to initialize the database:
service postgresql-9.3 initdb
正在初始化数据库:                                         [确定]
  1. Startup
1
2
3
开机启动:
chkconfig postgresql-9.3 on
service postgresql-9.3 start

艺搜参考 https://wiki.postgresql.org/wiki/YUM_Installation

六、postgresql 集群建设方案

  1. http://www.cnblogs.com/taosim/articles/4378818.html postgresql方案
  2. http://blog.csdn.net/lichangzhen2008/article/details/44708227 数据库中间件TDDL、Amoeba、Cobar、MyCAT架构比较
  3. postgresql stado 方案
  4. Greenplum 数据库方案https://www.cnblogs.com/inrgihc/p/13466729.html

七、测试集群

tw07a311 10.65.14.11 pg/pg99 data/data99

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
select * 
  from TBLS 
 where TBL_NAME='f_h_vodxserver_preprocess';

select left(PART_NAME,14),sum(1) num 
  from PARTITIONS 
 where TBL_ID='931186' 
 group by left(PART_NAME,14); 

select * 
  from PARTITIONS 
 where TBL_ID='931376'
   and PART_NAME like 'pdate=20170415%'
 order by PART_NAME;
select * 
  from pg_catalog.pg_user;

pg库不能跨库访问,同一个库中可以跨模式访问。
不同的模式下面可以存在相同的表,默认的模式是public.