0

金曜日まで正常に動作したNexusサーバーがあります。Nexusが停止し、再開できないためですが、理由がわかりません。

突堤の問題だと思います。スタックstraceは次のとおりです。

jvm 1    | 2012-08-13 09:31:10 WARN  [er_start_runner] - org.mortbay.log - failed SelectChannelConnector@*:8080
jvm 1    | java.net.SocketException: Unresolved address
jvm 1    |  at sun.nio.ch.Net.translateToSocketException(Net.java:58)
jvm 1    |  at sun.nio.ch.Net.translateException(Net.java:84)
jvm 1    |  at sun.nio.ch.Net.translateException(Net.java:90)
jvm 1    |  at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:61)
jvm 1    |  at org.mortbay.jetty.nio.SelectChannelConnector.open(SelectChannelConnector.java:216)

構成は(jetty.xml)です。

<Configure id="Server" class="org.mortbay.jetty.Server">
    <Call name="addConnector">
        <Arg>
            <New class="org.mortbay.jetty.nio.SelectChannelConnector">
              <Set name="host">${application-host}</Set>
              <Set name="port">${application-port}</Set>
            </New>
        </Arg>
    </Call>

    <Set name="handler">
      <New id="Contexts" class="org.mortbay.jetty.handler.ContextHandlerCollection">
          <!-- The following configuration is REQUIRED, and MUST BE FIRST. 
               It makes the Plexus container available for use in the Nexus webapp. -->
          <Call name="addLifeCycleListener">
              <Arg>
                <New class="org.sonatype.plexus.jetty.custom.InjectExistingPlexusListener" />
              </Arg>
          </Call>

          <!-- The following configuration disables JSP taglib support, the validation of which
               slows down Jetty's startup significantly. -->
          <Call name="addLifeCycleListener">
              <Arg>
                <New class="org.sonatype.plexus.jetty.custom.DisableTagLibsListener" />
              </Arg>
          </Call>
      </New>
    </Set>

    <New id="NexusWebAppContext" class="org.mortbay.jetty.webapp.WebAppContext">
      <Arg><Ref id="Contexts"/></Arg>
      <Arg>${webapp}</Arg>
      <Arg>${webapp-context-path}</Arg>
      <Set name="extractWAR">false</Set>
    </New>

    <Set name="stopAtShutdown">true</Set>
    <Set name="sendServerVersion">true</Set>
    <Set name="sendDateHeader">true</Set>
    <Set name="gracefulShutdown">1000</Set>
</Configure>

およびplexus.properties:

application-port=8081
application-host=0.0.0.0
runtime=${basedir}/runtime
apps=${runtime}/apps
nexus-work=${basedir}/../../data/nexus/sonatype-work/nexus
nexus-app=${runtime}/apps/nexus
webapp=${runtime}/apps/nexus/webapp
webapp-context-path=/nexus
security-xml-file=${nexus-work}/conf/security.xml
application-conf=${nexus-work}/conf
runtime-tmp=${runtime}/tmp

# If this file is present, it will be used to configure Jetty.
jetty.xml=${basedir}/conf/jetty.xml

# Uncomment this to use the debug js files
#index.template.file=templates/index-debug.vm

Nexusのバージョンは1.9.2.3です

理解できません:なぜポート8080でコネクタを開始したいのか(ポート8081のみを設定しているのに)、アドレス*(そしてなぜ0.0.0.0ではないのか)はどういう意味ですか?そしてもちろん、なぜそれはもう始めたくないのですか?

すべてのアイデアをありがとう!

4

3 に答える 3

2

8080と8081の問題についてはコメントできませんが、SocketExceptionについては...

SocketException:未解決のアドレスは通常、システムに存在するある種のhost / dns/resolve構成の問題が原因です。

問題の特定に役立つ可能性のあるJavaの最も基本的なテストケースは次のとおりです。

import java.net.InetAddress;
import java.net.InetSocketAddress;

public class AddrTest
{
    public static void main(String[] args)
    {
        try
        {
            InetAddress addr = InetAddress.getByName("0.0.0.0");
            System.out.println("InetAddress => " + addr);
            System.out.println("InetAddress.isAnyLocalAddress = " + addr.isAnyLocalAddress());
            System.out.println("InetAddress.isLinkLocalAddress = " + addr.isLinkLocalAddress());
            System.out.println("InetAddress.isLoopbackAddress = " + addr.isLoopbackAddress());

            InetSocketAddress isockaddr = new InetSocketAddress(addr,8080);
            System.out.println("InetSocketAddr = " + isockaddr);
            System.out.println("InetSocketAddr.isUnresolved = " + isockaddr.isUnresolved());
        }
        catch (Throwable e)
        {
            e.printStackTrace();
        }
    }
}

これを実行すると、出力が得られるはずです

InetAddress => /0.0.0.0
InetAddress.isAnyLocalAddress = true
InetAddress.isLinkLocalAddress = false
InetAddress.isLoopbackAddress = false
InetSocketAddr = /0.0.0.0:8080
InetSocketAddr.isUnresolved = false

注意すべき重要なのは2行です...

  • InetAddress.isAnyLocalAddress = true-java+OSがこれをANYアドレスとして報告することを意味します
  • InetSocketAddr.isUnresolved = false-java+OSがこのソケットアドレスを解決できたことを意味します

このテスト中に例外が発生した場合は、システムに何らかの基本的なホスト解決の問題があります(dns、dhcp。vpnなど/ hosts、IPv4が利用できないなど)。java、jettyでは何もしません。 、またはnexusは、この種の問題を修正できます。OS /ネットワークレベルでこれに対処する必要があります(しゃれは意図されていません)。

于 2012-08-13T13:39:01.453 に答える
-1

解決しました!

ファイル jetty.xml には「r」権限しかありませんでしたが、これでは十分ではありません。「x」権限も必要です。そのため、Jetty はファイル jetty.xml を読み取ることができず、その場合は '*:8080' でデフォルト コネクタを開始しようとします => * は解決できません (なぜ 0.0.0.0 の代わりに * を使用したのかわかりませんか? ??)

したがって、それは構成の問題でした。

于 2012-08-14T07:29:11.157 に答える