postgres 설치하기

· 13년 전 · 2007
 테스트: 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,618
13년 전 조회 1,527
13년 전 조회 1,841
13년 전 조회 1,896
13년 전 조회 1,581
13년 전 조회 1,856
13년 전 조회 2,402
13년 전 조회 1,652
13년 전 조회 2,429
13년 전 조회 1,527
13년 전 조회 1,710
13년 전 조회 1,539
13년 전 조회 1,742
13년 전 조회 1,584
13년 전 조회 1,911
13년 전 조회 1,963
13년 전 조회 1,857
13년 전 조회 3,696
13년 전 조회 1,490
13년 전 조회 1,731
13년 전 조회 1,605
13년 전 조회 2,088
13년 전 조회 1,848
13년 전 조회 2,487
13년 전 조회 2,848
13년 전 조회 2,170
13년 전 조회 4,088
13년 전 조회 2,341
13년 전 조회 1,676
13년 전 조회 3,135
13년 전 조회 3,542
13년 전 조회 1,402
13년 전 조회 1,532
13년 전 조회 1,470
13년 전 조회 1,567
13년 전 조회 1,458
13년 전 조회 1,730
13년 전 조회 2,953
13년 전 조회 1,417
13년 전 조회 1,398
13년 전 조회 1,535
13년 전 조회 1,517
13년 전 조회 1,422
13년 전 조회 1,722
13년 전 조회 1,667
13년 전 조회 1,407
13년 전 조회 1,439
13년 전 조회 2,437
13년 전 조회 1,620
13년 전 조회 2,008
13년 전 조회 1,345
13년 전 조회 1,968
13년 전 조회 1,512
13년 전 조회 1,377
13년 전 조회 1,638
13년 전 조회 3,174
13년 전 조회 1,792
13년 전 조회 2,490
13년 전 조회 1,393
13년 전 조회 1,422
13년 전 조회 1,686
13년 전 조회 1,397
13년 전 조회 2,308
13년 전 조회 1,322
13년 전 조회 1,382
13년 전 조회 1,692
13년 전 조회 1,478
13년 전 조회 1,386
13년 전 조회 1,513
13년 전 조회 1,534
13년 전 조회 1,414
13년 전 조회 3,227
13년 전 조회 2,343
13년 전 조회 2,221
13년 전 조회 1,424
13년 전 조회 1,394
13년 전 조회 1,482
13년 전 조회 1,678
13년 전 조회 1,480
13년 전 조회 2,041
13년 전 조회 2,123
13년 전 조회 1,716
13년 전 조회 1,858
13년 전 조회 2,914
13년 전 조회 3,216
13년 전 조회 6,507
13년 전 조회 1,408
13년 전 조회 1,873
13년 전 조회 1,418
13년 전 조회 1,702
13년 전 조회 2,310
13년 전 조회 1,905
13년 전 조회 1,542
13년 전 조회 1,638
13년 전 조회 1,462
13년 전 조회 1,623
13년 전 조회 2,577
13년 전 조회 2,864
13년 전 조회 1,742
13년 전 조회 1,978