postgres 설치하기

· 13년 전 · 2059
 테스트: 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,660
13년 전 조회 1,606
13년 전 조회 1,903
13년 전 조회 1,960
13년 전 조회 1,647
13년 전 조회 1,912
13년 전 조회 2,458
13년 전 조회 1,714
13년 전 조회 2,499
13년 전 조회 1,584
13년 전 조회 1,767
13년 전 조회 1,584
13년 전 조회 1,809
13년 전 조회 1,636
13년 전 조회 1,970
13년 전 조회 2,022
13년 전 조회 1,922
13년 전 조회 3,743
13년 전 조회 1,540
13년 전 조회 1,784
13년 전 조회 1,653
13년 전 조회 2,147
13년 전 조회 1,888
13년 전 조회 2,541
13년 전 조회 2,899
13년 전 조회 2,216
13년 전 조회 4,129
13년 전 조회 2,391
13년 전 조회 1,729
13년 전 조회 3,195
13년 전 조회 3,601
13년 전 조회 1,455
13년 전 조회 1,590
13년 전 조회 1,515
13년 전 조회 1,612
13년 전 조회 1,513
13년 전 조회 1,781
13년 전 조회 3,005
13년 전 조회 1,459
13년 전 조회 1,451
13년 전 조회 1,591
13년 전 조회 1,570
13년 전 조회 1,480
13년 전 조회 1,769
13년 전 조회 1,714
13년 전 조회 1,451
13년 전 조회 1,490
13년 전 조회 2,500
13년 전 조회 1,667
13년 전 조회 2,060
13년 전 조회 1,394
13년 전 조회 2,009
13년 전 조회 1,553
13년 전 조회 1,433
13년 전 조회 1,681
13년 전 조회 3,242
13년 전 조회 1,844
13년 전 조회 2,530
13년 전 조회 1,444
13년 전 조회 1,477
13년 전 조회 1,727
13년 전 조회 1,446
13년 전 조회 2,353
13년 전 조회 1,369
13년 전 조회 1,415
13년 전 조회 1,724
13년 전 조회 1,532
13년 전 조회 1,437
13년 전 조회 1,554
13년 전 조회 1,583
13년 전 조회 1,456
13년 전 조회 3,267
13년 전 조회 2,404
13년 전 조회 2,264
13년 전 조회 1,473
13년 전 조회 1,437
13년 전 조회 1,533
13년 전 조회 1,734
13년 전 조회 1,529
13년 전 조회 2,094
13년 전 조회 2,171
13년 전 조회 1,761
13년 전 조회 1,911
13년 전 조회 2,956
13년 전 조회 3,275
13년 전 조회 6,553
13년 전 조회 1,459
13년 전 조회 1,916
13년 전 조회 1,457
13년 전 조회 1,740
13년 전 조회 2,356
13년 전 조회 1,946
13년 전 조회 1,590
13년 전 조회 1,682
13년 전 조회 1,507
13년 전 조회 1,666
13년 전 조회 2,625
13년 전 조회 2,929
13년 전 조회 1,800
13년 전 조회 2,036