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
번호 | 제목 | 날짜 | 조회 수 |
---|---|---|---|
31 | gearman 은 무엇인가? | 2023.06.21 | 661 |
30 | apache2 AllowOverride config | 2023.05.23 | 731 |
29 | mysqldump from remote db to my local server. | 2023.05.04 | 540 |
28 | To download large files with rsync command. | 2023.05.04 | 154 |
27 | The best configuration of php7.4-fpm / 8GB | 2023.05.04 | 212 |
26 | The best configuration of php7.4-fpm / 1.5GB | 2023.05.04 | 145 |
25 | net::ERR_CONNECTION_REFUSED | 2021.10.11 | 0 |
24 | php-fpm tcp to socket | 2020.01.25 | 0 |
23 | netdata 이용한 centos 모니터링 | 2020.01.25 | 2836 |
22 | vmware with centos 7 | 2019.08.23 | 0 |
21 | my.cnf | 2019.04.11 | 1 |
20 | certbot apache multiple domain | 2019.04.10 | 1571 |
19 | yum install latest redis | 2019.03.27 | 1826 |
» | yum install php 7.1 [6] | 2018.10.10 | 960 |
17 | yum install mariadb [2] | 2018.10.10 | 1367 |
16 | 간단하고 강력한 xe 보안 향상 | 2014.11.08 | 2110 |
15 | 스패머 알려주는 사이트 | 2014.09.11 | 2649 |
14 | vmware workstation performance tips [2] | 2013.10.25 | 14107 |
13 | Apache Module mod_ratelimit (아파치 트래픽 제한) | 2012.05.11 | 13889 |
12 | 자동 백업 / 삭제 (data + mysql) [1] | 2012.04.15 | 13761 |
yum install php-fpm php-gd php-memcached php-mysqlnd memcached