Postgres-XC單機安裝

std1984發表於2012-12-04
單機環境: CentOS 6 64bit,  pgxc-v1.0.1.tar.gz
 
解壓 pgxc-v1.0.1.tar.gz,進入pgxc,
 ./configure --without-readline --without-zlib    ( 注:由於伺服器未安裝readline和zlib包,故省去)
gmake
gmake install
 
安裝協調結點,資料結點和GTM,
cd /usr/local/pgsql/bin/
./initdb -D /usr/local/pgsql/data_coord1 --nodename coord1
./initdb -D /usr/local/pgsql/data_datanode1 --nodename datanode1
./initdb -D /usr/local/pgsql/data_datanode2 --nodename datanode2
./initgtm -D /usr/local/pgsql/data_gtm -Z gtm
 
啟動服務:
./gtm -D /usr/local/pgsql/data_gtm &
./postgres -X -p 15432 -D /usr/local/pgsql/data_datanode1 &
./postgres -X -p 15433 -D /usr/local/pgsql/data_datanode2 &
./postgres -C -D /usr/local/pgsql/data_coord1 &
 
進入postgres-xc,建立後設資料
./psql
create node datanode1 with(type='datanode', port=15432);
create node datanode2 with(type='datanode', port=15433);
select pgxc_pool_reload();
./createdb test
 
建立測試資料庫
./psql test
create table user_info_hash(id int primary key,firstname text,lastname text,info text) distribute by hash(id) to node datanode1,datanode2;
insert into user_info_hash select generate_series(1,10000),'zhou','digoal','DBA';

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16582684/viewspace-750515/,如需轉載,請註明出處,否則將追究法律責任。

相關文章