Why is this permissions error occurring with mod_passenger.so?

我们两清 提交于 2019-12-18 12:21:43

问题


I'm setting up a production RHEL 6 server with RVM and Passenger. I've gotten through installing RVM (to my home dir), installing Passenger, and adding the required lines to httpd.conf:

LoadModule passenger_module /home/em/.rvm/gems/ruby-1.9.2-p290@rails_3_production/gems/passenger-3.0.11/ext/apache2/mod_passenger.so
PassengerRoot /home/em/.rvm/gems/ruby-1.9.2-p290@rails_3_production/gems/passenger-3.0.11
PassengerRuby /home/em/.rvm/wrappers/ruby-1.9.2-p290@rails_3_production/ruby

But when I restart Apache I get this error...

$ sudo /sbin/service httpd restart
Stopping httpd:                                            [FAILED]
Starting httpd: httpd: Syntax error on line 218 of /etc/httpd/conf/httpd.conf: Cannot load /home/em/.rvm/gems/ruby-1.9.2-p290@rails_3_production/gems/passenger-3.0.11/ext/apache2/mod_passenger.so into server: /home/em/.rvm/gems/ruby-1.9.2-p290@rails_3_production/gems/passenger-3.0.11/ext/apache2/mod_passenger.so: cannot open shared object file: Permission denied
                                                           [FAILED]

Experimentally, I set the whole path starting at ~/.rvm/... to 777, but I'm still getting that same error.

Any thoughts?


回答1:


It turned out to have to do with SELinux.

The Passenger docs discuss it here.

After you install Passenger, find the Passenger root...

passenger-config --root

Then run this...

chcon -R -h -t httpd_sys_content_t /path-to-passenger-root



回答2:


$ sudo setenforce 0

helped me

hope it help others!

UPDATE

i have to say that above solution is temporal (until reboot)

so, as far as this answer has popularity let me show how to disable SELinux at all...

here it is:

run

$ sudo vi /etc/sysconfig/selinux

or

$ sudo vi /etc/selinux/config

then find this line

SELINUX=enforcing

and change it to

SELINUX=disabled

save selinux config.

now SELinux is fully disabled.

cheers



来源:https://stackoverflow.com/questions/9337706/why-is-this-permissions-error-occurring-with-mod-passenger-so

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!