搭建LAMP环境

LAMP = linux + apache + mysql + php

1.Linux安装:选择CentOs(直接选择阿里云的ESC服务器)

2.apache服务安装
(1)执行如下命令,安装Apache服务及其扩展包。
yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql
(2)启动服务
systemctl start httpd.service
(3)测试服务是否安装成功:访问自己的公网IP

3.安装mysql数据库
(1)下载安装数据库
wget http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql57-community-release-el7-10.noarch.rpm
yum -y install mysql-community-server
(2)启动数据库
systemctl start mysqld.service
(3)查看初始密码
grep “password” /var/log/mysqld.log
(4)登录数据库
mysql -uroot -p初始密码
(5)修改密码
alter user ‘root’@‘localhost’ identifine by ‘newpassword.’;
(6)创建workpress库
create database wordpress;
(7)看是否创建成功
show databases;

4.安装PHP
(1)安装PHP环境
yum -y install php php-mysql gd php-gd gd-devel php-xml php-common php-mbstring php-ldap php-pear php-xmlrpc php-imap
(2)重启Apache服务
systemctl restart httpd
(3)检测安装是否成功
访问http://公网IP/phpinfo.php,显示PHP语言环境表示安装成功。

你可能感兴趣的:(搭建LAMP环境)