问题 Mail服务器在安装TFS服务(含SQLServer2016)后启动不了网页服务. 排查问题 使用命令查看端口占用情况 netstat -nao | find ":80" netstat -b 使用GUI 工具查看 问题解决 将IIS的绑定修改不再绑定80端口 将SQLServer ReportService从80端口改到8081,8082等 参考 Stop http.sys from listening on port 80 in Windows Port 80
2016-03-09T07:51:38.905444Z 0 [ERROR] /usr/sbin/mysqld: Can't create/write to file '/var/run/mysqld/mysqld.pid' (Errcode: 2 - No such file or directory)2016-03-09T07:51:38.905481Z 0 [ERROR] Can't start server: can't create PID file: No such file or d
/etc/init.d/mysql status提示ERROR! MySQL is running but PID file could not be found先打印MYSQL进程ps aux | grep mysql然后KILL进程kill -9 pid1 pid2 …再启动MYSQL/etc/init.d/mysql start再检查mysql运行状态/etc/init.d/mysql status
我的个人博客网站最近被攻击了,被用来发送一些垃圾邮件.但是我不知道这个进程是怎么来的,用top查看发现一个不知道干什么的perl脚本,决定给用strace查看一下. strace可以追踪一个进程的系统调用通过pid,像: strace -vvtf -p 但是这个perl脚本的进程结束的太快了,不能用捕获pid然后strace它. 用下边这个脚本,可以通过进程名称追踪一个未开始的进程: while true; do pid=$(pgrep ); if [[ -n "$pid" ]]; t