COMING SOON 🚀

postgres 설치하기

· 13년 전 · 1872
 테스트: 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,465
13년 전 조회 1,399
13년 전 조회 1,681
13년 전 조회 1,729
13년 전 조회 1,425
13년 전 조회 1,690
13년 전 조회 2,238
13년 전 조회 1,503
13년 전 조회 2,284
13년 전 조회 1,371
13년 전 조회 1,556
13년 전 조회 1,393
13년 전 조회 1,579
13년 전 조회 1,419
13년 전 조회 1,766
13년 전 조회 1,810
13년 전 조회 1,713
13년 전 조회 3,538
13년 전 조회 1,351
13년 전 조회 1,603
13년 전 조회 1,456
13년 전 조회 1,955
13년 전 조회 1,695
13년 전 조회 2,377
13년 전 조회 2,710
13년 전 조회 2,051
13년 전 조회 3,947
13년 전 조회 2,192
13년 전 조회 1,545
13년 전 조회 2,997
13년 전 조회 3,425
13년 전 조회 1,258
13년 전 조회 1,407
13년 전 조회 1,308
13년 전 조회 1,416
13년 전 조회 1,318
13년 전 조회 1,571
13년 전 조회 2,810
13년 전 조회 1,275
13년 전 조회 1,250
13년 전 조회 1,400
13년 전 조회 1,356
13년 전 조회 1,278
13년 전 조회 1,569
13년 전 조회 1,534
13년 전 조회 1,265
13년 전 조회 1,289
13년 전 조회 2,311
13년 전 조회 1,508
13년 전 조회 1,873
13년 전 조회 1,227
13년 전 조회 1,834
13년 전 조회 1,387
13년 전 조회 1,230
13년 전 조회 1,517
13년 전 조회 3,071
13년 전 조회 1,683
13년 전 조회 2,397
13년 전 조회 1,268
13년 전 조회 1,300
13년 전 조회 1,559
13년 전 조회 1,283
13년 전 조회 2,187
13년 전 조회 1,200
13년 전 조회 1,242
13년 전 조회 1,573
13년 전 조회 1,367
13년 전 조회 1,285
13년 전 조회 1,409
13년 전 조회 1,427
13년 전 조회 1,290
13년 전 조회 3,112
13년 전 조회 2,233
13년 전 조회 2,106
13년 전 조회 1,309
13년 전 조회 1,256
13년 전 조회 1,358
13년 전 조회 1,569
13년 전 조회 1,368
13년 전 조회 1,922
13년 전 조회 2,018
13년 전 조회 1,601
13년 전 조회 1,734
13년 전 조회 2,787
13년 전 조회 3,110
13년 전 조회 6,395
13년 전 조회 1,286
13년 전 조회 1,736
13년 전 조회 1,291
13년 전 조회 1,583
13년 전 조회 2,195
13년 전 조회 1,782
13년 전 조회 1,407
13년 전 조회 1,502
13년 전 조회 1,341
13년 전 조회 1,494
13년 전 조회 2,443
13년 전 조회 2,723
13년 전 조회 1,609
13년 전 조회 1,853