Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does sonarqube 5.1 support ARM?

I'm trying to install sonarqube in a Synology Diskstation DS112j with an ARM Processor.

In sonarqube-5.1/bin folder there's only batch files for linux-x86-32/64 bits so I can't start sonarqube due to this error

/var/services/sonarqube-5.1/bin/linux-x86-32/./wrapper: line 1: syntax error: unexpected "("
Failed to start SonarQube.

Is there any sonar.sh for ARM or any workaround to install sonarqube in an ARM diskstation?

like image 778
Rotten Avatar asked Mar 18 '26 20:03

Rotten


1 Answers

SonarQube does not officialy support ARM processors, that's why there's no sonar.sh script for ARM.

What's more, I know some guys tried to make it work, but they failed.

  • Thread 1
  • Thread 2

Still, you can try again and write a simple script so start SQ:

#! /bin/sh
java -jar lib/sonar-application-5.1.jar 

Just put this script in the SQ intallation root directory, run it, et voilà!

(if SonarQube starts but has other errors, please open another question)

like image 158
Fabrice - SonarSource Team Avatar answered Mar 21 '26 13:03

Fabrice - SonarSource Team