1.防火墙开启 8000 端口
2.创建文件夹, 文件
mkdir test
cd test
touch a.txt
3.后台启动服务
nohup python -u -mSimpleHTTPServer > download.log 2>&1 &
4.下载地址
http://xxx.xxx.xxx.xxx:8000/
5.关闭服务
ps -ef|grep python # 查看进程
kill -9 进程序号
标签:HTTP,python,xxx,Linux,test,8000,搭建
From: https://www.cnblogs.com/asmer/p/16731978.html