BBS論壇的搭建準備工做:php
Linux , Discuz_X2_SC_UTF8.zip(提供下載),SecureCRT(可用可不用)html
行動開始:mysql
將redhat上含有Package的disc掛載到/mnt下redis
mount /dev/sr0 /mntsql
強制刪除自己帶有的rhel-source.repo數據庫
rm -rf /etc/yum.repos.d/rhel-source.repoapache
cd /etc/yum.repos.d瀏覽器
在 /etc/yum.repos.d下新建文件服務器
touch source.repo網站
vi source.repo
進入編輯界面
輸入:
[base]
name=base
baseurl=file:///mnt
enabled=1
gpgcheck=0
存盤退出
而後查看vsftpd是否安裝
/etc/init.d/vsftpd restart
若是未安裝
yum install vsftpd
而後重啓vsftpd
/etc/init.d/vsftpd restart
進入ftp
cd /var/ftp/
關閉防火牆
方法1:
/etc/init.d/iptables stop
方法2:
輸入setup,進入圖形化界面,手動關閉防火牆。
採用yum的方式的安裝,yum的配置成本地源。
yum install mysql-server httpd php php-mysql
[root@xian1 html]# /etc/init.d/mysqld start 啓動Mysql數據庫
[root@xian1 html]# mysqladmin -u root password 123456 給mysql數據庫添加一個密碼。
[root@xian1 html]# mysql -uroot -p123456 進入數據庫
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.47 Source distribution
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases; 查看全部數據庫,注意語句要以;號結尾。
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.00 sec)
mysql> create database base; 建立一個新的數據庫,論壇建立的數據庫參考規定的。
Query OK, 1 row affected (0.00 sec)
mysql> show databases; 再次查看數據庫,已經顯示出剛纔新建的數據庫。
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
| ultrax |
+--------------------+
4 rows in set (0.00 sec)
mysql> quit 退出
Bye
接下來啓動apache
[root@xian1 html]# /etc/init.d/httpd start 若是啓動成功,那麼瀏覽器打開輸入http://IP
就能夠看到redhat的頁面,我這裏寫的IP就是你的服務器的IP地址。
注意關閉防火牆 /etc/init.d/iptables stop
apache 的默認網站存放的地址是/var/www/html/ 目錄
rz上傳Discuz_X2_SC_UTF8.zip壓縮文件
將Discuz_X2_SC_UTF8.zip放在該/var/www/html下
而後解包 unzip Discuz_X2_SC_GBK.zip
而後瀏覽器裏面輸入http://IP/upload/install/
若是打不開
一、多是開了代理
二、嘗試下輸入reboot重啓虛擬機(注意重啓後,不要忘了輸入/etc/init.d/mysqld start 和 /etc/init.d/httpd start)
三、注意本身的數據庫名必定要和在/etc/yum.repos.d/source.repo中輸入的一致
根據提示來安裝軟件包。
跳轉提示文件權限有問題,那麼修改。
[root@xian1 html]# cd /var/www/html/upload/
[root@xian1 upload]# chmod 777 /var/www/html/* -R -R意思就是遞歸
再次刷新後,BBS論壇就此搭建成功: