一:安装Apache
1、查看是否安装过Apache:rpm -qa | grep httpd
2、有就卸载httpd:yum remove -y "httpd*"
3、重新安装httpd:yum install -y httpd
4、查看启动状态:systemctl status httpd
5、启动httpd:systemctl start httpd
6、添加开机启动:systemctl enable httpd
7、设置防火墙tcp80端口:
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --reload
firewall-cmd --query-port=80/tcp
8、使用浏览器访问192.168.132.137
9、默认网站主页位于默认目录/var/www/html/中。若要发布自己的网站内容,替换index.html主内
容即可。例:主页内写入内容 “This is a apache test.” ,使用浏览器访问http://192.168.132.137,显示如下界面内容:“This is a apache test.”
二、安装mysql数据库
1、查看是否安装过mariadb:rpm -qa | grep mariadb
2、有就卸载:yum remove -y "mariadb*"
3、重新安装mariadb-server:yum install -y mariadb-server
4、启动mariadb:systemctl start mariadb.service
5、查看启动状态:systemctl status mariadb
6、添加开机启动:systemctl enable mariadb
7、设置mysql数据库root账号密码:mysqladmin -uroot password 'yourpassword'
或者:mysql_secure_installation
8、root账号登录mysql:mysql -uroot -p
9、退出mysql数据库。
MariaDB[(none)]> quit;
或者:MariaDB[(none)]> exit;
10、设置防火墙开放tcp3306端口。
firewall-cmd --zone=public --add-port=3306/tcp --permanent
firewall-cmd --reload
firewall-cmd --query-port=3306/tcp
查看端口:
三、安装PHP
1、查看是否安装过PHP:rpm -qa | grep php
2、有就卸载:yum remove -y "php*"
3、重新安装PHP:yum install -y php
4、创建文件/var/www/html/index.php,写入内容 “<?php phpinfo(); ?>” 。使用浏览器访问http://192.168.132.137/index.php,如果显示如下图,则说明php安装成功。
5、重启apache服务,使用浏览器访问http://192.168.132.137/index.php,如果显示如下图,则说明php安装成功。
systemctl restart httpd
二、安装配置Discuz论坛
1、下载 Discuz! X3.2官方版到服务器。
wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_UTF8.zip
2、解压 Discuz! X3.2软件包。
unzip Discuz_X3.2_SC_UTF8.zip
3、解压缩得到如下三个文件:
upload 这个目录下面的所有文件是我们需要上传到服务器上的可用程序文件;
readme 目录为产品介绍、授权、安装、升级、转换以及版本更新日志说明;
utility 目录为论坛附带工具,包括升级程序。
4、将upload这个目录下的所有文件上传到 /var/www/html/目录。
cp -r /root/upload/* /var/www/html/
5、在浏览器中输入网址http://192.168.132.137/install (LAMP服务器IP:192.168.132.137)。
阅读授权协议后点击“我同意”,系统会自动检查环境,如下图所示。
6、修正目录文件权限检查,关闭selinux即可。如下命令可临时关闭seLinux。
setenforce 0
7、永久关闭selinux 需编辑配置文件/etc/selinux/config,设置SELINUX=disabled,重启系统后生效。
vi /etc/selinux/config
8、刷新网页,目录文件权限检查正常。