查找mysql
find / -name mysql
更详细参考http://jingyan.baidu.com/article/335530dab6fe0919ca41c365.html
-----------------------------------------------------------------------------------------------------
Windows下查看进程及结束进程命令
1)查看占用8080端口的进程号
>netstat –aon | findstr “8080”
结果:TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 3500
可知,进程号为3500的进程占用了8080端口
可以使用命令 tasklist | findstr “3500”进一步查看3500进程的具体信息。
> tasklist | findstr “3500”
结果:javaw.exe 3500 Console 0 28,792 K
可知3500进程为javaw.exe。
2)杀掉进程
> tskill 3500
linux下查看端口占用
netstat -tlnp 已经占用
netstat -tnp 临时占用端口
-------------------------------------------------------------------------------------
netstat 命令
https://linux.cn/article-2434-1.html
使用netstat命令查看连接到某个进程的所有ip 假设是mongo
netstat -tnp | grep mongo
可以得到所有连接到此进程的ip
----------------mac中的netstat没有 p选项-----------
lsof命令: lsof -Pn | grep
-----------------------------------------------------------------------------------
linux环境变量
可用 export 命令查看PATH值
[root@localhost u-boot-sh4]# export
单独查看PATH环境变量,可用:
[root@localhost u-boot-sh4]#echo $PATH
添加PATH环境变量,可用:
[root@localhost u-boot-sh4]#export PATH=/opt/STM/STLinux-2.3/devkit/sh4/bin:$PATH
上述方法的PATH 在终端关闭 后就会消失。所以还是建议通过编辑/etc/profile来改PATH,也可以修改.bashrc(即:~/.bashrc)