当前位置:   article > 正文

red hat Linux搭建LAMP平台_redhat linux安装lamp

redhat linux安装lamp

Linux系统、Apache、Mysql、PHP

安装配置前确保已有开发环境软件包

[root@localhost ~]# yum -y install pcre-devel zlib-devel links
  • 1

关闭selinux 和 iptables

[root@localhost ~]# vi /etc/selinux/config  # 修改配置文件,关闭selinux功能
SELINUX=disabled    # 设定为disabled
#SELINUXTYPE=targeted  # 注释该项,行首添加#
[root@localhost ~]# systemctl stop firewalld  #暂时关闭防火墙
[root@localhost ~]# systemctl disable firewalld  #永久关闭防火墙
[root@localhost html]# cd /var/www/html/  #网页存放处
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

首先安装Apache,和相关依赖包ape-*

[root@localhost ~]# yum -y install httpd
[root@localhost ~]# systemctl start httpd  ##开启httpd服务
[root@localhost ~]# ss -tunl | grep 80 ##验证
tcp    LISTEN     0      128                   :::80                   :::*  
[root@localhost ~]# vi /etc/httpd/conf/httpd.conf  ##修改配置文件
[root@localhost html]# yum -y install apr-*
[root@localhost html]# cd /var/www/html/  #网页存放处
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

验证

这个时候打开浏览器如果服务器的外网IP就可以看到apache的测试页面啦
在这里插入图片描述

安装mysql

但是MySQL数据库软件从默认的程序列表中移除,用mariadb代替了,Linux配置教程上,大多都是安装mariadb,因为centos7默认将mariadb视作mysql,所有要按照mysql需要下载
安装前先检查链接库文件有没有安装使用 命令进行核查

[root@local
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/645666
    推荐阅读
    相关标签
      

    闽ICP备14008679号