Linux discuz论坛搭建

discuz论坛搭建

基于域名的虚拟web主机
网页根目录:/var/www/html
网页首页文件:index.html
访问时url:http://域名:80/index.html

chroot (change directory root )

额外的配置文件:/etc/httpd/conf.d/*.conf

域名1–>网站1
域名2–>网站2

请求–>DNS–>服务器返还内容

1.创建另外一个网站(跟/var/www/html同级)
# mkdir /var/www/virtual
2.创建网站内容:
# vim /var/www/virtual/index.html
3.创建额外的配置文件:
# vim /etc/httpd/conf.d/00-virtual.conf
<VirtualHost *:80>
ServerName www.server.com
DocumentRoot /var/www/virtual

4.只要修改配置文件,就需要重启
# systemctl restart httpd
5.修改本地域名解析文件:
# vim /etc/hosts
Ip地址 域名1 域名2 …

错误解决方式:
1.配置文件写错,导致重启失败:
Job for httpd.service failed because the control process exited with error code. See “systemctl status httpd.service” and “journalctl -xe” for details.

# systemctl status httpd.service

2.配置文件内容写错了,导致结果失败
	/etc/resolv.conf
	/etc/httpd/conf.d/*.conf 
	
	前后域名和根目录是否一致!!!

URL 是否有特殊符号:
无特殊符号:http://www.baidu.com/virtual/
有特殊符号:?

1.搭建支持动态的web网站:LAMP LNMP
LAMP:Linux+apache+mysql+php
LNMP:Lixnu+nginx+mysql+php

LAMP所需安装包:
httpd 、 mysql 、mariadb-server 、php 、php-mysql、php-devel
mysql --> mariadb

# rpm  -qc  包名 
	//列出此软件所有的配置文件

1.安装软件:
# yum -y install mysql mysql-server
php php-mysql php-devel

数据库主配置文件:
	/etc/my.cnf 
数据库数据文件存储位置:
	/var/lib/mysql/
php主配置文件:
	/etc/php.ini 

2.重启服务:
# systemctl restart httpd
# systemctl restart mariadb

3.测试php环境是否可以使用:
# vim /var/www/html/index.php
<?php
phpinfo();
?>

打开浏览器:输入地址:IP地址/index.php 

4.数据库配置:
1.给数据库配置密码:
# mysqladmin -u root password ‘1234’
2.进入数据库:
# mysql -u root -p
Enter passwd :
> create database bbs; //给论坛创建数据库
> grant all on bbs.* to root@localhost
identified by ‘1234’;
> show databases ; //查看所有的库
> use bbs; //进入bbs库
> exit

5.将论坛的配置文件放到网站根目录下,并修改权限:
1.将解压的三个目录传输到/var/www/html目录下
2.增加权限给upload目录:
# chmod -R 777 /var/www/html/upload

6.浏览器打开网址:
Ip地址/upload/intall/index.php

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

尹汇川

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值