On Wed, 2005-06-15 at 19:43 +0000, buzz lightyear wrote: > java.lang.UnsatisfiedLinkError: /usr/jdk1.5.0/jre/lib/i386/libOCFPCSC1.so: > /usr/jdk1.5.0/jre/lib/i386/libOCFPCSC1.so: cannot restore segment prot after > reloc: Permission denied [...] > So, if anybody has the slightest idea on what has caused me to spend the > last 7 hours pulling out my hair, trying to figure out what I've done wrong > and how to go about fixing it, I would be very, very grateful for any kind > of input.
WAG: SELinux? Which Linux distro? I don't really even know what libOCFPCSC1.so is, if you built it yourself or if you have source for it, but those messages are often a sign of a shared library built as non-PIC, and an enforcing SELinux policy which doesn't contain an explicit exception for that particular library. If you have the source, try compiling it as PIC; or if not, ask whoever shipped it to do that for you. If that fails, try setting the policy to non-enforcing mode, or modifying the policy. _______________________________________________ Muscle mailing list [email protected] http://lists.drizzle.com/mailman/listinfo/muscle
