postgres 설치하기

· 13년 전 · 2077
 테스트: 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,671
13년 전 조회 1,629
13년 전 조회 1,918
13년 전 조회 1,979
13년 전 조회 1,667
13년 전 조회 1,931
13년 전 조회 2,478
13년 전 조회 1,731
13년 전 조회 2,514
13년 전 조회 1,599
13년 전 조회 1,791
13년 전 조회 1,601
13년 전 조회 1,829
13년 전 조회 1,660
13년 전 조회 1,987
13년 전 조회 2,043
13년 전 조회 1,938
13년 전 조회 3,759
13년 전 조회 1,563
13년 전 조회 1,802
13년 전 조회 1,670
13년 전 조회 2,166
13년 전 조회 1,913
13년 전 조회 2,566
13년 전 조회 2,914
13년 전 조회 2,234
13년 전 조회 4,153
13년 전 조회 2,413
13년 전 조회 1,751
13년 전 조회 3,225
13년 전 조회 3,625
13년 전 조회 1,478
13년 전 조회 1,612
13년 전 조회 1,534
13년 전 조회 1,631
13년 전 조회 1,527
13년 전 조회 1,800
13년 전 조회 3,027
13년 전 조회 1,473
13년 전 조회 1,468
13년 전 조회 1,608
13년 전 조회 1,587
13년 전 조회 1,496
13년 전 조회 1,785
13년 전 조회 1,725
13년 전 조회 1,475
13년 전 조회 1,503
13년 전 조회 2,521
13년 전 조회 1,681
13년 전 조회 2,078
13년 전 조회 1,412
13년 전 조회 2,030
13년 전 조회 1,575
13년 전 조회 1,448
13년 전 조회 1,697
13년 전 조회 3,256
13년 전 조회 1,861
13년 전 조회 2,547
13년 전 조회 1,459
13년 전 조회 1,497
13년 전 조회 1,743
13년 전 조회 1,462
13년 전 조회 2,380
13년 전 조회 1,387
13년 전 조회 1,444
13년 전 조회 1,743
13년 전 조회 1,550
13년 전 조회 1,448
13년 전 조회 1,571
13년 전 조회 1,596
13년 전 조회 1,473
13년 전 조회 3,280
13년 전 조회 2,413
13년 전 조회 2,274
13년 전 조회 1,484
13년 전 조회 1,447
13년 전 조회 1,548
13년 전 조회 1,751
13년 전 조회 1,544
13년 전 조회 2,106
13년 전 조회 2,187
13년 전 조회 1,779
13년 전 조회 1,926
13년 전 조회 2,975
13년 전 조회 3,292
13년 전 조회 6,575
13년 전 조회 1,478
13년 전 조회 1,932
13년 전 조회 1,472
13년 전 조회 1,760
13년 전 조회 2,371
13년 전 조회 1,971
13년 전 조회 1,610
13년 전 조회 1,699
13년 전 조회 1,529
13년 전 조회 1,684
13년 전 조회 2,649
13년 전 조회 2,944
13년 전 조회 1,816
13년 전 조회 2,056