LAMP搭建论坛、博客平台

文章目录

  • 什么是LAMP
  • 搭建论坛
  • 搭建博客

什么是LAMP

LAMP 是指Linux(操作系统)+ Apache (HTTP 服务器)+ MySQL/MariaDB(数据库)和 PHP(网络编程语言),一般用来建立 web 应用平台。

搭建论坛

1、首先确保你的linux能连上外网

ping www.qq.com

2、安装http服务软件,并启动服务

 yum install  httpd  httpd-devel  httpd-tools  -y

开机自启:systemctl  enable  httpd

启动服务: systemctl  start  httpd

3、安装MariaDB以及启动服务

yum install  mariadb mariadb-devel  mariadb-server  -y

开机自启:systemctl  enable  mariadb 

启动服务: systemctl  start  mariadb 

4、安装php支持

yum install php  php-mysql  php-devel  -y

5、由于是测试环境 所以直接关闭防火墙和selLinux

停止firewall:systemctl stop firewalld.service
禁止firewall开机启动:systemctl disable firewalld.service 


关闭SELinux:
①临时关闭:
##设置SELinux 成为permissive模式
##setenforce 1 设置SELinux 成为enforcing模式
setenforce 0

②永久关闭:
vi /etc/selinux/config
将SELINUX=enforcing改为SELINUX=disabled
设置后需要重启才能生效

6、创建数据库及用户权限

[root@dhcp ~]# mysql  -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 2
Server version: 5.5.60-MariaDB MariaDB Server

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| auth               |
| mysql              |
| performance_schema |
| test               |
| zabbix             |
+--------------------+
6 rows in set (0.02 sec)

MariaDB [(none)]> create  database  bbs charset=utf8;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant  all   on  bbs.*   to   bbs@'localhost'   identified by  'bbs123';
Query OK, 0 rows affected (0.02 sec)

MariaDB [(none)]>


7、测试apache网站目录位置

vi  /var/www/html/test.php



<?php
phpinfo();
?>

=======
systemctl   restart  httpd

客户端IE打开测试网页http://ip/test.php
LAMP搭建论坛、博客平台_第1张图片

8、将WIN的Discuz_X3.2_SC_UTF8.zip传输到Linux,并且解压移动到/var/www/html/bbs

[root@dhcp ~]# unzip  Discuz_X3.2_SC_UTF8.zip   -d  /tmp
解决目录移至/var/www/html/bbs
[root@dhcp ~]# mv  /tmp/upload      /var/www/html/bbs
[root@dhcp ~]# cd  /var/www/html/bbs
[root@dhcp bbs]# ls  -l   
设置目录访问的权限
 [root@dhcp bbs]# chmod -R  757 {config/,data/,uc_client/,uc_server/}

9、进入到安装页面,完成安装http://ip/bbs

搭建博客

1、服务上面已经准备好了

2、将压缩包传到LINUX/tmp并且解压缩到/var/www/html/blog


[在/tmp下执行]
tar xf   wordpress-4.9.4-zh_CN.tar.gz   -C   /usr/src

mv    /usr/src/wordpress     /var/www/html/blog

3、 创建一个数据库用来搭建blog,并且将该数据库权限赋予给用户blog
LAMP搭建论坛、博客平台_第2张图片
4、进入安装页面http://ip/blog

5、 因为系统存在了一个空的wp-config.php,导致安装系统不能创建该文件,所以先删除该文件然后再进入到安装页面将里面的内容复制到新的wp-config.php中,即可开始安装。
LAMP搭建论坛、博客平台_第3张图片
在这里插入图片描述

6、完成
LAMP搭建论坛、博客平台_第4张图片

你可能感兴趣的:(Linux)