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.
Application Delivery Management
Application Modernization & Connectivity
IT Operations Management
CyberRes
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
Thanks for the suggestion.