>  기사  >  백엔드 개발  >  PHP 서버를 설치하는 방법

PHP 서버를 설치하는 방법

王林
王林원래의
2019-10-15 17:55:482330검색

PHP 서버를 설치하는 방법

아파치 설치

yum install httpd

아파치 시작

systemctl start httpd.service

실행 상태 보기

systemctl status httpd.service

테스트 페이지 편집

echo “xingming”>/var/www/html/index.html

브라우저를 열고 공용 IP 주소를 입력하면 결과는 다음과 같습니다.

PHP 서버를 설치하는 방법

#🎜 🎜#MySQL 설치

yum install mariadb-server mariadb
systemctl start mariadb     //运行
systemctl status mariadb    //查看运行状态
# mysql -u root -p      //登录mysql
Enter password: 【输入原来的密码】   //密码默认为空
mysql>usemysql;

비밀번호 변경

mysql> update user setpassword=passworD("test") where user='root';
mysql> flush privileges;
mysql> exit;

php 환경 설치

yum install php php-mysql

아파치 다시 시작

systemctl restart httpd.service

권장 튜토리얼: #🎜🎜 #PHP 비디오 튜토리얼

위 내용은 PHP 서버를 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.