PHP 服务器 安装分两种 一种YUM 安装  一种编译安装 。
(由于linux机制,每个文件夹都有他指定的含义,不可随意使用编译安装需要了解,文件夹分类信息,YUM 安装则不需要去考虑,
因为他已经帮你固定安装好了目录,这就是网上为什么 推荐yum的原因) 

一、yum安装php
1、mkdir /usr/local/php
2、cd /usr/local/php
3、下载yum源的更新安装包

centOS 6.x
wget https://dl.fedoraproject.org/pub/epel/epelrelease-latest-6.noarch.rpm
wget https://mirror.webtatic.com/yum/el6/latest.rpm

centOS 7.x
wget https://dl.fedoraproject.org/pub/epel/epelrelease-latest-7.noarch.rpm
wget https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

4、安装相关yum源安装包这里以centOS 7.x的为例)
rpm -Uvh epelrelease-latest-7.noarch.rpm
rpm -Uvh webtatic-release.rpm

5、查看该源对应的php安装包命令(以PHP 为例)
yum listenablerepo=webtatic | grep php

6、查找php 5.6版本安装包
yum search php56w 

7、安装Apache
yum install httpd httpddevel 

8、关闭firewalld防火墙
systemctl stop firewalld.service 
systemctl disable firewalld.service 
systemctl status firewalld
 
9、启动apache
/bin/systemctl start httpd.service

此时用浏览器访问服务器IP地址  应该是Testing 123文件页面

10、安装mysql这里因为之前使用tar包安装了mysql,所以不安装】

11、启动mysql
systetcl start mysql

***如果启动mysql报错
Failed to start mysql.service: Unit mysql.service failed to load: No such file or directory.
或者
Failed to start mysqld.service: Unit not found

则需要安装mariadbserver启动添加到开机自启动
yum install -y mariadbserver
systemctl start mariadb.service
systemctl enable mariadb.service

12、安装PHP
yum install php56w

13、重启apache使php生效
/bin/systemctl restart httpd.service

14、查看PHP的版本
php –v

15、php的简单使用
进入目录/var/www/html
vi index.php(必须是index.php【主页】才会在浏览器显示)
内容如下:
<!DOCTYPE html&gt;
<html&gt;
<body&gt;

<?php
echo “Hello World!”;
?&gt;

</body&gt;
</html&gt;

原文地址:https://blog.csdn.net/hjxloveqsx/article/details/126849581

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_7169.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注