CentOS 7 LAMPアーキテクチャに基づくフォーラムシステムdiscuzの導入


OS:CentOS 7
[root@localhost ~]# cat /etc/redhat-release 
CentOS Linux release 7.7.1908 (Core)

一、基礎環境システムの初期化二、LAMPのインストール
# yum -y install httpd mariadb-server mariadb php php-mysql gd php-gd
# systemctl start httpd mariadb
# systemctl enable httpd mariadb

三、Discuz 1をインストールする.discuz Webサイトのソースコードのインポート
#wget http://download.comsenz.com/DiscuzX/2.5/Discuz_X2.5_SC_UTF8.zip
#mkdir /webdata/discuz
#unzip Discuz_X2.5_SC_UTF8.zip
#cp -rf upload/* /webdata/discuz/
#chown -R apache.apache /webdata/discuz/

2.Apache仮想ホストの構成
#vim /etc/httpd/conf.d/discuz.conf

ServerName www.discuz.com
DocumentRoot /webroot/discuz


Require all granted

#systemctl restart httpd

3.データベースの準備
#mysql
MariaDB [(none)]> create database discuz ;
MariaDB [(none)]> show databases;
| discuz             |

4.discuz[クライアント]のインストール
#vim /etc/hosts
x.x.x.x    www.discuz.com    //x.x.x.x LANP   IP  

ブラウザアクセスは、必要に応じてdiscuzをインストールします.