Discuz! 是全球成熟度最高、覆盖率最大的论坛软件系统之一。
自 2001 年 6 月面世以来,Discuz! 已拥有 15 年以上的应用历史和 200 多万网站用户案例。
目前,Discuz! 已经发展成为一个以社区为基础的专业建站平台,让论坛(BBS)、社交网络(SNS)、门户(Portal)、群组(Group)、开放平台(Open Platform)应用充分融合于一体,帮助网站实现一站式服务。
官网:http://www.discuz.net/forum.php
官方gitee:https://gitee.com/ComsenzDiscuz/DiscuzX
安装包下载:http://www.discuz.net/thread-3570835-1-1.html
操作系统:CentOS7.2 Minimal
IP:192.168.1.105
Discuz!版本:X3.4
# setenforce 0
# sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/selinux/config
# systemctl stop firewalld
# systemctl disable firewalld
# yum -y install git
# yum -y install mariadb mariadb-server
# yum -y install httpd
# yum -y install php php-mysql
# yum -y install gd php-gd gd-devel php-xml php-common php-mbstring php-ldap php-pear php-xmlrpc php-imap
# git clone https://gitee.com/ComsenzDiscuz/DiscuzX.git
# systemctl start mariadb httpd
# systemctl enable mariadb httpd
# mysql_secure_installation
设置mariadb的root密码:Discuz@123
创建# Discuz库和用户,授权
# mysql -u root -p"Discuz@123"
> create database discuz;
> grant all on discuz.* to 'discuz'@'localhost' identified by 'Discuz@123';
> flush privileges;
# vim /var/www/html/test1.php
# vim /var/www/html/test2.php
测试访问:http://192.168.1.105/test1.php
测试访问:http://192.168.1.105/test2.php
http://www.w3school.com.cn/php/func_mysql_connect.asp
https://dev.mysql.com/doc/apis-php/en/apis-php-function.mysql-connect.html
# cp -rf DiscuzX/upload/ /var/www/html/bbs
# chown -R apache:apache /var/www/html/bbs
# systemctl restart httpd
web访问:http://192.168.1.105/bbs/install/
数据库名: mariadb中创建的数据库discuz
数据库用户名: mariadb中被授权的用户discuz
数据库密码: mariadb中被授权的用户discuz登录数据库discuz的密码Discuz@123
管理员账号: admin
管理员密码: 自定义后台管理员密码
安装完成后,我们应该将install目录转移,并限制访问权限
# cd /var/www/html/bbs
# mv install/ install.lock
# chmod 600 install.lock/
http://www.w3school.com.cn/php/func_mysql_connect.asp
https://dev.mysql.com/doc/apis-php/en/apis-php-function.mysql-connect.html