아래 링크된 이전 게시물에 안내된 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년 전
저도요 정말 감사합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7830 | 9년 전 | 366 | ||
| 7829 |
|
9년 전 | 544 | |
| 7828 | 9년 전 | 478 | ||
| 7827 | 9년 전 | 363 | ||
| 7826 | 9년 전 | 372 | ||
| 7825 | 9년 전 | 423 | ||
| 7824 | 9년 전 | 412 | ||
| 7823 | 9년 전 | 310 | ||
| 7822 | 9년 전 | 313 | ||
| 7821 | 9년 전 | 261 | ||
| 7820 | 9년 전 | 312 | ||
| 7819 |
|
9년 전 | 711 | |
| 7818 | 9년 전 | 333 | ||
| 7817 | 9년 전 | 437 | ||
| 7816 | 9년 전 | 350 | ||
| 7815 | 10년 전 | 552 | ||
| 7814 | 10년 전 | 371 | ||
| 7813 | 10년 전 | 309 | ||
| 7812 | 10년 전 | 336 | ||
| 7811 | 10년 전 | 356 | ||
| 7810 | 10년 전 | 482 | ||
| 7809 | 10년 전 | 429 | ||
| 7808 | 10년 전 | 278 | ||
| 7807 | 10년 전 | 339 | ||
| 7806 |
프로그래머7
|
10년 전 | 1300 | |
| 7805 | 10년 전 | 1202 | ||
| 7804 |
zahir1312
|
10년 전 | 732 | |
| 7803 |
|
10년 전 | 1336 | |
| 7802 | 10년 전 | 392 | ||
| 7801 | 10년 전 | 819 | ||
| 7800 | 10년 전 | 1033 | ||
| 7799 | 10년 전 | 495 | ||
| 7798 | 10년 전 | 440 | ||
| 7797 | 10년 전 | 441 | ||
| 7796 | 10년 전 | 294 | ||
| 7795 | 10년 전 | 444 | ||
| 7794 | 10년 전 | 468 | ||
| 7793 | 10년 전 | 987 | ||
| 7792 | 10년 전 | 396 | ||
| 7791 | 10년 전 | 475 | ||
| 7790 | 10년 전 | 446 | ||
| 7789 |
fbastore
|
10년 전 | 1383 | |
| 7788 | 10년 전 | 480 | ||
| 7787 | 10년 전 | 340 | ||
| 7786 | 10년 전 | 492 | ||
| 7785 | 10년 전 | 510 | ||
| 7784 | 10년 전 | 578 | ||
| 7783 | 10년 전 | 380 | ||
| 7782 | 10년 전 | 436 | ||
| 7781 | 10년 전 | 839 | ||
| 7780 | 10년 전 | 770 | ||
| 7779 | 10년 전 | 744 | ||
| 7778 | 10년 전 | 310 | ||
| 7777 | 10년 전 | 388 | ||
| 7776 | 10년 전 | 392 | ||
| 7775 | 10년 전 | 330 | ||
| 7774 | 10년 전 | 595 | ||
| 7773 | 10년 전 | 317 | ||
| 7772 | 10년 전 | 660 | ||
| 7771 | 10년 전 | 320 | ||
| 7770 | 10년 전 | 606 | ||
| 7769 | 10년 전 | 315 | ||
| 7768 | 10년 전 | 540 | ||
| 7767 | 10년 전 | 1114 | ||
| 7766 | 10년 전 | 438 | ||
| 7765 | 10년 전 | 459 | ||
| 7764 |
잘살아보자
|
10년 전 | 318 | |
| 7763 |
|
10년 전 | 1393 | |
| 7762 |
Tosea
|
10년 전 | 1011 | |
| 7761 | 10년 전 | 610 | ||
| 7760 |
잘살아보자
|
10년 전 | 580 | |
| 7759 |
잘살아보자
|
10년 전 | 395 | |
| 7758 |
잘살아보자
|
10년 전 | 515 | |
| 7757 | 10년 전 | 1169 | ||
| 7756 |
ITBANK
|
10년 전 | 1212 | |
| 7755 | 10년 전 | 1890 | ||
| 7754 | 10년 전 | 977 | ||
| 7753 | 10년 전 | 835 | ||
| 7752 | 10년 전 | 1336 | ||
| 7751 |
잘살아보자
|
10년 전 | 464 | |
| 7750 |
잘살아보자
|
10년 전 | 428 | |
| 7749 |
잘살아보자
|
10년 전 | 425 | |
| 7748 |
잘살아보자
|
10년 전 | 417 | |
| 7747 |
잘살아보자
|
10년 전 | 502 | |
| 7746 |
잘살아보자
|
10년 전 | 616 | |
| 7745 |
잘살아보자
|
10년 전 | 861 | |
| 7744 |
잘살아보자
|
10년 전 | 383 | |
| 7743 | 10년 전 | 909 | ||
| 7742 |
starbros
|
10년 전 | 781 | |
| 7741 |
잘살아보자
|
10년 전 | 592 | |
| 7740 |
잘살아보자
|
10년 전 | 467 | |
| 7739 |
잘살아보자
|
10년 전 | 428 | |
| 7738 |
잘살아보자
|
10년 전 | 482 | |
| 7737 |
잘살아보자
|
10년 전 | 436 | |
| 7736 |
잘살아보자
|
10년 전 | 462 | |
| 7735 |
잘살아보자
|
10년 전 | 795 | |
| 7734 |
잘살아보자
|
10년 전 | 384 | |
| 7733 |
잘살아보자
|
10년 전 | 484 | |
| 7732 |
잘살아보자
|
10년 전 | 638 | |
| 7731 |
잘살아보자
|
10년 전 | 563 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기