Reputation: 1503
I want to InstallPassenger + Apache on a Linux/Unix production server for Node.js apps + Red Hat 6 / CentOS 6 (with RPM) and I have installed it but at the end of the installation this is the output I get:
Installed: mod_passenger.x86_64 0:5.1.8-1.el6 Dependency Installed: passenger.x86_64 0:5.1.8-1.el6 Failed: httpd.x86_64 0:2.2.15-60.el6.centos.5
When I try also to check if passenger process is running I found it is not. How can I start the process, I am accusing the failure of httpd.x86_64 0:2.2.15-60.el6.centos.5 to be the reason but I do not not where to start from to solve the issue; I need help.
Upvotes: 0
Views: 276
Reputation: 146
If you want to use Apache, then you should make sure Apache is installed.
yum update
yum remove httpd
yum install httpd
Passenger integration just drops a module in an existing Apache install, and only starts if Apache also starts.
If you can't get Apache to work you can also use Passenger in standalone mode.
Upvotes: 1
Reputation: 2003
Apache did not install successfully, that's what the Failed: httpd
means.
Upvotes: 1