zeroboard설치
1. zeorboard 4 설치하기
zeroboard가 실행되기 위해서는 Apache, PHP, MySQL이 먼저 설치되고 실행되어 있어야 한다.
Apache 실행
/usr/local/apache/bin/apachectl start
MySQL 실행
/usr/lcoal/mysql/bin/mysqld_safe --user=root &
http://www.zeroboard.com/zb4_download 에서 다운 받는다.
다운받은 파일을 압축을 푼다.
tar xvfz zb4pl8.tgz ->tar.gz의 다른이름은 tgz
압축을 해제하면 bbs 폴더가 생기고 이 폴더를 htdocs폴더로 이동한다.
rm bbs /usr/local/apache/htdocs
bbs디렉토리에 권한을 707로 설정한다.
chmod 707 bbs
zero보드에 사용할 데이터 베이스를 생성한다.
mysql로그인
/usr/local/mysql/bin/mysql -uroot -p
zero 데이터베이스 생성
mysql>create database zero;
만들어진 데이터베이스 확인
mysql>show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
| tt |
| zero |
+--------------------+
5 rows in set (0.00 sec)
mysql>quit
웹브라우저 시작
http://www.server14.co.kr/bbs/install.php
라이센스 동의 -> 설치시작
MySQL DB설정
Host Name : localhost
SQL User ID : root
Password : flsnrtm
DB Name : zero
관리자 정보 입력
ID : amdin
Password : admin
ConfirmPassword : admin
Name : admin
http://www.server14.co.kr/bbs/admin.php 로 이동후 로그인하기
2. zeroboard XE 설치하기
XE버전은 gd library가 설치되어 있어야 한다.
gd 라이브러리 설치하기
순서
1. zlib 설치
2. png 설치
3. jpeg 설치
4. freetype 설치
5. gd 설치
[다운로드]
1. zlib 설치 : http://www.zlib.net
2. png 다운로드 : http://www.libpng.org/pub/png/libpng.html
3. JPEG 다운로드 : http://quox.org/install/graphics/jpeg-6b.html
4. freetype 다운로드 : http://freetype.sourceforge.net/index2.html
XPM : http://quox.org/install/graphics/xpm-3.4k.html
FontConfig : http://fontconfig.org
5. GD 다운로드 : http://www.libgd.org/Main_Page
1. zlib 설치
./configure --shared --prefix=/usr
make
make install
2. png 설치
./configure
make
make install
3. jpeg 설치
./configure --prefix=/usr --enable-shared --enable-static
make
make install
4. freetype 설치
make setup
make install
5. GD 설치
./configure
========================================================================
Support for PNG library : yes
Support for JPEG library : yes
Support for Freetype 2.x library : yes //무료 폰트 랜더링 라이브러리
Support for Fontconfig library : no
Support for Xpm library : no //unix의 이미지 포멧 라이브러리
Support for pthreads : yes
========================================================================
make
make install
php 컴파일
./configure --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql --with-config-file-path=/usr/local/apache/conf --with-exec-dir=/usr/local/apache/bin --with-gd=/usr/local --with-jpeg-dir=/usr --with-freetype-dir=/usr/local/lib --with-png-dir=/usr/lib --with-zlib-dir=/usr
make
make install
'컴퓨터 > 리눅스' 카테고리의 다른 글
| 네트워크 설정 (0) | 2010/02/25 |
|---|---|
| 네이트온 (0) | 2010/02/25 |
| zeroboard설치 (0) | 2010/02/25 |
| yum으로 APM 설치하기 (0) | 2010/02/25 |
| vsftp한글설명 (0) | 2010/02/25 |
| VNC서버 (0) | 2010/02/25 |
