SoapUI not working on RHEL 8
- 2 months ago
Hi buksm
SoapUI 5.7.2 appears to be encountering compatibility issues when running on (RHEL) 8. The error log indicates a problem with the JavaFX configuration. Here are some options to try
Java Version Compatibility
SoapUI 5.7.2 may not be fully compatible with the default Java version on RHEL 8. Try the following:
- Check your current Java version:
java -version
- If you're using Java 11 or higher, try installing and using Java 8:
sudo yum install java-1.8.0-openjdk
- Set Java 8 as the default:
sudo alternatives --config java
Select the Java 8 option when prompted.
JavaFX Dependencies
The error suggests issues with JavaFX. Ensure you have the necessary JavaFX dependencies installed:
sudo yum install openjfx
Graphics Libraries
SoapUI may require additional graphics libraries. Install the following packages:
sudo yum install libXtst libXrender libXi gtk3
Hope this helps - Happy to help further!!
Thank you very much and have a great one!
Warm regards