mysql 설치mysql 설치

Posted at 2009. 11. 6. 19:30 | Posted in 컴퓨터관련/리눅스
글자크게글자작게원래사이즈로
configure 시 오류 메세지
오류 메세지 : checking for termcap functions library... configure: error: No curses/termcap library found
해결 방법 : yum -y install ncurses-devel

./configure --prefix=/usr/local/mysql --localstatedir=/usr/local/mysql/data --with-charset=euckr --enable-thread-safe-client
make && make install

# cd /usr/local/mysql/bin
# ./mysql_install_db
# useradd -M mysql
# chown -R mysql:mysql /usr/local/mysql/data
# /usr/local/mysql/bin/mysqld_safe &
# cd /usr/local/mysql/bin
# ./mysqladmin -u root password 암호
# ./mysql -u root -p mysql

apache 설치
httpd-2.0.63
접속자 수 최대로 올리기
# vi server/mpm/prefork/prefork.c
[EDITOR]#define DEFAULT_SERVER_LIMIT 256 을
[EDITOR]#define DEFAULT_SERVER_LIMIT 1280 으로 수정
저장하고 아웃
# vi server/mpm/worker/worker.c
[EDITOR]#define DEFAULT_SERVER_LIMIT 16 을
[EDITOR]#define DEFAULT_SERVER_LIMIT 20 으로 수정
저장하고 아웃
./configure --prefix=/usr/local/apache2 --enable-so --enable-modules=so --with-mpm=worker --enable-rewrite
make && make install

'컴퓨터관련 > 리눅스' 카테고리의 다른 글

apache httpd.conf 설정  (0) 2009.11.06
apache 설치  (0) 2009.11.06
php 설치시 오류와 해결방법 모음  (0) 2009.11.06
Vmware Tools 설치 중 /usr/src/linux/include 문제 해결  (0) 2009.11.06
파일질라 ftp  (0) 2009.11.05
//