本教程介绍如何手动在Centos系统上搭建LAMP环境,LAMP分别代表Linux、Apache、MySQL和PHP。
一、准备编译环境
1、临时关闭防火墙
systemctl stop firewalld
2、永久关闭防火墙开机自启
systemctl disable firewalld
3、临时关闭SELinux
setenforce 0
4、永久关闭SELinux
sed -i 's/enforcing/disabled/' /etc/selinux/config
二、安装Apache
1、运行以下命令安装Apache服务及扩展包
yum -y install httpd httpd-manual mod_ssl mod_perl mod_auth_mysql
2、运行httpd -v命令可查看Apache的版本号
3、依次运行以下命令启动Apache服务并设置服务开机自启动
systemctl start httpd systemctl enable httpd
4、查看安装结果
三、安装并配置MySQL
1、运行以下命令更新YUM源
rpm -Uvh http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
2、运行以下命令安装MySQL
yum -y install mysql-community-server
3、运行以下命令查看MySQL版本号
mysql -V
4、运行以下命令启动MySQL
systemctl start mysqld
5、运行以下命令设置开机启动MySQL
systemctl enable mysqld systemctl daemon-reload
6、运行以下命令查看/var/log/mysqld.log文件,获取并记录root用户的初始密码。
grep 'temporary password' /var/log/mysqld.log
7、运行以下命令配置MySQL的安全性
mysql_secure_installation 重置root账号密码。 Enter password for user root: #输入上一步获取的root用户初始密码 The 'validate_password' plugin is installed on the server. The subsequent steps will run with the existing configuration of the plugin. Using existing password for root. Estimated strength of the password: 100 Change the password for root ? (Press y|Y for Yes, any other key for No) : Y #是否更改root用户密码,输入Y New password: #输入新密码,长度为8至30个字符,必须同时包含大小写英文字母、数字和特殊符号。特殊符号可以是()` ~!@#$%^&*-+=|{}[]:;‘<>,.?/ Re-enter new password: #再次输入新密码 Estimated strength of the password: 100 Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y 输入Y删除匿名用户账号。 By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y #是否删除匿名用户,输入Y Success. 输入Y禁止root账号远程登录。 Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y #禁止root远程登录,输入Y Success. 输入Y删除test库以及对test库的访问权限。 Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y #是否删除test库和对它的访问权限,输入Y - Dropping test database... Success. 输入Y重新加载授权表。 Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y #是否重新加载授权表,输入Y Success. All done!
四、安装PHP
1、运行以下命令添加epel源
yum install \ https://repo.ius.io/ius-release-el7.rpm \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
2、运行以下命令添加Webtatic源
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
3、运行以下命令安装PHP
yum -y install php70w-devel php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-pdo.x86_64 php70w-mysqlnd php70w-fpm php70w-opcache php70w-pecl-redis php70w-pecl-mongodb
4、运行以下命令查看PHP版本。
php -v
5、运行以下命令,在Apache网站根目录创建测试文件
echo "" > /var/www/html/phpinfo.php
6、运行以下命令重启Apache服务
systemctl restart httpd
7、在本地机器的浏览器地址栏中,输入http://实例公网IP/phpinfo.php
五、安装phpMyAdmin
phpMyAdmin是一个MySQL数据库管理工具,通过Web接口管理数据库方便快捷。
1、运行以下命令准备phpMyAdmin数据存放目录
mkdir -p /var/www/html/phpmyadmin
2、运行以下命令下载phpMyAdmin压缩包并解压
cd /opt wget https://files.phpmyadmin.net/phpMyAdmin/4.0.10.20/phpMyAdmin-4.0.10.20-all-languages.zip
3、解压phpMyAdmin压缩包
yum install -y unzip unzip phpMyAdmin-4.0.10.20-all-languages.zip
4、运行以下命令复制phpMyAdmin文件到准备好的数据存放目录
mv phpMyAdmin-4.0.10.20-all-languages/* /var/www/html/phpmyadmin
5、在本地机器浏览器地址栏,输入http://实例公网 IP/phpmyadmin并按Enter键,访问phpMyAdmin登录页面。
6、输入MySQL的用户名和密码,单击执行
7、如果出现以下页面,说明MySQL连接成功
暂无评论内容