安装 Discuz!

下载 discuz!

[[email protected] ~]# mkdir /data/www
[[email protected] ~]# cd /data/www
[[email protected] www]# wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip
[[email protected] www]# ls
Discuz_X3.2_SC_GBK.zip
[[email protected] www]# unzip Discuz_X3.2_SC_GBK.zip
[[email protected] www]# mv upload/* .

配置第一个虚拟主机

删除 httpd.conf 中的“#Include conf/extra/httpd-vhosts.conf”这行前面的#号

[[email protected] conf]# pwd
/usr/local/apache2/conf
[[email protected] conf]# ls
extra  httpd.conf  httpd.conf.bak  magic  mime.types  original
[[email protected] conf]# vim httpd.conf
# Virtual hosts
Include conf/extra/httpd-vhosts.conf

然后编辑该配置文件

[[email protected] conf]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf

在最后面,加入如下配置:

<VirtualHost *:80>
    DocumentRoot "/data/www"
    ServerName www.123.com
</VirtualHost>

重启 apache 服务

[[email protected] conf]# /usr/local/apache2/bin/apachectl -t
Syntax OK
[[email protected] conf]# /usr/local/apache2/bin/apachectl restart

配置 mysql ,给 Discuz! 增加一个账户

给 mysql root 账户设置密码,然后命令行进入 mysql ,创建新的库,并创建一个新的账号对该库有所有的权限:

[[email protected] ~]# /usr/local/mysql/bin/mysql -uroot
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.31 MySQL Community Server (GPL)
Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql> create database discuz;
Query OK, 1 row affected (0.06 sec)
mysql> grant all on discuz.* to ‘test‘@‘localhost‘ identified by ‘test123‘;
Query OK, 0 rows affected (0.05 sec)
mysql> quit
Bye

这样就创建了一个库discuz,又创建了一个用户 test ,密码是 test123 。

安装 Discuz!

”www.123.com” 这个域名是随便定义的,所以不能直接访问,需要绑定hosts,hosts在windows和linux上都是存在的,可以把一个域名指向到一个 ip 上。windows 下的hosts文件路径是在:C:\windows\system32\drivers\etc\hosts,用记事本打开它,然后增加一行,保存:

192.168.56.128   www.123.com

这里的 192.168.56.128 是我虚拟机的 ip 。

在浏览器输入:

http://www.123.com/install/

根据提示,修改对应目录的权限。

[[email protected] ~]# cd /data/www
[[email protected] www]# chown -R daemon:daemon data uc_server/data uc_client/data config

让这几个目录支持apache运行账号可写,daemon 就是 apache 的运行账号,在 /usr/local/apache2/conf/httpd.conf 中用 User 和 Group 定义的。

数据库名就是上面在mysql创建的数据库。数据库用户名和密码就是上面mysql中创建的用户和密码。管理员密码是discuz内部的。点下一步后,就会看到安装数据库的过程,稍后就弹出“Discuz 应用中心”的界面,不过不需要安装任何应用,直接点右下角“点此访问”,成功安装discuz论坛。

时间: 2024-11-03 21:08:15

安装 Discuz!的相关文章

peak学Linux--基于centos 6.5搭建LAMP并安装Discuz X3.2

实验环境: VMware Workstation 10.0.0 build-1295980 centos 6.5 32位(系统ip:192.168.10.50,与物理机桥接,保证可以上外网) 所需的压缩包及下载地址 mysql-5.1.72-linux-i686-glibc23 http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.72-linux-i686-glibc23.tar.gz php-5.3.28 http://mirrors.sohu.

安装Discuz

(1)下载discuz! [[email protected] ~]# mkdir /data/www [[email protected] ~]# cd /data/www [[email protected] www]# wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip [[email protected] ~]#unzip Discuz_X3.2_SC_GBK.zip [[email protected]

LAMP搭建5:安装discuz

搭建好了LAMP(Linux,Apache,MySQL,PHP)框架后,我们就可以使用了.下面我们使用LAMP搭建一个discuz论坛. 1.在服务器上创建目录/data/www,切换到该目录下,下载discuz最新版安装包: [[email protected] src]# mkdir /data/www [[email protected] src]# cd /data/www [[email protected] www]# ls Discuz_X3.2_SC_GBK.zip 2.解压,生

lamp上安装discuz

[[email protected] ~]# mkdir /data/www  创建一个目录 [[email protected] ~]# cd /data/www     进入目录 [[email protected] www]# wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip 解压 [[email protected] www]# unzip Discuz_X3.2_SC_GBK.zip 程序文件会放于u

lamp安装(centos 64位)安装Discuz!论坛

lamp安装步骤 一.安装Discuz! 1.新建目录来存放网页等 [[email protected] ~]# mkdir /data/www [[email protected] ~]# cd /data/www [[email protected] www]# wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip 2.解压 [[email protected] www]# unzip Discuz_X3.2_

安装Discuz 论坛;

1. 下载discuz!mkdir /data/wwwcd /data/wwwwget wget  http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_GBK.zip unzip Discuz_X3.2_SC_GBK.zipmv upload/*  . 2. 配置第一个虚拟主机删除httpd.conf中的这行前面的警号#Include conf/extra/httpd-vhosts.confvim /usr/local/apache2/c

在centos6系统上基于session绑定实现nat模型的lvs集群,并在RS上安装Discuz论坛

实验环境:四台虚拟机,安装的操作系统是CentOS6.5,各自的功能及IP地址如下: Director: eth0 192.168.2.1(作为VIP使用),eth1:10.0.0.1(作为DIP使用) RS1: eth0:10.0.0.2 RS2: eth0:10.0.0.3 数据库服务器:安装的mariadb eth0:10.0.0.4 拓扑图: 实验步骤: 一准备数据库服务器,安装mariadb,创建一个用于远程连接数据库的用户,创建一个数据库,用于两台RS服务器连接时使用,授权给该用户对

关于本地安装discuz,上传图片sever(IO) error错误

在安装discuz成功后,上传图片时提示server (IO) error错误!!! 1. 查看错误日志error.log,发现如下错误: 09:18:01 [error] 1966#0: *50 open() " /application/nginx-1.6.3//html/bbs/static/js/common_postimg.js"failed (2: No such file or directory) , client: 10.0.0.1, server:bbs.etian

004.测试解析php,安装discuz

一.配置解析php 编辑nginx配置文件/usr/local/nginx/conf/nginx.conf [[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf 我们需要将php的配置行打开,找到这么几行: #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIP

LAMP平台部署及应用(二) 安装Discuz!论坛系统

LAMP平台部署及应用(二) 安装Discuz!论坛系统 具体步骤: n 服务器端的部署 1. 准备工作 首先,应准备一台能够解析PHP网页,支持数据库的网站服务器,其中Apache.PHP.MySQL组件的版本应符合Discuz!系统的最低要求,这里此前源码编译构建的LAMP平台为例,默认首页设置为index.php. 其次,应确定论坛服务器的域名,IP地址以及访问论坛的URL地址.Discuz!论坛支持作为独立的网站运行,如://bbs.benet.com:也可以作为网站的一个目录,如://