2

I am running SonarQube 5.2 and run the analyzes on project with Commandline by SonarRunner
Then get error like this:

10:05:01.645 WARN  - SCM provider autodetection failed. No SCM provider claims t
    o support this project. Please use sonar.scm.provider to define SCM of your proj
    ect.
    10:05:01.650 INFO  - Publish mode
    10:05:01.659 INFO  - -------------  Scan Kuma.HelperLibrary
    10:05:02.535 INFO  - Language is forced to cs
    10:05:02.642 INFO  - Load server rules
    10:05:03.116 INFO  - Load server rules (done) | time=474ms
    10:05:03.613 INFO  - Base dir: c:\Kuma.HelperLibrary
    10:05:03.622 INFO  - Working dir: c:\Kuma.HelperLibrary\.sonar
    10:05:03.638 INFO  - Source paths: src
    10:05:03.640 INFO  - Source encoding: UTF-8, default locale: zh_CN
    10:05:03.643 INFO  - Index files
    10:05:04.526 INFO  - 34 files indexed
    10:05:04.543 INFO  - Quality profile for cs: Sonar way
    10:05:04.715 INFO  - All FxCop rules are disabled, skipping its execution.
    10:05:04.742 INFO  - Sensor Lines Sensor
    10:05:04.834 INFO  - Sensor Lines Sensor (done) | time=92ms
    10:05:04.836 INFO  - Sensor QProfileSensor
    10:05:04.846 INFO  - Sensor QProfileSensor (done) | time=10ms
    10:05:04.848 INFO  - Sensor org.sonar.plugins.csharp.CSharpSensor
    10:05:14.540 INFO  - Sensor org.sonar.plugins.csharp.CSharpSensor (done) | time=
    9692ms
    10:05:14.544 INFO  - Sensor SCM Sensor
    10:05:14.545 INFO  - No SCM system was detected. You can use the 'sonar.scm.prov
    ider' property to explicitly specify it.
    10:05:14.547 INFO  - Sensor SCM Sensor (done) | time=3ms
    10:05:14.548 INFO  - Sensor Code Colorizer Sensor
    10:05:15.452 INFO  - Sensor Code Colorizer Sensor (done) | time=904ms
    10:05:15.464 INFO  - Sensor CPD Sensor
    10:05:15.468 INFO  - DefaultCpdEngine is used for cs
    10:05:19.651 INFO  - Sensor CPD Sensor (done) | time=4188ms
    10:05:21.162 INFO  - Analysis reports generated in 1486ms, dir size=651 KB
    10:05:21.560 INFO  - Analysis reports compressed in 395ms, zip size=195 KB
    INFO: ------------------------------------------------------------------------
    INFO: EXECUTION FAILURE
    INFO: ------------------------------------------------------------------------
    Total time: 29.340s
    Final Memory: 9M/107M
    INFO: ------------------------------------------------------------------------
    ERROR: Error during Sonar runner execution
    ERROR: Unable to execute Sonar
    ERROR: Caused by: Fail to execute request [code=500, url=http://localhost:9000/a
    pi/ce/submit?projectKey=MyI:Kuma.HelperLibrary&projectName=Kuma.HelperLibrary&pr
    ojectBranch=]: <html><body><h1>500 Internal Server Error</h1>If you are the admi
    nistrator of this website, then please read this web application's log file to f
    ind out what went wrong.</body></html>

If I copy the URL to my browser I get the message:

{"errors":[{"msg":"HTTP method POST is required"}]}

If I analyzes whith other SonarQubeServer,Everythings is OK. So I do not know whar went wrong with my server

sagaakuma
  • 23
  • 3
  • Also make sure your SQL Server database (if that's what you use) is configured to be both case sensitive and accent sensitive - failing to do so can cause all kind of strange errors – Dinesh Bolkensteyn Dec 18 '15 at 12:06

1 Answers1

0

You server returned a 500 Internal Server Error so you should go check your server logs to see what went wrong.

(the query in your browser won't work as it's issuing an HTTP GET while sonar-runner is doing an HTTP POST at this URL)

Nicolas B.
  • 7,245
  • 17
  • 29