1通过端口查进程 idnetstat -ano | findstr "LISTENING"| findstr ":10000" 2.通过进程查应用(图为百度网盘的子程序) tasklist |findstr "2708" 3.通过进程id杀死进程 taskkill /f /t /im “2708” ...
开启supervisor supervisord -c /etc/supervisord.conf 报错 Error: Another program is already listening on a port that one of our HTTP servers is configured ...
分类:
其他好文 时间:
2019-06-03 17:07:45
阅读次数:
97
supervisor 启动失败报错 Error: Another program is already listening on a port that one of our HTTP servers is configured to use. Shut this program down firs ...
分类:
其他好文 时间:
2019-06-03 14:21:16
阅读次数:
111
vue的history模式实现原理 运行 node index.js html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>history</title> </head> <body> vue-route ...
分类:
其他好文 时间:
2019-05-20 19:30:06
阅读次数:
122
关于 Scoket和Thread 也没什么要说的,网上有很多资料。但是需要注意的是 Scoket和Thread 都需要创建和杀死。不然一定会造成程序假死。好了上代码 服务器: 1 using System; 2 using System.Collections; 3 using System.Col ...
分类:
编程语言 时间:
2019-05-19 11:57:03
阅读次数:
98
1.下载nginx http://nginx.org/en/download.html 2.查看系统80端口占用情况 netstat -ano |findstr "80" 如果是其他软件占了端口号 直接关掉进程就OK TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4 如果端口 ...
./nginx -v 查看nginx版本 ./nginx -V 查看nginx的编译版本及配置的参数 ./nginx -t 主要验证nginx.conf配置文件是否有问题 ./nginx -c 根据配置文件的位置启动nginx 我的本机nginx配置文件路径是 /usr/local/nginx/co ...
分类:
其他好文 时间:
2019-04-14 14:02:34
阅读次数:
132
Linux系统中 Supervisor 配置守护进程: 启动Supervisor 服务语句: 这个过程可能会失败,错误如下: 解决办法: 执行下面语句 这个错误的原因就是supervisor.sock 这个文件会被系统自动删除或者其它原因不存在了,删除软连接就可以了。 supervisor.sock ...
分类:
Web程序 时间:
2019-03-28 15:21:31
阅读次数:
239
netstat:网络状态查看(1).显示网络连接:netstat[--tcp|-t][--udp|-u][--raw|-w][--listening|-l][--all|-a][--numeric|-n][--numeric-hosts][--numeric-ports][--numeric-ports][--extend|-e[--extend|-e]][--timers|-o][--progr
分类:
Web程序 时间:
2019-03-19 23:10:08
阅读次数:
213