环境配置,项目运行 ------ TinyWebServer
一、前言
上一期已经介绍过这个项目的基本结构,不懂得可以点开主页查找。
写代码前。一般的步骤就是,先把别人的代码下载下来运行。一、一方面看看最终效果是否是自己想要的,二、掌握项目的大致概要。
TinyWebServer ------ GitHub
二、环境配置
- Linux(作者用的是Ubuntu 22.04 LST)
- 数据库(作者用的Mysql)
- 创建基本表
Ⅰ、Linux
这里就不带大家安装了,一方面网上教程很多。二来估计都写项目了,也应该都会玩Linux了。
Ⅱ、数据库
1、数据库安装
bash
# 安装mysql
sudo apt upgrade && sudo apt install mysql-server mysql-client libmysqlclient-dev
# 进入mysql
sudo mysql -u root
# 创建用户------这里根据自己所需配置
create user 'starry'@'%' identified by 'root';
# 给新用户符全部权限
grant all on *.* to 'starry'@'%';
# 退出mysql
exit
# 设置mysql远程连接
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
# 改成
bind-address = 0.0.0.0
# 重启mysql服务
sudo service mysql restart
1、表的创建
bash
# 进入mysql
sudo mysql -u root
# 创建数据库qgydb
create database qgydb;
# 使用数据库qgydb
use qgydb;
# 创建user表
USE yourdb;
CREATE TABLE user(
username char(50) NULL,
passwd char(50) NULL
)ENGINE=InnoDB;
# 添加数据
INSERT INTO user(username, passwd) VALUES('name', 'passwd');
三、下载代码,编译运行
Ⅰ、下载到本地
1、点击这里复制下载连接
2、使用git 克隆的本地
bash
# 没有git的使用下面命令(有git忽略此步骤)
sudo apt install git -y
# 执行下面的命令吧项目克隆到本地
git clone https://github.com/qinguoyi/TinyWebServer.git
3、进入项目,修改main.cpp文件配置,执行make
bash
cd TinyWebServer
vi main.cpp
make
4、运行可执行文件,访问项目
bash
# 运行
./server
# 打开浏览器,访问
http://127.0.0.1:9006/
三、下期预告
解析lock的编写与解析
四、最后
求赞!