2

マシンにソナーをインストールし、サービスを開始しました

また、次のように sonar.properties ファイルを構成しました。

# Listen host/port and context path (for example / or /sonar). Default values are  0.0.0.0:9000/.
#sonar.web.host:                           0.0.0.0
sonar.web.port:                            9300
#sonar.web.context:                        /

しかし、「http://xx.xx.xx.xx:9300/sonar」を使用してアプリケーションにアクセスしようとすると

HTTP ERROR: 503
Problem accessing /. Reason: 

    SERVICE_UNAVAILABLE


--------------------------------------------------------------------------------
Powered by Jetty:// 

また、Apache tomcat の webapps ディレクトリの下に sonar.war ファイルをコピーしました。アプリケーションにアクセスしようとすると、次のエラーが表示されます。

--------------------------------------------------------------------------------   
type     Status report 
message /sonar/ description The requested resource is not available.
-------------------------------------------------------------------------------- 
Apache Tomcat/7.0.30

誰かがこれについて私を助けてください

4

1 に答える 1

1

Web コンテキストで値を指定していないため、「http://xx.xx.xx.xx」ではなく「http://xx.xx.xx.xx:9300」と入力して Sonar にアクセスしてみてください。 :9300/ソナー」

于 2012-09-25T09:22:52.243 に答える