libjvm.so: cannot restore segment prot after reloc: 权限不够

来源:互联网 发布:客户维护软件 编辑:程序博客网 时间:2024/05/16 06:05
/usr/local/jdk1.6.0_17/bin/../jre/lib/i386/client/libjvm.so: cannot restore segment prot after reloc: 权限不够

查看自己的jvm,eclipse都是有可执行权限的,网上找了下,据说是问题是安全级别和防火墙导致的,

 

解决办法:

  注释#SELINUX=enforcing
添加SELINUX=disabled
或从系统->管理->安全级别和防火墙->SELinux ->禁用

vi /etc/sysconfig/selinux

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
      enforcing - SELinux security policy is enforced.
      permissive - SELinux prints warnings instead of enforcing.
      disabled - SELinux is fully disablied.
#SELINUX=enforcing
SELINUX=disabled

# SELINUXTYPE= type of policy in use. Possible values are:
      targeted - Only targeted network daemons are protected.
      strict - Full SELinux protection.
SELINUXTYPE=targeted

其中红色的是要改掉的部分.这样重启linux,eclipse就可以正常了.

原创粉丝点击