postgres 설치하기

· 13년 전 · 1945
 테스트: centos5.7
 
1. directory  생성
mkdir -p /usr/local/pgsql
 
2. user 생성
groupadd postgres
useradd -gpostgres -d /usr/local/pgsql postgres
 
3. postgres 다운로드
tar xvzfp postgresql-9.1.1.tar.gz
chown -R postgres.postgres postgresql-9.1.1
 
4. postgres 설치
 
cd postgresql-9.1.1
 
yum -y install bison
flex 2.5.31 이상 필요함.
tar xvzfp flex-2.5.35.tar.gz
cd flex-2.5.35
./configure;make ;make install
ln -sf /usr/local/bin/flex /usr/bin/flex
yum -y install readline-devel
yum -y install zlib-devel
 
./configure --prefix=/usr/local/pgsql --enable-nls=EUC_KR
make
make install
cd /usr/local/
 
chown -R postgres.postgres pgsql
su -l postgres -c "/usr/local/pgsql/bin/initdb -D /usr/local/pgsql/data"
 
* postgres 시작
/usr/local/pgsql/bin/postgres -D /usr/local/pgsql/data    혹은
/usr/local/pgsql/bin/pg_ctl -D /usr/local/pgsql/data -l logfile start
 
5. 라이브러리 추가
vi /etc/ld.so.conf
/usr/local/pgsql/lib
ldconfig
 
6. postgres 환경변수 설정
su - postgres
vi .bash_profile
----------------------------
PATH=$PATH:/usr/local/pgsql/bin
MANPATH=$MANPATH:/usr/local/pgsql/man
PGLIB=/usr/local/pgsql/lib
PGDATA=/usr/local/pgsql/data
export PATH MANPATH PGLIB PGDATA
----------------------------
source .bash_profile
 
7. postmaster 데몬 띄우기
su - postgres
 /usr/local/pgsql/bin/pg_ctl -D /usr/local/pgsql/data -l logfile start
 
 
 
========================
dump data import하기
psql -e < db.out
 
data export 하기
pg_dumpall -z > db.out
 
db 권한 주기
su - postgres
createuser byoungguk  ---> 권한 주고 싶은 계정
 
db 생성 및 테이블 생성
su - byoungguk
createdb test
psql test
byoungguk=> create table counter ( count int );
byoungguk=> insert into counter values ( 0 );
byoungguk=> \q
 
 
yum -y install php-pgsql
<?
$connect=pg_connect("dbname=test user=byoungguk");
$result=pg_exec($connect,"select * from counter"); 
$count_num = pg_result($result,0,"count");
if (!$count_num) {
    $count_num++;
    pg_exec($connect,"update counter set count=$count_num");
}
echo $count_num;
?>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 1,567
13년 전 조회 1,474
13년 전 조회 1,771
13년 전 조회 1,829
13년 전 조회 1,510
13년 전 조회 1,787
13년 전 조회 2,347
13년 전 조회 1,595
13년 전 조회 2,364
13년 전 조회 1,461
13년 전 조회 1,648
13년 전 조회 1,478
13년 전 조회 1,667
13년 전 조회 1,528
13년 전 조회 1,854
13년 전 조회 1,894
13년 전 조회 1,809
13년 전 조회 3,634
13년 전 조회 1,454
13년 전 조회 1,679
13년 전 조회 1,545
13년 전 조회 2,027
13년 전 조회 1,785
13년 전 조회 2,435
13년 전 조회 2,790
13년 전 조회 2,118
13년 전 조회 4,026
13년 전 조회 2,278
13년 전 조회 1,622
13년 전 조회 3,076
13년 전 조회 3,492
13년 전 조회 1,347
13년 전 조회 1,474
13년 전 조회 1,406
13년 전 조회 1,506
13년 전 조회 1,403
13년 전 조회 1,670
13년 전 조회 2,899
13년 전 조회 1,362
13년 전 조회 1,341
13년 전 조회 1,464
13년 전 조회 1,462
13년 전 조회 1,368
13년 전 조회 1,660
13년 전 조회 1,610
13년 전 조회 1,352
13년 전 조회 1,382
13년 전 조회 2,380
13년 전 조회 1,573
13년 전 조회 1,946
13년 전 조회 1,290
13년 전 조회 1,907
13년 전 조회 1,468
13년 전 조회 1,330
13년 전 조회 1,585
13년 전 조회 3,134
13년 전 조회 1,746
13년 전 조회 2,452
13년 전 조회 1,351
13년 전 조회 1,370
13년 전 조회 1,638
13년 전 조회 1,344
13년 전 조회 2,259
13년 전 조회 1,280
13년 전 조회 1,330
13년 전 조회 1,647
13년 전 조회 1,438
13년 전 조회 1,346
13년 전 조회 1,476
13년 전 조회 1,489
13년 전 조회 1,367
13년 전 조회 3,180
13년 전 조회 2,305
13년 전 조회 2,178
13년 전 조회 1,377
13년 전 조회 1,346
13년 전 조회 1,430
13년 전 조회 1,636
13년 전 조회 1,435
13년 전 조회 1,998
13년 전 조회 2,078
13년 전 조회 1,675
13년 전 조회 1,812
13년 전 조회 2,856
13년 전 조회 3,172
13년 전 조회 6,466
13년 전 조회 1,365
13년 전 조회 1,826
13년 전 조회 1,376
13년 전 조회 1,661
13년 전 조회 2,262
13년 전 조회 1,866
13년 전 조회 1,494
13년 전 조회 1,595
13년 전 조회 1,413
13년 전 조회 1,576
13년 전 조회 2,526
13년 전 조회 2,807
13년 전 조회 1,689
13년 전 조회 1,930