Linux 系統搭建論壇教程

2021-08-28 19:22:27 字數 2758 閱讀 7874

掛載

[root@csa ~

]# mount /dev/sr0 /mnt

搭建yum環境,( )內為解釋
[root@csa ~

]# vim /etc/yum.repos.d/base.repo

[base](源標識)

name=base(源名稱)

baseurl=file:

///mnt

gpgcheck=

0按下esc輸入:wq

搭建http服務

將windows下的檔案匯入到linux中並解壓

[root@csa ~

]# rz #將windows檔案複製到linux中

[root@csa ~

]# mv discuz_x2.

5_ /

var/www/html

[root@csa ~

]# cd /

var/www/html

[root@csa html]#unzip discuz_x2.

5_

關閉linux系統的防火牆

[root@csa html]#systemctl stop firewalld

[root@csa html]#setenforce 0

重啟http服務

搭建mariadb服務並重啟(預設存在)

[root@csa html]#yum install mariadb mariadb-server -y

[root@csa html]#cp /usr/share/mysql/my-huge.cnf /etc/my.cnf

[root@csa html]#systemctl restart mariadb

[root@csa html]#systemctl enable mariadb

初始化資料庫,並且設定密碼

檢視資料庫:

建立乙個名為luntan的新資料庫

退出mariadb

mariadb [

(none)

]> quit

bye

切換目錄並且修改配置檔案的許可權

[root@csa html]#cd /

var/www/html/upload [root@csa html]#cd /

var/www/html/upload

[root@csa upload]# chmod 777 config/ data/ uc_*-r

(-r表示遞迴修改)

[root@csa upload]# ll

total 92

drwxrwxrwx.

2 root root 87 apr 13

2012 config

drwxrwxrwx.

13 root root 4096 apr 13

2012 data

drwxrwxrwx.

6 root root 86 apr 13

2012 uc_client

drwxrwxrwx.

13 root root 4096 apr 13

2012 uc_server

完成之後,新論壇搭建即完成

創作者eric· charles

flarum論壇系統搭建教程

安裝 php 5.5 and mysql 5.5 and install composer.composer create project flarum flarum stability beta 配置nginx chmod r 775 root chmod r 775 root assets ch...

flarum論壇系統搭建教程

安裝 php 5.5 and mysql 5.5 and install composer.composer create project flarum flarum stability beta 配置nginx chmod r 775 root chmod r 775 root assets ch...

Ubuntu系統搭建Discus論壇

在搭建論壇之前,我們需要ubuntu系統,mysql資料庫,php以及apache的web環境 1 ubuntu 14.04 lts 2 mysql server 3 php5 4 apache2 安裝命令為 sudo apt get install mysql server apache2 php...