아래 링크된 이전 게시물에 안내된 APM 작업을 선행 한 후에 아래 작업을 추가 하시면 됩니다.
http://sir.co.kr/bbs/board.php?bo_table=pg_tip&wr_id=13753
|
@ Zendopcache 설치
php 5.5.x 버전에서는 opcache 가 기본 내장되어 있으므로 php 설치시에 --enable-opcache 를 설정해주고
설치한 후
vi /usr/local/lib/php.ini 파일의 [opcache] 하단에 아래와 같이 설정해주고 service httpd restart 하면 적용 된다. zend_extension=/usr/local/php/lib/php/extensions/no-debug-zts-20121212/opcache.so
opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 opcache.revalidate_freq=60 opcache.fast_shutdown=1 opcache.enable_cli=1 php 5.4.x 이하버전에서는 아래와 같이 소스를 다운 받아 설치 해 주어야 한다.
cd /usr/local/src
wget http://pecl.php.net/get/ZendOpcache tar xvfz zendopcache-7.x.x.tgz cd zendopcache-7.x.x /usr/local/php/bin/phpize whereis php-config
# set the path below ./configure --with-php-config=/usr/local/php/bin/php-config make make install # note the install path because you will use it below vi /usr/local/lib/php.ini [opcache]
zend_extension=/usr/local/php/lib/php/extensions/no-debug-zts-20121212/opcache.so opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 opcache.revalidate_freq=60 opcache.fast_shutdown=1 opcache.enable_cli=1 @ ioncube_loaders 32비트 설치
# mkdir /usr/local/ioncube # cd /usr/local/src # wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz # tar -zxvf ioncube_loaders_lin_x86.tar.gz # cp /usr/local/src/ioncube/ioncube_loader_lin_5.5_ts.so /usr/local/ioncube/ php.ini 하단에 에 추가 [opcache] 맨 위에 extension 입력
[opcache]
zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.5_ts.so zend_extension=/usr/local/php/lib/php/extensions/no-debug-zts-20121212/opcache.so opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=4000 opcache.revalidate_freq=60 opcache.fast_shutdown=1 opcache.enable_cli=1 만약 ioncube_loader 가 적용이 안되면
vi /etc/sysconfig/selinux 를 열어 SELINUX=enforcing 를 SELINUX=disabled 로 바꿔주고 서버 재부팅 한다. @ mod_security 모듈 설치 # cd /usr/local/src # wget http://www.modsecurity.org/download/ModSecurity-2.7.6.tar.gz # tar xvfz ModSecurity-2.7.6.tar.gz # cd ModSecurity-2.7.6 # ./autogen.sh # ./configure --with-apxs=/usr/local/apache/bin/apxs --with-apr=/usr/local/apr/bin/apr-1-config --with-apu=/usr/local/apr-util/bin/apu-1-config --with-lua --with-pcre=/usr/local/bin/pcre-config # make && make install cp /usr/local/src/ModSecurity-2.7.6/modsecurity.conf-recommended
/usr/local/apache/conf/modsecurity.conf
아파치 환경파일 (http.conf) 추가
아파치 환경파일을 열어 위에서 설치한 모듈을 불러드립니다. LoadModule security2_module modules/mod_security2.so 그리고, 파일 하단에 다음 문을 추가합니다. 차후 다운로드 받을 룰셋 파일을 불러드리기 위함입니다. Include conf/modsecurity.conf # service httpd restart
@ phpMyAdmin 설치 # cd /usr/local/src # wget http://prdownloads.sourceforge.net/phpmyadmin/phpMyAdmin-4.1.2-all-languages.tar.gz # tar xvfz phpMyAdmin-4.1.2-all-languages.tar.gz # mv phpMyAdmin-4.1.2-all-languages phpmyadmin # mv phpmyadmin /usr/local/apache/htdocs # cd /usr/local/apache/htdocs/phpmyadmin # cp config.sample.inc.php config.inc.php vi config.inc.php
$cfg['Servers'][$i]['auth_type'] = 'cookie'; --> http 로변경 (window
보안)
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark'; $cfg['Servers'][$i]['relation'] = 'pma__relation'; $cfg['Servers'][$i]['table_info'] = 'pma__table_info'; $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords'; $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages'; $cfg['Servers'][$i]['column_info'] = 'pma__column_info'; $cfg['Servers'][$i]['history'] = 'pma__history'; $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs'; $cfg['Servers'][$i]['tracking'] = 'pma__tracking'; $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords'; $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig'; $cfg['Servers'][$i]['recent'] = 'pma__recent'; $cfg['Servers'][$i]['users'] = 'pma__users'; $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; 위 항목 주석을 푼다
에러 처리
- The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here - pma 관련 테이블 및 계정을 추가해 준다
- phpmyadmin 폴더에 포함된 sql로 되어있는 파일 실행시킨다 # mysql -uroot -ppassword # Enter password: - 아래 스크립트를 실행한다 mysql> GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'password'; mysql> GRANT SELECT, INSERT, UPDATE, DELETE ON phpmyadmin.* TO 'pma'@'localhost'; mysql> exit | ||
|
댓글 2개
11년 전
소중한 자료 고맙습니다.
11년 전
저도요 정말 감사합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 458 | ||
| 8129 |
|
9년 전 | 625 | |
| 8128 | 9년 전 | 495 | ||
| 8127 |
|
9년 전 | 555 | |
| 8126 | 9년 전 | 486 | ||
| 8125 | 9년 전 | 747 | ||
| 8124 |
|
9년 전 | 473 | |
| 8123 | 9년 전 | 463 | ||
| 8122 | 9년 전 | 400 | ||
| 8121 | 9년 전 | 508 | ||
| 8120 | 9년 전 | 441 | ||
| 8119 | 9년 전 | 517 | ||
| 8118 |
|
9년 전 | 604 | |
| 8117 |
|
9년 전 | 378 | |
| 8116 |
PASKRAN
|
9년 전 | 448 | |
| 8115 | 9년 전 | 438 | ||
| 8114 |
kiplayer
|
9년 전 | 581 | |
| 8113 | 9년 전 | 408 | ||
| 8112 |
|
9년 전 | 527 | |
| 8111 | 9년 전 | 377 | ||
| 8110 | 9년 전 | 421 | ||
| 8109 | 9년 전 | 332 | ||
| 8108 |
|
9년 전 | 518 | |
| 8107 |
|
9년 전 | 411 | |
| 8106 |
|
9년 전 | 409 | |
| 8105 | 9년 전 | 451 | ||
| 8104 |
|
9년 전 | 405 | |
| 8103 |
|
9년 전 | 406 | |
| 8102 |
|
9년 전 | 356 | |
| 8101 |
snshero
|
9년 전 | 747 | |
| 8100 | 9년 전 | 814 | ||
| 8099 | 9년 전 | 779 | ||
| 8098 | 9년 전 | 691 | ||
| 8097 | 9년 전 | 481 | ||
| 8096 | 9년 전 | 678 | ||
| 8095 | 9년 전 | 795 | ||
| 8094 | 9년 전 | 474 | ||
| 8093 | 9년 전 | 770 | ||
| 8092 | 9년 전 | 730 | ||
| 8091 | 9년 전 | 1126 | ||
| 8090 | 9년 전 | 732 | ||
| 8089 | 9년 전 | 937 | ||
| 8088 | 9년 전 | 614 | ||
| 8087 | 9년 전 | 718 | ||
| 8086 | 9년 전 | 493 | ||
| 8085 | 9년 전 | 454 | ||
| 8084 | 9년 전 | 594 | ||
| 8083 | 9년 전 | 568 | ||
| 8082 | 9년 전 | 730 | ||
| 8081 | 9년 전 | 444 | ||
| 8080 | 9년 전 | 531 | ||
| 8079 | 9년 전 | 484 | ||
| 8078 | 9년 전 | 418 | ||
| 8077 | 9년 전 | 494 | ||
| 8076 | 9년 전 | 380 | ||
| 8075 | 9년 전 | 396 | ||
| 8074 | 9년 전 | 362 | ||
| 8073 | 9년 전 | 413 | ||
| 8072 | 9년 전 | 402 | ||
| 8071 |
o1o111
|
9년 전 | 851 | |
| 8070 | 9년 전 | 370 | ||
| 8069 | 9년 전 | 300 | ||
| 8068 | 9년 전 | 564 | ||
| 8067 | 9년 전 | 372 | ||
| 8066 | 9년 전 | 399 | ||
| 8065 | 9년 전 | 351 | ||
| 8064 | 9년 전 | 327 | ||
| 8063 | 9년 전 | 291 | ||
| 8062 | 9년 전 | 279 | ||
| 8061 | 9년 전 | 327 | ||
| 8060 | 9년 전 | 347 | ||
| 8059 | 9년 전 | 282 | ||
| 8058 | 9년 전 | 221 | ||
| 8057 | 9년 전 | 344 | ||
| 8056 | 9년 전 | 277 | ||
| 8055 | 9년 전 | 307 | ||
| 8054 | 9년 전 | 326 | ||
| 8053 | 9년 전 | 369 | ||
| 8052 | 9년 전 | 257 | ||
| 8051 | 9년 전 | 298 | ||
| 8050 | 9년 전 | 364 | ||
| 8049 | 9년 전 | 286 | ||
| 8048 | 9년 전 | 401 | ||
| 8047 | 9년 전 | 333 | ||
| 8046 | 9년 전 | 262 | ||
| 8045 | 9년 전 | 235 | ||
| 8044 | 9년 전 | 293 | ||
| 8043 | 9년 전 | 239 | ||
| 8042 | 9년 전 | 266 | ||
| 8041 | 9년 전 | 303 | ||
| 8040 | 9년 전 | 235 | ||
| 8039 | 9년 전 | 294 | ||
| 8038 | 9년 전 | 251 | ||
| 8037 | 9년 전 | 362 | ||
| 8036 | 9년 전 | 449 | ||
| 8035 | 9년 전 | 400 | ||
| 8034 | 9년 전 | 362 | ||
| 8033 | 9년 전 | 315 | ||
| 8032 | 9년 전 | 369 | ||
| 8031 | 9년 전 | 305 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기