linux上一些常用的命令

1、时时查看tomcat启动信息,首先切换到tomcat的logs目录下

tail -f catalina.out

2、在tomcat的bin目录下启动无权限,需要赋权

chmod 777 *.sh

3、查看tomcat启动的信息

ps -ef|grep tomcat

4、PID杀死进程

kill -9 pid

5、开放端口

iptables -I INPUT -p tcp --dport 8080 -j ACCEPT

6、查看已开放端口

netstat -nupl (UDP类型的端口)
netstat -ntpl (TCP类型的端口)

上一篇:centos7架设NFS时一个有趣现象


下一篇:one_day_one_linuxCmd---netstat命令