|
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
|
|