테스트: centos5.7
1. directory 생성
mkdir -p /usr/local/pgsql
2. user 생성
groupadd postgres
useradd -gpostgres -d /usr/local/pgsql postgres
3. postgres 다운로드
wget http://wwwmaster.postgresql.org/redir/408/f/source/v9.1.1/postgresql-9.1.1.tar.gz
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 이상 필요함.
wget http://sourceforge.net/projects/flex/files/flex/flex-2.5.35/flex-2.5.35.tar.gz/download
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;
?>
게시판 목록
팁게시판
디자인과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.
질문은 상단의 QA에서 해주시기 바랍니다.
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5727 |
잘살아보자
|
10년 전 | 478 | |
| 5726 | 10년 전 | 1050 | ||
| 5725 | 10년 전 | 1227 | ||
| 5724 | 10년 전 | 955 | ||
| 5723 |
잘살아보자
|
10년 전 | 430 | |
| 5722 |
잘살아보자
|
10년 전 | 404 | |
| 5721 |
잘살아보자
|
10년 전 | 387 | |
| 5720 |
잘살아보자
|
10년 전 | 378 | |
| 5719 |
잘살아보자
|
10년 전 | 457 | |
| 5718 |
잘살아보자
|
10년 전 | 578 | |
| 5717 |
잘살아보자
|
10년 전 | 830 | |
| 5716 |
잘살아보자
|
10년 전 | 359 | |
| 5715 |
starbros
|
10년 전 | 758 | |
| 5714 |
잘살아보자
|
10년 전 | 560 | |
| 5713 |
잘살아보자
|
10년 전 | 436 | |
| 5712 |
잘살아보자
|
10년 전 | 412 | |
| 5711 |
잘살아보자
|
10년 전 | 460 | |
| 5710 |
잘살아보자
|
10년 전 | 417 | |
| 5709 |
잘살아보자
|
10년 전 | 427 | |
| 5708 |
잘살아보자
|
10년 전 | 775 | |
| 5707 |
잘살아보자
|
10년 전 | 359 | |
| 5706 |
잘살아보자
|
10년 전 | 451 | |
| 5705 |
잘살아보자
|
10년 전 | 614 | |
| 5704 |
잘살아보자
|
10년 전 | 527 | |
| 5703 |
잘살아보자
|
10년 전 | 513 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기