找回密码
 开放注册

QQ登录

只需一步,快速开始

微信登录

微信扫码,快速开始

搜索
查看: 2186|回复: 0

CentOS 7 YUM LAMP详细安装教程

[复制链接]

18

主题

0

回帖

61

牛毛

初生牛犊

积分
61
发表于 2016-3-22 09:47:27 | 显示全部楼层 |阅读模式 来自 河南省郑州市
LAMP 就是Linux, Apache httpd,MySQL(MariaDB),PHP, 简写. centos 最新版亦是7.0了, 命令也改变了不少,记忆繁琐,所以有必要记录一下 centos7安装 lamp 的过程.
参考 centos5.5安装 lamp 的方法 ,基本一样, centos7安装只需要修改为 centos7的命令即可.
首先安装 Apache httpd
yum install httpd

设置开机启动 Apache httpd
systemctl enable httpd.service
启动 Apache httpd
systemctl start httpd.service
安装mysql   默认好像已经是MariaDB了 , 那我们就安装MariaDB数据库吧.
CentOS 7 安装MariaDB数据库命令如下:
yum install mariadb-server mariadb
安装好之后启动mariadb ,启动mariadb命令
systemctl start mariadb.service
然后在设置为开机启动mariadb
systemctl enable mariadb.service
如果是CentOS 7以下的系统,请用下面命令设置开机启动
chkconfig –levels 235 mariadb on
和MySQL一样,mariadb安装后密码也是空的,所以我们得设置mariadb数据库密码,命令如下:
mysqladmin -u root password ‘你想设置的密码’
(引号也是密码的一部分,您也可以安装 PHPmyadmin 设置密码. 附:MySQL 登录命令,测试是否密码正确. mysql -uroot -p 然后输密码)
安装php
yum install php

重新启动 Apache httpd
systemctl restart httpd.service

安装 PHP 模块
yum install php-mysql php-gd php-imap php-ldap php-pear php-xml php-xmlrpc php-devel php-mbstring gcc -y
再次重启 Apache httpd
systemctl restart httpd.service
提醒一下:部分 vps 主机默认是防火墙打开状态,请在重启服务器前关闭防火墙,命令如下.
systemctl stop firewalld
systemctl disable firewalld
好了,lamp 安装步骤结束. 默认站点 /var/www/html
想了解更多来帝通科技:http://www.ddv.cn

您需要登录后才可以回帖 登录 | 开放注册

本版积分规则

帮助|Archiver|小黑屋|通信管理局专项备案号:[2008]238号|NB5用户社区 ( 皖ICP备08004151号;皖公网安备34010402700514号 )

GMT+8, 2025-1-9 20:47 , Processed in 0.126979 second(s), 29 queries , Yac On.

Powered by Discuz! X3.5

快速回复 返回顶部 返回列表