아파치 설치
yum install httpd
아파치 시작
systemctl start httpd.service
실행 상태 보기
systemctl status httpd.service
테스트 페이지 편집
echo “xingming”>/var/www/html/index.html
브라우저를 열고 공용 IP 주소를 입력하면 결과는 다음과 같습니다.
#🎜 🎜#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 중국어 웹사이트의 기타 관련 기사를 참조하세요!