linux学习笔记25-搭建discaz(一)

搭建discaz(一)

1、下载discuz

mkdir /data/www

cd /data/www

wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip

unzip Discuz_X3.2_SC_GBK.zip

mv upload/* .    //把upload文件夹里的文件移动至当前目录
linux学习笔记25-搭建discaz(一)_第1张图片

linux学习笔记25-搭建discaz(一)_第2张图片

2、配置第一个虚拟主机

 vi /usr/local/apache2/conf/httpd.conf

找到Virtual hosts下的虚拟主机配置,去掉#

 linux学习笔记25-搭建discaz(一)_第3张图片

编辑配置文件 conf/extra/httpd-vhosts.conf ,加入如下配置:



    DocumentRoot “/data/www”

    ServerName www.1.com

    ServerAlias www.2.com


修改前后对比如下:

 linux学习笔记25-搭建discaz(一)_第4张图片

 linux学习笔记25-搭建discaz(一)_第5张图片

此时,无法直接访问域名,还需要修改hosts,添加本地域名解析,windows就可以正常ping通虚拟主机了:

 linux学习笔记25-搭建discaz(一)_第6张图片

此时使用浏览器访问www.1.com,会提示http403禁止访问,修改访问www.1.com/index.php,还是提示同样的403错误:

 linux学习笔记25-搭建discaz(一)_第7张图片

再次编辑/usr/local/apache2/conf/httpd.conf,把Deny from all改为Allow from all

 linux学习笔记25-搭建discaz(一)_第8张图片

同时定位位这一项,将DirectoryIndex index.html改成DirectoryIndex index.html index.php

 linux学习笔记25-搭建discaz(一)_第9张图片

再次访问www.1.com/index.php,出现安装界面:

 linux学习笔记25-搭建discaz(一)_第10张图片

点击同意后:

 linux学习笔记25-搭建discaz(一)_第11张图片

config等目录进行授权:

chown -R daemon:daemon config data uc_server/data/ uc_client/data

授权后,刷新网页:

 linux学习笔记25-搭建discaz(一)_第12张图片

下一步是UCenter Server安装:

 linux学习笔记25-搭建discaz(一)_第13张图片

下一步是配置数据库信息:

  linux学习笔记25-搭建discaz(一)_第14张图片

 /usr/local/mysql/bin/mysqladmin  -uroot password '123456' // 设置mysql密码

mysql -uroot -p123456  //进入mysql
linux学习笔记25-搭建discaz(一)_第15张图片

 

 create database wei;grant all on wei.* to 'wei'@'localhost' identified by '123456';  //创建数据库、用户名、密码,填入信息:
linux学习笔记25-搭建discaz(一)_第16张图片

 

配置完成,可以访问了:

 linux学习笔记25-搭建discaz(一)_第17张图片

 linux学习笔记25-搭建discaz(一)_第18张图片

你可能感兴趣的:(linux笔记备存)