Option 2:

XRAY: How to remove the message "JFrog Xray is unavailable. For details, please check Artifactory's log files”

AuthorFullName__c
Marwa Sharif
articleNumber
000005642
FirstPublishedDate
2023-03-21T13:37:57Z
lastModifiedDate
2025-07-28

In Artifactory UI by navigating to the Admin tab | Artifactory | Advanced | Config Descriptor, then search for the <xrayConfig> tag and change "enabled" from "true" to "false" as shown below to resolve the issue of removing the Xray message.

  <xrayConfig>
        <enabled>false</enabled>
        <baseUrl>http://localhost:8046/xray/</baseUrl>
        <user></user>
        <password></password>
        <artifactoryId>default</artifactoryId>
        <xrayId></xrayId>
        <allowDownloadsXrayUnavailable>false</allowDownloadsXrayUnavailable>
        <allowBlockedArtifactsDownload>false</allowBlockedArtifactsDownload>
        <blockUnscannedTimeoutSeconds>60</blockUnscannedTimeoutSeconds>
    </xrayConfig>

For more information, you may refer to this page.