Nginx 0.8.54 + PHP 5.3.4 + MySQL 5.5.8 의 새로운 LNMP 안정 판 구 조 를 바탕 으로 구 축 된 VPS

3318 단어
MySQL 5.5.8 의 컴 파일 과정 에서 문제 가 발생 하기 시 작 했 지만 이전에 Cmake 방식 의 컴 파일 을 접 해 본 적 이 없 기 때문에 공식 매 뉴 얼 을 조회 하고 구 글 과 결합 하여 문 제 를 해결 했다.
현재 Nginx 의 workerprocesses 는 4, pp - fpm 는 다이나믹 모드, max 로 설정 합 니 다.children=32,start_servers=8,min_spare_servers=4,max_spare_servers=16,max_request = 512 의 환경 에서 540 MB 의 메모리 가 380 MB 남 았 습 니 다. 예전 에 Zend Server CE 로 구축 한 LAMP 메모리 비용 에 비해 최적화 효과 가 매우 뚜렷 하고 사이트 속도 도 이상 적 입 니 다. 저 에 게 가장 큰 느낌 을 준 것 은 바로 페이지 요청 의 응답 속도 가 예전 보다 크게 향상 되 었 다 는 것 입 니 다.
MySQL 5.5.8 이라는 신제품 이 발 표 된 지 얼마 되 지 않 았 음 을 감안 하여 인터넷 에 관련 자료 가 부족 하고 컴 파일 된 내용 을 보충 합 니 다.
 
  
#download software package
wget http://www.cmake.org/files/v2.8/cmake-2.8.3.tar.gz
wget http://ftp.gnu.org/gnu/bison/bison-2.4.3.tar.gz

tar zxvf cmake-2.8.3.tar.gz
cd cmake-2.8.3/
./configure --prefix=/usr
gmake
gmake install
cd ../
tar zxvf bison-2.4.3.tar.gz
cd cd bison-2.4.3
./configure
make
make install

#install mysql5.5.8
/usr/sbin/groupadd mysql
/usr/sbin/useradd -g mysql mysql
mkdir -p /data/mysql
chown -R mysql:mysql /data/mysql
tar zxvf mysql-5.5.8.tar.gz
cd mysql-5.5.8
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/data/mysql -DWITHOUT_INNOBASE_STORAGE_ENGINE=1 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_MYISAM_STORAGE_ENGINE=1 -DSYSCONFDIR=/etc/ -DWITH_SSL=yes -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_READLINE=on
make
make install
/usr/local/mysql/scripts/mysql_install_db --basedir=/usr/local/mysql/ --datadir=/data/mysql --user=mysql

#modify mysql config
vim /etc/my.cnf

[client]
port = 3306
socket = /tmp/mysql.sock
[mysqld]
port = 3306
socket = /tmp/mysql.sock
skip-external-locking
key_buffer_size = 256M
max_allowed_packet = 1M
table_open_cache = 256
sort_buffer_size = 1M
read_buffer_size = 1M
read_rnd_buffer_size = 4M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size= 16M
thread_concurrency = 1
basedir = /usr/local/mysql
datadir = /data/mysql
default-storage-engine = myisam
log-bin=mysql-bin
binlog_format=mixed
server-id = 1
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
[myisamchk]
key_buffer_size = 128M
sort_buffer_size = 128M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout

#add to boot config
cp /usr/local/mysql/support-files/mysql.server /etc/rc.d/init.d/mysqld
chkconfig --add mysqld
/etc/rc.d/init.d/mysqld start
/usr/local/mysql/bin/mysql -u root -p -S /tmp/mysql.sock

PS: PHP 를 컴 파일 할 때 error while loading shared libraries: libmy sqlclient. so. 16: cannot open shared object file: No such file or directory 를 잘못 보고 하면 다음 과 같은 방법 으로 해결 할 수 있 습 니 다.
 
  
ln -s /usr/local/mysql/lib/mysql/libmysqlclient.so.16 /usr/lib/libmysqlclient.so.16

좋은 웹페이지 즐겨찾기