일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- jsp
- Spring
- AWS
- 맛집
- JVM
- Spring Batch
- Gradle
- Web Server
- jenkins
- ubuntu
- java
- tool
- MySQL
- ReactJS
- it
- redis
- Oracle
- Spring Boot
- IntelliJ
- Git
- javascript
- db
- Design Patterns
- elasticsearch
- laravel
- devops
- 요리
- springboot
- linux
- php
- Today
- Total
아무거나
zend-opcache gui 설치 본문
Opcache란 Zend Technologies Ltd사에서 만들었으며 PHP 성능을 향상시키기 위해서 이전에 컴파일된 스크립트 바이트코드들을 공유 메모리(shared Memory)에 저장해놓는 cache이다.
Zend Opcache 의 동작 상태(메모리 사용율, 캐시 히트율등)를 웹 기반으로 확인하는 GUI 모듈을 소개한다.
위의 3개의 사이트 중 OpCacheGUI 가 가장 많이 사용되므로 이에 대하여 설치하여보자.
1. composer 설치 또는 git 설치
2. opcachegui 설치
- git : 웹 루트에 git clone https://github.com/PeeHaa/OpCacheGUI.git
- composer : php composer.phar require peehaa/opcachegui:1.0.1
3. init.example.php 수정
[수정내용]
ini_set('display_errors', 0);
ini_set('log_errors', 1);
ini_set('date.timezone', 'Asia/Seoul');
4. virtualHost 설정
[내용]
<VirtualHost *:80>
ServerName opcache.example.com
DocumentRoot "/var/www/php-proj/OpCacheGUI/public"
<Directory "/var/www/php-proj/OpCacheGUI/public">
Options Indexes FollowSymLinks
AllowOverride All
</Directory>
# This is only needed when using URL paths
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
</VirtualHost>
(5) peehaa / password // 이 부분을 비워주면 바로 통계를 확인할 수 있음
'PHP > PHP' 카테고리의 다른 글
mysql_real_escape_string (0) | 2019.04.01 |
---|---|
xdebug+webgrind 설치 (0) | 2019.03.29 |
php7+nginx 설치 (0) | 2019.03.28 |
composer 설치 (0) | 2019.03.28 |
apache에서 index.php 죽이기 (0) | 2019.03.27 |