綁定的地址我已經下面增加一個maven-碼頭插件到我的POM:Maven的碼頭 - 插件無法在linux下
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.16</version>
<configuration>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<host>${jetty.host}</host>
<port>${jetty.port}</port>
<maxIdleTime>30000</maxIdleTime>
</connector>
</connectors>
<scanIntervalSeconds>10</scanIntervalSeconds>
<stopPort>${jetty.stop.port}</stopPort>
<stopKey>STOP</stopKey>
<contextPath>${jetty.contextpath}</contextPath>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>stop</goal>
<goal>run</goal>
</goals>
<configuration>
<scanIntervalSeconds>0</scanIntervalSeconds>
<daemon>true</daemon>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
這工作正常的Windows 7下,但如果我嘗試下執行它Linux(SuSE)它總是失敗,並且地址已被使用。
我試了localhost和127.0.0.1作爲jetty.host和一些數字作爲端口。 我檢查了linux系統上的端口,它們都沒有被其他服務使用。
我在兩個系統上都使用maven 3.0.3和JDK 1.6_29。
任何想法?
用戶權限可能?另外,你使用的端口號是什麼?我知道Linux保留了前1000個端口,但我猜你可能已經使用了8080,8180之類的東西。 – lucas1000001 2012-01-06 16:53:23
我用sudo運行,所以權限應該沒有問題?我測試了3333,3344,8888,8080,8181,8282,9080等端口,效果都一樣。 – cpater 2012-01-06 20:26:15
權限不是問題,因爲端口大於1000 – 2012-01-09 08:33:38