요구 사항: Centos7.3에서 LNMP 환경 설정
1. 방화벽 및 selinux를 끄세요.
selinux 파일을 엽니다.
vim /etc/sysconfig/selinux
파일에서 SELINUX=enforcing을 비활성화로 변경한 후 "setenforce 0"을 실행하여 종료합니다. 다시 시작하지 않고 selinux를 다운시킵니다.
SELINUX=disabled
방화벽 시스템 닫기ctl stop Firewalld.service
2. 소프트웨어 설치
2.1.MYSQL 설치
MySQL 저장소 소스 다운로드
wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
mysql-community-release-el7-5.noarch.rpm 패키지 설치
rpm -ivh mysql-community-release-el7-5.noarch.rpm
MYSQL 설치
sudo yum install -y mysql-server
MYSQL 사용자 권한 변경:
sudo chown -R root:root /var/lib/mysql
서비스 다시 시작:
systemctl restart mysql.service
로그인 및 비밀번호 변경:
mysql -u root mysql > use mysql; mysql > update user set password=password(‘123456‘) where user=‘root‘; mysql > exit;
2.2nginx 설치 및 현재 시스템 버전에 해당하는 nginx 패키지 다운로드
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
설립 nginx yum 창고(기본 yum에는 nginx가 없음)
rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm
nginx 다운로드 및 설치 yum install -y nginx
nginx start
systemctl start nginx.service
2.3 php 설치
rpm 설치 Php7 해당 yum 소스
rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
install php7.0
rrre 에PHP 확장 설치
yum install -y php70w
php FPM 설치
yum install -y php70w-mysql.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64
3. 구성 파일 수정
3.1 Nginx 구성 파일 수정
nginx 구성 파일 위치:
yum install -y php70w-fpm
루트 디렉터리 수정, 사용자 정의 가능:
(/etc/nginx/conf.d/default.conf) vim /etc/nginx/conf.d/default.conf
PHP 구문 분석 구성 , 다음 코드 검정색 굵은 부분 수정:
root /forest/nginxDir/html;
3.2 php-fpm 구성 파일 수정
php-fpm 구성 파일 위치: (/etc/php-fpm.d/www.conf)
수정
user =nginx
group=nginx
4. 테스트 파일
location ~.php$ { root /forest/nginxDir/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
5을 넣습니다. 5. 서비스 시작
5.1 nginx 서비스 시작:
cd /forest/nginxDir/html echo 'hello eric' >index.php
시작 상태 확인:
systemctl start nginx.service
다음 단어를 참조하세요. 성공했습니다!
활성: 토요일 2016-11-19 13:40:04 CST부터 활성(실행 중); 50분 전
5.2 PHP-FPM 시작:
systemctl status nginx
시작 상태 확인:
systemctl start php-fpm.service
다음 단어를 참조하세요. 성공적인 스타트!
Active: 토요일 2016-11-19 14:14:33 CST부터 활성(실행 중); 18분 전
6. 테스트
브라우저에서 192.168.44.129:80/index.php를 열면 완료됩니다. 안녕하세요 eric입니다 ~
부팅에서 자동 시작 서비스를 설정하세요
systemctl status php-fpm.service
프로젝트 프레임워크가 lavarel인 경우 다음 구성 파일을 사용할 수 있습니다.
systemctl enable php-fpm.service systemctl enable nginx.service
위 내용은 centos7.3 시스템에서 php7.0을 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!