LAMP架构部署论坛

搭建论坛,要求为8080端口

安装LAMP 架构所需的服务,部分及插件
yum -y install mariadb mariadb-server mariadb-libs php php-mysql php-gd php-fpm php-cli gd httpd

启动服务:systemctl start httpd mariadb

设置数据库密码:mysqladmin -uroot password “123”
进入数据库:mysql -uroot -p123
创建数据库:create database forum;

配置httpd文件:vim /etc/httpd/conf.d/forum.conf
配置httpd文件:vim /etc/httpd/conf.d/forum.conf

(借鉴者注意,此处有坑) vim /etc/httpd/conf.d/hahaha
( 开始标签,监听本机的80端口)
ServerName www.hahaha.com (域名)
ServerAlias hahaha.com (别名)
DocumentRoot /web/hahaha (指定网站的主目录)
(放的网站的主目录,,指定目录的权限)
Require all granted (允许所有人都访问我)

LAMP架构部署论坛_第1张图片
修改配置文件开放修改的8080端口:vim /etc/httpd/conf/httpd.conf

上传项目包:rz
(如果没有,yum -y install lrasz)
解压项目包:unzip +项目包名称
(如果没有:yum -y install unzip)
创建一个网站发布目录:mkdir -p /web/forum
将解压包拷贝里的内容拷贝进去:
cp -rf utility/* /web/forum/

cp -rf upload/* /web/forum/
LAMP架构部署论坛_第2张图片
重新启动服务 :systemctl restart httpd mariadb
查看状态码:curl -I ip:端口

你可能感兴趣的:(linux,lamp)