Chinaunix首页 | 论坛 | 博客
  • 博客访问: 299547
  • 博文数量: 47
  • 博客积分: 2026
  • 博客等级: 大尉
  • 技术积分: 1620
  • 用 户 组: 普通用户
  • 注册时间: 2007-12-25 09:34
文章分类

全部博文(47)

文章存档

2009年(8)

2008年(39)

我的朋友

分类: LINUX

2009-01-16 10:58:06

Topic:
Some Linux distributions with SELinux enabled may prevent IDL from running under the default security context. This TechTip is a workaround for CR#41937
 
Discussion: 
Newer Linux distributions have enabled new kernel security extensions from the SELinux project at the NSA. These extensions allow finer-grained control over system security. However, SELinux also changes some default system behaviors, such as shared library loading, that can be problematic to third party programs.
If you receive the error message "cannot restore segment prot after reloc: Permission denied" when launching IDL, then your SELinux configuration is preventing IDL from launching.
 
To rectify this issue, you can either:
1.
Change the default security context for IDL by issuing the command:
chcon -t texrel_shlib_t /usr/local/rsi/idl_6.1/bin/bin.linux.x86/*.so
2.
Disabling SELinux altogether by setting the line
SELINUX=disabled

in your /etc/sysconfig/selinux file.
For more information about SELinux, please consult your Linux distribution vendor.
 
转自:

自己碰到的情况:
执行程序时提示错误:error while loading shared libraries: /usr/lib/oracle/10.2.0.1/client/lib/libnnz10.so: cannot restore segment prot after reloc: Permission denied
用第1种办法解决:chcon -t texrel_shlib_t /usr/lib/oracle/10.2.0.1/client/lib/*.so 
 
texrel_shlib_t是一个老参数名,现在已经被textrel_shlib_t代替(之差一个t),但是依然保持texrel_shlib_t的兼容性
我也碰到这个问题,已经解决,我试了一下,
chcon -t texrel_shlib_t
或
chcon -t textrel_shlib_t
都可以,最好还是后者吧,比较新
阅读(2733) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~