美文网首页
DOS实用命令

DOS实用命令

作者: 小流歌_ | 来源:发表于2019-02-24 17:28 被阅读0次

    windows

    查看进程: netstat -aon

    查看端口进程: netstat -aon|findstr "端口号"

    杀死端口进程: taskkill /pid "端口PID" -t -f

    杀死程序进程: taskkill /f /t /im "程序名.exe"

    查看8080端口: netstat -aon|findstr "8080"

    启动mysql: mysqld

    关闭mysql: taskkill /f /t /im "mysqld.exe"

    env GIT_SSL_NO_VERIFY=true

    linux

    lsof -i:80 查找端口

    ps -aux | grep "程序名" 查看运行程序

    kill -l PID 需要先手工杀死子进程,然后再杀死父进程

    kill -9 [PID] -9 表示强迫进程立即停止

    killall 程序名   killall命令杀死同一进程组内的所有进程

    nohup 程序名 > 程序名.file 2>&1 & 后台运行程序 写入日志 .file 

    grant 权限 on 数据库.表 to 用户 @ 访问方式 identified by 密码   grant all privileges on *.* to root@'%' identified by 'root';

    相关文章

      网友评论

          本文标题:DOS实用命令

          本文链接:https://www.haomeiwen.com/subject/aqjbyqtx.html