设置django在linux后台运行&查看端口使用

时间:2022-01-18 17:26:21

1.后台运行(&),允许所有用户(0.0.0.0)访问,端口为8888

nohup python manage.py runserver 0.0.0.0 8888 &

 

2.由端口号8888查看进程id

netstat -anp |grep 8888

 

3.由进程id查看程序启动状态

lsof -p 进程id