테스트: 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;
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 179 | ||
| 8229 | 9년 전 | 164 | ||
| 8228 |
커네드커네드
|
9년 전 | 201 | |
| 8227 | 9년 전 | 244 | ||
| 8226 | 9년 전 | 263 | ||
| 8225 | 9년 전 | 239 | ||
| 8224 | 9년 전 | 250 | ||
| 8223 | 9년 전 | 222 | ||
| 8222 |
|
9년 전 | 288 | |
| 8221 | 9년 전 | 190 | ||
| 8220 | 9년 전 | 229 | ||
| 8219 | 9년 전 | 201 | ||
| 8218 | 9년 전 | 246 | ||
| 8217 |
star3840
|
9년 전 | 210 | |
| 8216 | 9년 전 | 278 | ||
| 8215 | 9년 전 | 223 | ||
| 8214 | 9년 전 | 331 | ||
| 8213 | 9년 전 | 291 | ||
| 8212 | 9년 전 | 204 | ||
| 8211 | 9년 전 | 372 | ||
| 8210 | 9년 전 | 369 | ||
| 8209 | 9년 전 | 449 | ||
| 8208 | 9년 전 | 337 | ||
| 8207 | 9년 전 | 348 | ||
| 8206 |
|
9년 전 | 291 | |
| 8205 | 9년 전 | 265 | ||
| 8204 | 9년 전 | 253 | ||
| 8203 | 9년 전 | 332 | ||
| 8202 | 9년 전 | 247 | ||
| 8201 | 9년 전 | 285 | ||
| 8200 | 9년 전 | 292 | ||
| 8199 | 9년 전 | 311 | ||
| 8198 | 9년 전 | 279 | ||
| 8197 | 9년 전 | 261 | ||
| 8196 | 9년 전 | 684 | ||
| 8195 | 9년 전 | 269 | ||
| 8194 | 9년 전 | 382 | ||
| 8193 | 9년 전 | 296 | ||
| 8192 | 9년 전 | 305 | ||
| 8191 | 9년 전 | 264 | ||
| 8190 | 9년 전 | 243 | ||
| 8189 | 9년 전 | 304 | ||
| 8188 | 9년 전 | 238 | ||
| 8187 | 9년 전 | 251 | ||
| 8186 | 9년 전 | 249 | ||
| 8185 | 9년 전 | 417 | ||
| 8184 | 9년 전 | 205 | ||
| 8183 | 9년 전 | 415 | ||
| 8182 | 9년 전 | 283 | ||
| 8181 | 9년 전 | 239 | ||
| 8180 | 9년 전 | 809 | ||
| 8179 | 9년 전 | 589 | ||
| 8178 | 9년 전 | 447 | ||
| 8177 |
kiplayer
|
9년 전 | 442 | |
| 8176 | 9년 전 | 474 | ||
| 8175 | 9년 전 | 363 | ||
| 8174 | 9년 전 | 353 | ||
| 8173 | 9년 전 | 445 | ||
| 8172 | 9년 전 | 326 | ||
| 8171 | 9년 전 | 285 | ||
| 8170 | 9년 전 | 404 | ||
| 8169 |
커네드커네드
|
9년 전 | 360 | |
| 8168 | 9년 전 | 443 | ||
| 8167 | 9년 전 | 432 | ||
| 8166 | 9년 전 | 329 | ||
| 8165 | 9년 전 | 269 | ||
| 8164 | 9년 전 | 406 | ||
| 8163 | 9년 전 | 411 | ||
| 8162 | 9년 전 | 395 | ||
| 8161 | 9년 전 | 407 | ||
| 8160 |
|
9년 전 | 629 | |
| 8159 | 9년 전 | 573 | ||
| 8158 | 9년 전 | 370 | ||
| 8157 | 9년 전 | 485 | ||
| 8156 | 9년 전 | 359 | ||
| 8155 | 9년 전 | 366 | ||
| 8154 |
00년생용띠
|
9년 전 | 698 | |
| 8153 | 9년 전 | 336 | ||
| 8152 |
|
9년 전 | 516 | |
| 8151 | 9년 전 | 508 | ||
| 8150 | 9년 전 | 627 | ||
| 8149 |
Jangfolk
|
9년 전 | 481 | |
| 8148 | 9년 전 | 298 | ||
| 8147 | 9년 전 | 481 | ||
| 8146 | 9년 전 | 562 | ||
| 8145 | 9년 전 | 521 | ||
| 8144 | 9년 전 | 488 | ||
| 8143 | 9년 전 | 316 | ||
| 8142 | 9년 전 | 528 | ||
| 8141 | 9년 전 | 477 | ||
| 8140 | 9년 전 | 1040 | ||
| 8139 | 9년 전 | 385 | ||
| 8138 |
전갈자리남자
|
9년 전 | 492 | |
| 8137 | 9년 전 | 526 | ||
| 8136 | 9년 전 | 858 | ||
| 8135 |
|
9년 전 | 898 | |
| 8134 |
PlayPixel
|
9년 전 | 640 | |
| 8133 |
|
9년 전 | 546 | |
| 8132 | 9년 전 | 584 | ||
| 8131 | 9년 전 | 942 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기