postgres 설치하기

· 13년 전 · 1733
 테스트: 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;
?>
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 1,293
13년 전 조회 1,223
13년 전 조회 1,549
13년 전 조회 1,555
13년 전 조회 1,259
13년 전 조회 1,524
13년 전 조회 2,080
13년 전 조회 1,337
13년 전 조회 2,128
13년 전 조회 1,192
13년 전 조회 1,417
13년 전 조회 1,213
13년 전 조회 1,434
13년 전 조회 1,276
13년 전 조회 1,612
13년 전 조회 1,671
13년 전 조회 1,546
13년 전 조회 3,379
13년 전 조회 1,170
13년 전 조회 1,426
13년 전 조회 1,291
13년 전 조회 1,823
13년 전 조회 1,536
13년 전 조회 2,239
13년 전 조회 2,572
13년 전 조회 1,904
13년 전 조회 3,801
13년 전 조회 2,045
13년 전 조회 1,404
13년 전 조회 2,863
13년 전 조회 3,290
13년 전 조회 1,109
13년 전 조회 1,254
13년 전 조회 1,170
13년 전 조회 1,246
13년 전 조회 1,171
13년 전 조회 1,401
13년 전 조회 2,640
13년 전 조회 1,110
13년 전 조회 1,103
13년 전 조회 1,245
13년 전 조회 1,194
13년 전 조회 1,112
13년 전 조회 1,428
13년 전 조회 1,374
13년 전 조회 1,125
13년 전 조회 1,126
13년 전 조회 2,158
13년 전 조회 1,363
13년 전 조회 1,734
13년 전 조회 1,058
13년 전 조회 1,707
13년 전 조회 1,223
13년 전 조회 1,093
13년 전 조회 1,387
13년 전 조회 2,932
13년 전 조회 1,542
13년 전 조회 2,238
13년 전 조회 1,087
13년 전 조회 1,164
13년 전 조회 1,401
13년 전 조회 1,131
13년 전 조회 2,044
13년 전 조회 1,048
13년 전 조회 1,075
13년 전 조회 1,437
13년 전 조회 1,197
13년 전 조회 1,104
13년 전 조회 1,227
13년 전 조회 1,261
13년 전 조회 1,122
13년 전 조회 2,951
13년 전 조회 2,070
13년 전 조회 1,927
13년 전 조회 1,127
13년 전 조회 1,116
13년 전 조회 1,193
13년 전 조회 1,405
13년 전 조회 1,187
13년 전 조회 1,767
13년 전 조회 1,841
13년 전 조회 1,433
13년 전 조회 1,585
13년 전 조회 2,642
13년 전 조회 2,965
13년 전 조회 6,231
13년 전 조회 1,116
13년 전 조회 1,584
13년 전 조회 1,111
13년 전 조회 1,381
13년 전 조회 2,024
13년 전 조회 1,617
13년 전 조회 1,245
13년 전 조회 1,315
13년 전 조회 1,172
13년 전 조회 1,333
13년 전 조회 2,277
13년 전 조회 2,567
13년 전 조회 1,429
13년 전 조회 1,704