SonarQube遇到ScannerEngine: You're not authorized to analyze this project or the project doesn't exist on SonarQube and you're not authorized to create it. Please contact an administrator.
执行
sonar \
-Dsonar.host.url=http://localhost:9000 \
-Dsonar.token=sqp_a77c7e72f57a75a10657a5eebff10a5bc7cd8a47
遇到:*[ERROR] ScannerEngine: You're not authorized to analyze this project or the project doesn't exist on SonarQube and you're not authorized to create it. Please contact an administrator.
[ERROR] Bootstrapper: An error occurred: Error: Scanner engine failed with code 1 报错时
[ERROR] ScannerEngine: You're not authorized to analyze this project or the project doesn't exist on SonarQube and you're not authorized to create it. Please contact an administrator.
[ERROR] Bootstrapper: An error occurred: Error: Scanner engine failed with code 1
解决方案:
生成的token 是项目类型,需要指定项目的key。
sonar \
-Dsonar.projectKey=project-001 \
-Dsonar.projectName=project-001 \
-Dsonar.host.url=http://localhost:9000 \
-Dsonar.token=sqp_a77c7e72f57a75a10657a5eebff10a5bc7cd8a47
就可以解决了!