RHEL7搭建Discuz论坛

2023-10-30 18:18
文章标签 搭建 论坛 discuz rhel7

本文主要是介绍RHEL7搭建Discuz论坛,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

RHEL7中配置

  • 关闭防火墙和selinux
[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# setenforce 0
  • 安装php
[root@localhost ~]# yum install php* -y
  • 安装httpd服务
[root@localhost ~]# yum install httpd -y
  • 安装数据库
[root@localhost ~]# yum install mariadb -y   这一步可以省略 系统默认有mysql
[root@localhost ~]# rpm -qa | grep mariadb
mariadb-libs-5.5.44-2.el7.x86_64
mariadb-server-5.5.44-2.el7.x86_64
mariadb-5.5.44-2.el7.x86_64
  • 启动数据库
[root@localhost ~]# systemctl start mariadb
  • 初始化数据库
[root@localhost ~]# mysql_secure_installation 
/usr/bin/mysql_secure_installation:行379: find_mysql_client: 未找到命令NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDBSERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.Enter current password for root (enter for none): (这里回车,设置root密码)
OK, successfully used password, moving on...Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.Set root password? [Y/n] y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..... Success!By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB 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? [Y/n] y... Success!Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] y... Success!By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.Remove test database and access to it? [Y/n] y- Dropping test database...... Success!- Removing privileges on test database...... Success!Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.Reload privilege tables now? [Y/n] y... Success!Cleaning up...All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.Thanks for using MariaDB!
  • 登陆数据库
[root@localhost ~]# mysql -uroot -predhat
  • 创建数据库
    注意命令分号结尾
MariaDB [(none)]> create database luntan;
Query OK, 1 row affected (0.00 sec)
database' at line 1
MariaDB [(none)]> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| luntan             |
| mysql              |
| performance_schema |
+--------------------+
4 rows in set (0.00 sec)
MariaDB [(none)]> exit
Bye
  • 重启两个服务
[root@localhost ~]# systemctl restart mariadb
[root@localhost ~]# systemctl restart httpd
  • 复制并解压论坛源码
[root@localhost test]# cp /test/Discuz_X3.2_SC_UTF8.zip /var/www/html/
[root@localhost test]# cd /var/www/html/
[root@localhost test]# unzip Discuz_X3.2_SC_UTF8.zip 
[root@localhost html]# ll
总用量 12204
-rw-r--r--.  1 root root 12486773 12月  2 20:35 Discuz_X3.2_SC_UTF8.zip
drwxr-xr-x.  2 root root     4096 5月  31 2016 readme
drwxr-xr-x. 12 root root     4096 5月  31 2016 upload
drwxr-xr-x.  4 root root       68 5月  31 2016 utility
  • 配置论坛数据目录
[root@localhost html]# cd upload/
[root@localhost upload]# ll
总用量 92
-rw-r--r--.  1 root root 2739 5月  31 2016 admin.php
drwxr-xr-x. 11 root root 4096 5月  31 2016 api
-rw-r--r--.  1 root root  727 5月  31 2016 api.php
drwxr-xr-x.  2 root root   22 5月  31 2016 archiver
drwxr-xr-x.  2 root root   87 5月  31 2016 config
-rw-r--r--.  1 root root  922 5月  31 2016 connect.php
-rw-r--r--.  1 root root  253 5月  31 2016 cp.php
-rw-r--r--.  1 root root  106 5月  31 2016 crossdomain.xml
drwxr-xr-x. 13 root root 4096 5月  31 2016 data
-rw-r--r--.  1 root root 5558 5月  31 2016 favicon.ico
-rw-r--r--.  1 root root 2242 5月  31 2016 forum.php
-rw-r--r--.  1 root root  821 5月  31 2016 group.php
-rw-r--r--.  1 root root 1290 5月  31 2016 home.php
-rw-r--r--.  1 root root 5669 5月  31 2016 index.php
drwxr-xr-x.  5 root root   60 5月  31 2016 install
-rw-r--r--.  1 root root 1025 5月  31 2016 member.php
-rw-r--r--.  1 root root 2462 5月  31 2016 misc.php
-rw-r--r--.  1 root root 1757 5月  31 2016 plugin.php
-rw-r--r--.  1 root root  988 5月  31 2016 portal.php
-rw-r--r--.  1 root root  582 5月  31 2016 robots.txt
-rw-r--r--.  1 root root 1161 5月  31 2016 search.php
drwxr-xr-x. 10 root root 4096 5月  31 2016 source
drwxr-xr-x.  6 root root   67 5月  31 2016 static
drwxr-xr-x.  3 root root   36 5月  31 2016 template
drwxr-xr-x.  6 root root   86 5月  31 2016 uc_client
drwxr-xr-x. 13 root root 4096 5月  31 2016 uc_server
-rw-r--r--.  1 root root 1682 5月  31 2016 userapp.php
[root@localhost upload]# chmod 777 config/ data/ uc_* -R

通过页面进行访问并安装

  • 论坛安装界面
    http://172.16.40.5/upload/

  • 我同意

在这里插入图片描述

  • 下一步
    在这里插入图片描述

  • 选择全新安装,下一步
    在这里插入图片描述

  • 数据库名改为刚刚设置的luntan
    数据库密码为刚刚设置的数据库的密码
    管理员账号和密码可自行设置
    在这里插入图片描述

  • 安装成功
    在这里插入图片描述

  • 可正常使用论坛
    在这里插入图片描述

这篇关于RHEL7搭建Discuz论坛的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/309736

相关文章

搭建Kafka+zookeeper集群调度

前言 硬件环境 172.18.0.5        kafkazk1        Kafka+zookeeper                Kafka Broker集群 172.18.0.6        kafkazk2        Kafka+zookeeper                Kafka Broker集群 172.18.0.7        kafkazk3

【IPV6从入门到起飞】5-1 IPV6+Home Assistant(搭建基本环境)

【IPV6从入门到起飞】5-1 IPV6+Home Assistant #搭建基本环境 1 背景2 docker下载 hass3 创建容器4 浏览器访问 hass5 手机APP远程访问hass6 更多玩法 1 背景 既然电脑可以IPV6入站,手机流量可以访问IPV6网络的服务,为什么不在电脑搭建Home Assistant(hass),来控制你的设备呢?@智能家居 @万物互联

pico2 开发环境搭建-基于ubuntu

pico2 开发环境搭建-基于ubuntu 安装编译工具链下载sdk 和example编译example 安装编译工具链 sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib 注意cmake的版本,需要在3.17 以上 下载sdk 和ex

JavaFX环境的搭建和一个简单的例子

之前在网上搜了很多与javaFX相关的资料,都说要在Eclepse上要安装sdk插件什么的,反正就是乱七八糟的一大片,最后还是没搞成功,所以我在这里写下我搭建javaFX成功的环境给大家做一个参考吧。希望能帮助到你们! 1.首先要保证你的jdk版本能够支持JavaFX的开发,jdk-7u25版本以上的都能支持,最好安装jdk8吧,因为jdk8对支持JavaFX有新的特性了,比如:3D等;

springboot+maven搭建的项目,集成单元测试

springboot+maven搭建的项目,集成单元测试 1.在pom.xml文件中引入单元测试的依赖包 <!--单元测试依赖--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></depen

CentOS 7 SVN的搭建和使用

https://subversion.apache.org/packages.html#centos 阿里云的ECS貌似已经自带了SVN [root@xxx ~]# svn --versionsvn, version 1.7.14 (r1542130)compiled Aug 23 2017, 20:43:38Copyright (C) 2013 The Apache Software Fo

2021-08-14 react笔记-1 安装、环境搭建、创建项目

1、环境 1、安装nodejs 2.安装react脚手架工具 //  cnpm install -g create-react-app 全局安装 2、创建项目 create-react-app [项目名称] 3、运行项目 npm strat  //cd到项目文件夹    进入这个页面  代表运行成功  4、打包 npm run build

搭建H1veCTF平台

An Easy / Quick / Cheap Integrated Platform H1ve是一款自研CTF平台,同时具备解题、攻防对抗模式。其中,解题赛部分对Web和Pwn题型,支持独立题目容器及动态Flag防作弊。攻防对抗赛部分支持AWD一键部署,并配备炫酷地可视化战况界面。 项目地址:https://github.com/D0g3-Lab/H1ve 更多请打开。。。

day45-测试平台搭建之前端vue学习-基础4

目录 一、生命周期         1.1.概念         1.2.常用的生命周期钩子         1.3.关于销毁Vue实例         1.4.原理​编辑         1.5.代码 二、非单文件组件         2.1.组件         2.2.使用组件的三大步骤         2.3.注意点         2.4.关于VueComponen

Ubuntu下搭建基于apache2的gerrit+gitweb服务器

说明:Ubuntu版本12.04   1. 配置gerrit管理帐号 1 sudo adduser gerrit   增加sudo权限: 1 sudo usermod -a -G sudo gerrit   切换到gerrit账号: 1 sudo su gerrit     2. 安装java 1 2