1.
netstat –anp | grep 8080/13732
查看8080的端口被哪个进程占用了;也可以查看13732进程占用了哪个端口
2.
netstat –apn
查看所有的进程和端口使用情况
3.
ps -ef | grep tomcat
ps -aux |grep -v grep|grep 28990
根据端口查进程
netstat -ano | findstr 8080
sudo netstat -antup
1.ssh隧道链接118.194.62.172 服务器的2345端口
ssh -p 2345 push@118.194.62.172
把证书导入: keytool -importcert -alias bi_test -file bi_cert.cer -keystore httpclient.keystore -storepass wS@+GfpKrsUS5
lsof -i:6462 查看6462端口有没有被占用
ps -ef | grep 127897
1.拷贝
scp -r 10.31.18.99:/opt/huawei/hicare/files/httpserver /opt/huawei/hicare/files/
2.赋权
chmod -R 777 /opt/huawei/hicare/files/httpserver
3.修改用户和所属
chown push:users fileName.xml
3.抓包(监听8888端口)
tcpdump -s 0 -l -i any -w - port 8888 | strings