今天配置Linux的开发环境,在将用service命令启动tomcat时,遇到这个错误:
01/09/2013 12:01:04 13549 jsvc.exec error: /usr/local/java/jre/lib/i386/client/libjvm.so: cannot restore segment prot after reloc: Permission denied
上网查了一下,原来是jsvc程序不能动态加载java的libjvm.so这个库所导致的,出现这个错误,是由于将Linux 的SELinux设置为enforcing(强制模式)导致的。具体解决办法有以下几个:
1、执行如下命令,临时关闭SELinux:
/usr/sbin/setenforce 0
2、也可以通过禁用SELinux来解决:
更改/etc/sysconfig/selinux 文件的内容为 SELINUX=disabled(禁用),然后重启一下系统。
相关推荐
error :/usr/lib/libjvm.so: cannot restore segment prot after reloc: Permission denied . use the command: chcon -t textrel_shlib_t /usr/lib/libjvm.so 这是官方的提示 简单的做法是 setenforce 0 ok,java...
在尝试运行 SQL Plus 工具时,可能会遇到一个错误提示:“cannot restore segment prot after reloc: Permission denied”,这通常发生在尝试加载 Oracle 的客户端库 `libclntsh.so.11.1` 时。此错误表明系统拒绝了...
- `cannot restore segment prot after reloc: Permission denied`:提示在重定位共享库时无法恢复段保护(权限)。 2. **SELinux 配置问题**:根据后续提供的日志,用户通过 `getenforce` 命令检查到 SELinux ...
4. 如果出现“./xrgsu: error while loading shared libraries: /usr/lib/libpcap.so.0.6.2: cannot restore segment prot after reloc: Permission denied”的问题,需要编辑/etc/sysconfig/selinux文件,将...
- 如果出现“sqlplus: error while loading shared libraries: /usr/local/oracle/libnnz11.so: cannot restore segment prot after reloc: Permission denied”的错误,可以尝试将SELinux设置为Permissive模式: ...
- 如果启动失败并提示权限问题,如`error while loading shared libraries: cannot restore segment prot after reloc: Permission denied`,则需要修改SELinux配置。具体操作为将`/etc/selinux/config`文件中的`...
最后,文章提到了安装 Zend Server CE for Linux 时遇到的问题,即`cannot restore segment prot after reloc: permission denied`错误。这通常与SELinux策略有关。有两种解决方法:一是临时关闭SELinux(风险较高)...
- 如果出现权限错误,例如 “cannot restore segment prot after reloc: Permission denied”,则需要进一步调整 SELinux 设置。 ##### 步骤 3: 配置 SELinux 1. **编辑 SELinux 配置文件**: - 使用文本编辑器...
- **问题描述**: 安装完成后,可能会遇到权限相关的问题,例如`cannot restore segment prot after reloc: Permission denied`。 - **解决方案**: 1. 编辑`/etc/selinux/config`文件,将`SELINUX=enforcing`修改为`...
如文档中提到的“cannot restore segment prot after reloc: Permission denied”错误,就是由于Linux的安全策略SELinux阻止了JVM加载必要的库文件。通过使用`chcon`命令改变文件的安全上下文,可以解决这类权限问题...