Linux 查看进程占用端口命令 netstat -tlnp|grep port
转载自:http://4ujava.iteye.com/blog/548153
Linux 查看进程占用端口命令 netstat -tlnp|grep port
文章分类:数据库 关键字: netstatnetstat -tlnp|grep port
1.一进程确定占用某一tcp端口,如下命令可以杀掉该进程。
kill-9$(netstat-tlnp|grep1099|awk'{print$7}'|awk-F'/''{print$1}')
其中1099为端口号。注意:
得写出完整端口号,否则易错杀其他进程。7是进程信息所处的列号,不同Linux可能不同,需要调整。
2.两应用程序service1和service2,service2依赖service1,即得等service1启动后才能启动,若service1应用占用一确定的tcp端口,如下脚本可实现该操作:
echo"service1start..."
./service1.sh
netstat-tlnp|grep2098
until["$?"-eq"0"]
do
echo"waitingservice1tostartup..."
sleep1
netstat-tlnp|grep2098
done
echo"service1started."
./service2.sh
echo"service2started."
其中2098为service1占用的tcp端口。
相关推荐
leodengzx 2020-04-16
chenchuang 2020-01-25
kyssfanhui 2020-11-16
LUOPING0 2019-12-24
wpeng 2012-11-08
secondid 2020-06-12
Attend 2020-04-08
cuixingwudi 2020-02-01
citic 2020-01-31
alfredkao 2013-06-25
周海汉的开发 2013-06-24
wpeng 2013-07-18
onlykg 2019-12-10