postgres 설치하기

· 13년 전 · 1665
 테스트: 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,216
13년 전 조회 1,164
13년 전 조회 1,481
13년 전 조회 1,495
13년 전 조회 1,209
13년 전 조회 1,452
13년 전 조회 2,025
13년 전 조회 1,265
13년 전 조회 2,068
13년 전 조회 1,141
13년 전 조회 1,362
13년 전 조회 1,158
13년 전 조회 1,381
13년 전 조회 1,222
13년 전 조회 1,549
13년 전 조회 1,618
13년 전 조회 1,474
13년 전 조회 3,326
13년 전 조회 1,118
13년 전 조회 1,355
13년 전 조회 1,240
13년 전 조회 1,763
13년 전 조회 1,475
13년 전 조회 2,173
13년 전 조회 2,509
13년 전 조회 1,840
13년 전 조회 3,769
13년 전 조회 1,986
13년 전 조회 1,343
13년 전 조회 2,801
13년 전 조회 3,240
13년 전 조회 1,054
13년 전 조회 1,190
13년 전 조회 1,107
13년 전 조회 1,184
13년 전 조회 1,115
13년 전 조회 1,330
13년 전 조회 2,567
13년 전 조회 1,049
13년 전 조회 1,051
13년 전 조회 1,195
13년 전 조회 1,136
13년 전 조회 1,042
13년 전 조회 1,369
13년 전 조회 1,314
13년 전 조회 1,072
13년 전 조회 1,058
13년 전 조회 2,104
13년 전 조회 1,307
13년 전 조회 1,666
13년 전 조회 994
13년 전 조회 1,642
13년 전 조회 1,156
13년 전 조회 1,043
13년 전 조회 1,331
13년 전 조회 2,858
13년 전 조회 1,466
13년 전 조회 2,167
13년 전 조회 1,028
13년 전 조회 1,103
13년 전 조회 1,336
13년 전 조회 1,079
13년 전 조회 1,997
13년 전 조회 987
13년 전 조회 1,021
13년 전 조회 1,385
13년 전 조회 1,130
13년 전 조회 1,040
13년 전 조회 1,168
13년 전 조회 1,209
13년 전 조회 1,054
13년 전 조회 2,894
13년 전 조회 2,009
13년 전 조회 1,860
13년 전 조회 1,070
13년 전 조회 1,045
13년 전 조회 1,132
13년 전 조회 1,336
13년 전 조회 1,126
13년 전 조회 1,713
13년 전 조회 1,783
13년 전 조회 1,363
13년 전 조회 1,527
13년 전 조회 2,570
13년 전 조회 2,900
13년 전 조회 6,165
13년 전 조회 1,048
13년 전 조회 1,526
13년 전 조회 1,053
13년 전 조회 1,323
13년 전 조회 1,960
13년 전 조회 1,544
13년 전 조회 1,183
13년 전 조회 1,263
13년 전 조회 1,112
13년 전 조회 1,278
13년 전 조회 2,214
13년 전 조회 2,500
13년 전 조회 1,380
13년 전 조회 1,646