美文网首页
# SonarQube遇到ScannerEngine: You'

# SonarQube遇到ScannerEngine: You'

作者: WMSmile | 来源:发表于2025-05-25 12:34 被阅读0次

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

就可以解决了!

相关文章

网友评论

      本文标题:# SonarQube遇到ScannerEngine: You'

      本文链接:https://www.haomeiwen.com/subject/mspcwjtx.html