postgres 설치하기

· 13년 전 · 1568
 테스트: 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,124
13년 전 조회 1,066
13년 전 조회 1,392
13년 전 조회 1,400
13년 전 조회 1,109
13년 전 조회 1,356
13년 전 조회 1,933
13년 전 조회 1,150
13년 전 조회 1,975
13년 전 조회 1,051
13년 전 조회 1,267
13년 전 조회 1,039
13년 전 조회 1,271
13년 전 조회 1,123
13년 전 조회 1,459
13년 전 조회 1,511
13년 전 조회 1,376
13년 전 조회 3,230
13년 전 조회 1,024
13년 전 조회 1,265
13년 전 조회 1,135
13년 전 조회 1,638
13년 전 조회 1,375
13년 전 조회 2,070
13년 전 조회 2,399
13년 전 조회 1,750
13년 전 조회 3,700
13년 전 조회 1,891
13년 전 조회 1,241
13년 전 조회 2,700
13년 전 조회 3,147
13년 전 조회 967
13년 전 조회 1,083
13년 전 조회 1,003
13년 전 조회 1,090
13년 전 조회 1,009
13년 전 조회 1,231
13년 전 조회 2,474
13년 전 조회 949
13년 전 조회 952
13년 전 조회 1,090
13년 전 조회 1,041
13년 전 조회 945
13년 전 조회 1,254
13년 전 조회 1,218
13년 전 조회 957
13년 전 조회 963
13년 전 조회 1,996
13년 전 조회 1,204
13년 전 조회 1,569
13년 전 조회 895
13년 전 조회 1,537
13년 전 조회 1,054
13년 전 조회 928
13년 전 조회 1,225
13년 전 조회 2,768
13년 전 조회 1,369
13년 전 조회 2,058
13년 전 조회 915
13년 전 조회 996
13년 전 조회 1,232
13년 전 조회 984
13년 전 조회 1,876
13년 전 조회 887
13년 전 조회 917
13년 전 조회 1,290
13년 전 조회 1,024
13년 전 조회 936
13년 전 조회 1,073
13년 전 조회 1,112
13년 전 조회 957
13년 전 조회 2,789
13년 전 조회 1,908
13년 전 조회 1,757
13년 전 조회 983
13년 전 조회 946
13년 전 조회 1,028
13년 전 조회 1,247
13년 전 조회 1,029
13년 전 조회 1,611
13년 전 조회 1,686
13년 전 조회 1,268
13년 전 조회 1,422
13년 전 조회 2,453
13년 전 조회 2,792
13년 전 조회 6,051
13년 전 조회 947
13년 전 조회 1,412
13년 전 조회 946
13년 전 조회 1,216
13년 전 조회 1,857
13년 전 조회 1,435
13년 전 조회 1,075
13년 전 조회 1,151
13년 전 조회 1,001
13년 전 조회 1,168
13년 전 조회 2,094
13년 전 조회 2,394
13년 전 조회 1,278
13년 전 조회 1,544