This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SiteScope 11.40 Uninstall Error

I have SiteScope 11.40 on a Linux server.  When running 'uninstall.sh', it gets an error saying JRE libraries are missing or not compatible...

Any suggestion.

  • Verified Answer

    0  

    Hello

    Try to reinstall the java before running the uninstaller, for example you can use below commands:


    update-alternatives --install /usr/bin/java java /opt/jdk1.8.0_211/bin/java 1

    update-alternatives --install /usr/bin/javac javac /opt/jdk1.8.0_211/bin/javac 1
    update-alternatives --set java /opt/jdk1.8.0_211/bin/java

    update-alternatives --set javac /opt/jdk1.8.0_211/bin/javac

    Regards

    Daniel Rojas

  • 0 in reply to   

    Thanks for the suggestion.