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.
Cybersecurity
DevOps Cloud
IT Operations Cloud
If an answer to your question is correct, click on "Verify Answer" under the "More" button. The answer will now appear with a checkmark. Please be sure to always mark answers that resolve your issue as verified. Your fellow Community members will appreciate it!  Learn more
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