Just a hunch - RHEL / CentOS is disabled by default in the / tmp directory.
Try:
mount -o remount,exec /tmp
And then (re) run Jenkins.
This allows executables (also .so files to be downloaded) to be executed from the / tmp / directory, which looks like it requires a specific Jenkins package to load some kind of JNI code. When I tried to install and run on CentOS 6.4, this was the only problem I had.
If this works, you can either set it so that it happens by default at startup, using the settings in / etc / fstab (functional, but lowering the security on your system) or trying to crack the installation startup process (not recommended) or install it using Tomcat or other packaging that does not require a file to be executed in the / tmp directory (recommended, but more work).
source share