server yum install php 7.1
2018.10.10 02:37
참고 문서 |
---|
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum update
yum-config-manager --enable remi-php71
yum install php php-opcache
yum install php-mysqlnd php-pdo
yum install php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-soap curl curl-devel
yum install php-memcached memcached
댓글 6
-
엘카
2019.03.11 15:53
-
엘카
2019.03.11 17:55
chkconfig httpd on
chkconfig mariadb on
chkconfig php-fpm on
-
엘카
2019.03.11 18:22
chcon -R -t httpd_sys_rw_content_t /var/www/
# php-fpm mysql
setsebool -P httpd_can_network_connect 1
setsebool -P httpd_can_network_connect_db 1
# php-fpm memcached
setsebool -P httpd_can_network_memcache 1
-
엘카
2019.03.16 23:32
https://extrememanual.net/11088 참고해서 세팅함.
;opcache.enable_cli ; 건드리지 않는다. 명령을 직접 실행할 일이 거의 없고 캐시를 만료할 방법이 없다.
opcache.memory_consumption = 128; 캐시 메모리 크기
opcache.max_accelerated_files = 20000; 파일 키 갯수
opcache.interned_strings_buffer = 16; 문자열 버퍼 크기 (MB)
opcache.revalidate_freq = 5; 변경점 체크 시간 (초)
opcache.file_cache=/var/lib/php/opcache; 메모리가 가득찬 경우 file cache 이용
opcache.enable_file_override=1; 활성화되면 opcode 캐시는 file_exists () , is_file () 및 is_readable () 이 호출 될 때 파일이 이미 캐시되었는지 여부를 확인합니다 . 이는 PHP 스크립트의 존재 여부 및 가독성을 검사하는 응용 프로그램의 성능을 향상시킬 수 있지만 opcache.validate_timestamps 가 비활성화 된 경우 부실 데이터를 반환 할 수 있습니다.
opcache.save_comments=0; 비활성화 된 경우 opcode 캐시에서 모든 문서 주석을 삭제하여 최적화 된 코드의 크기를 줄입니다. 이 구성 지시어를 비활성화하면 Doctrine, Zend Framework 2 및 PHPUnit을 포함하여 주석에 대한 주석 구문 분석에 의존하는 응용 프로그램 및 프레임 워크가 중단 될 수 있습니다.
-
엘카
2019.08.21 19:30
-
엘카
2019.12.17 00:07
번호 | 제목 | 날짜 | 조회 수 |
---|---|---|---|
61 | munin 설치 | 2018.10.13 | 937 |
» | yum install php 7.1 [6] | 2018.10.10 | 898 |
59 | yum install mariadb [2] | 2018.10.10 | 1326 |
58 | 위젯 많은 페이지 - 부하 분산으로 속도 향상하기 | 2014.12.12 | 8699 |
57 | 간단하고 강력한 xe 보안 향상 | 2014.11.08 | 2058 |
56 | XE Core 최적화 - html/js/css | 2014.11.07 | 2335 |
55 | 스패머 알려주는 사이트 | 2014.09.11 | 2618 |
54 | 75mb 페이지에 lazy load 적용해보기 | 2014.09.03 | 2774 |
53 | date — 로컬 날짜/시간을 형식화합니다 | 2014.07.03 | 2748 |
52 | [뻘글] 컴퓨터의 언어와 사람의 기억법 | 2014.06.24 | 2347 |
51 | 서식문자 출력 대상(자료형) 출력 형태 | 2014.04.06 | 4620 |
50 | vmware workstation performance tips [2] | 2013.10.25 | 14104 |
49 | 유닉스 계정 관리 | 2013.10.15 | 14782 |
48 | 솔라리스 mount options | 2013.10.06 | 15523 |
47 | 솔라리스 디렉토리 | 2013.10.06 | 14397 |
46 | Linux Memory 사용량 | 2012.05.16 | 25196 |
45 | Linux 설치시 파티션 관리 | 2012.05.12 | 19372 |
44 | Apache Module mod_ratelimit (아파치 트래픽 제한) | 2012.05.11 | 13860 |
43 | SSL 설치 (Apache) [1] | 2012.04.19 | 13013 |
42 | 계정 자동 생성 [2] | 2012.04.15 | 10885 |
yum install php-fpm php-gd php-memcached php-mysqlnd memcached