开发中常用命令

Windows

  • 查看端口占用的进程号

    netstat -ano|findstr 端口号

  • 根据进程号查询进程名称

    tasklist|findstr 进程号

  • 根据进程名称强制、递归 删除本程序及其子进程

    taskkill -f -t -im 文件名

Linux

Mongodb

  • 启动mongodb

    mongod — dbpath [mongodb数据存储路径]