启动Jenkins发现端口被占用默认端口8080

Jenkins默认端口为8080端口

在启动时报错

七月 05, 2015 3:58:52 下午 org.eclipse.jetty.util.log.JavaUtilLog warn
警告: FAILED [email protected]:8080: java.net.BindException: 地址已在使用
java.net.BindException: 地址已在使用

我们查看端口,并杀死进程即可


netstat -apn | grep 8080

找到之后在最后一栏有pid

直接kill -9 pid即可

再次运行 netstat -apn | grep 8080没有输出说明进程已经被干掉了。然后就可以启动了

你可能感兴趣的:(Linux,配置管理)