postgres 설치하기

· 13년 전 · 2091
 테스트: 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,684
13년 전 조회 1,642
13년 전 조회 1,930
13년 전 조회 1,998
13년 전 조회 1,678
13년 전 조회 1,942
13년 전 조회 2,495
13년 전 조회 1,749
13년 전 조회 2,526
13년 전 조회 1,606
13년 전 조회 1,809
13년 전 조회 1,618
13년 전 조회 1,841
13년 전 조회 1,680
13년 전 조회 2,005
13년 전 조회 2,056
13년 전 조회 1,956
13년 전 조회 3,776
13년 전 조회 1,576
13년 전 조회 1,819
13년 전 조회 1,692
13년 전 조회 2,184
13년 전 조회 1,929
13년 전 조회 2,586
13년 전 조회 2,924
13년 전 조회 2,251
13년 전 조회 4,171
13년 전 조회 2,429
13년 전 조회 1,769
13년 전 조회 3,240
13년 전 조회 3,641
13년 전 조회 1,495
13년 전 조회 1,621
13년 전 조회 1,548
13년 전 조회 1,648
13년 전 조회 1,548
13년 전 조회 1,817
13년 전 조회 3,047
13년 전 조회 1,489
13년 전 조회 1,482
13년 전 조회 1,627
13년 전 조회 1,607
13년 전 조회 1,512
13년 전 조회 1,803
13년 전 조회 1,738
13년 전 조회 1,493
13년 전 조회 1,518
13년 전 조회 2,535
13년 전 조회 1,690
13년 전 조회 2,092
13년 전 조회 1,429
13년 전 조회 2,043
13년 전 조회 1,596
13년 전 조회 1,461
13년 전 조회 1,707
13년 전 조회 3,274
13년 전 조회 1,876
13년 전 조회 2,563
13년 전 조회 1,472
13년 전 조회 1,508
13년 전 조회 1,757
13년 전 조회 1,478
13년 전 조회 2,400
13년 전 조회 1,402
13년 전 조회 1,459
13년 전 조회 1,755
13년 전 조회 1,565
13년 전 조회 1,460
13년 전 조회 1,584
13년 전 조회 1,606
13년 전 조회 1,485
13년 전 조회 3,296
13년 전 조회 2,432
13년 전 조회 2,290
13년 전 조회 1,499
13년 전 조회 1,458
13년 전 조회 1,561
13년 전 조회 1,764
13년 전 조회 1,556
13년 전 조회 2,121
13년 전 조회 2,206
13년 전 조회 1,794
13년 전 조회 1,942
13년 전 조회 2,993
13년 전 조회 3,311
13년 전 조회 6,596
13년 전 조회 1,495
13년 전 조회 1,945
13년 전 조회 1,495
13년 전 조회 1,776
13년 전 조회 2,395
13년 전 조회 1,988
13년 전 조회 1,638
13년 전 조회 1,721
13년 전 조회 1,551
13년 전 조회 1,703
13년 전 조회 2,665
13년 전 조회 2,963
13년 전 조회 1,832
13년 전 조회 2,074