CentOS 7搭建LAMP環境

2021-09-19 21:08:09 字數 2799 閱讀 1463

一、檢查環境

1.檢視centos版本

[root@localhost ~]# cat /etc/redhat-release 

centos linux release 7.4.1708 (core)

[root@localhost ~]#

2.檢查是否安裝相關應用
[root@localhost ~]# service httpd status

沒找到httpd.service說明沒有安裝apache

[root@localhost ~]# service mysqld status

redirecting to /bin/systemctl status mysqld.service

unit mysqld.service could not be found.

[root@localhost ~]#

同上,沒有安裝mysql

二、安裝apache

[root@localhost ~]# yum -y install httpd
安裝成功返回如下:

[root@localhost ~]# yum -y install httpd-manual.noarch mod_ssl
安裝成功返回如下:

三、安裝php

[root@localhost ~]# yum -y install php
安裝成功返回如下:

[root@localhost ~]# yum -y install php-fpm
安裝成功返回如下:

安裝成功返回如下:

四、安裝mysql

[root@localhost ~]# yum -y install mysql
安裝成功返回如下:

可以看到centos7安裝mysql時候安裝的是mariadb,這是因為mysql被sun公司收購了,sun公司又被oracle收購了,成功了商業的應用,然後mysql停止開源,所以mysql之父又開發了mariadb資料庫,mariadb資料庫相容了mysql所有的內容,總之就是換了個名字,和之前mysql使用沒有太大區別。

出錯了不要緊,原因上面已經說明了,然後將mysql換成mariadb就好了,下面繼續安裝:

[root@localhost ~]# yum -y install mariadb-server
安裝成功返回如下:

[root@localhost ~]# yum -y install php-mysql
安裝成功返回如下:

[root@localhost ~]# yum -y install mysql-connector-odbc libdbi-dbd-mysql
安裝成功返回如下:

.png

[root@localhost ~]# yum -y install mariadb-devel
.png

centos7用yum搭建LAMP環境

簡言 使用yum安裝php5.6 apache2.4.7 mysql5.6 環境 centos7 httpd v 檢視版本資訊 yum y install epel release 安裝epel release php v 檢視版本資訊 解除安裝mariadb,否則安裝mysql會出現衝突 rpm ...

CentOS 7 配置LAMP環境

yum install httpd啟動apache systemctl start httpd.service訪問 主機位址 測試 參考mariadb資料庫管理系統是mysql的乙個分支,主要由開源社群在維護,採用gpl授權許可。開發這個分支的原因之一是 甲骨文公司收購了mysql後,有將mysql...

Centos 7 安裝LAMP環境

一 安裝centos二 安裝apacheyum install httpd 根據提示,輸入y安裝即可成功安裝 systemctl start httpd.service 啟動apache systemctl stop httpd.service 停止apache systemctl restart ...