Reputation: 767
I have installed CKAN 2.7.2 in Centos 7 (64x)
I have followed this links with several modifications: https://github.com/ckan/ckan/wiki/How-to-install-CKAN-2.x-on-CentOS-7
Tomcat 7 works ok, SOLR works ok, Redis is installed and returns PONG on port 6379. Database test created without errors.
I have created:
/etc/ckan/default/apache.wsgi
/etc/httpd/conf.d/ckan_default.conf
BUT, I always get:
It seems that requests to web server are not redirected to WSGI script which should redirect to the CKAN instance.
I get no errors in the log, and I don't know where to look to find why this happens.
Upvotes: 0
Views: 238
Reputation: 3224
When you add or change the Apache config, you need to reload/restart Apache:
systemctl restart httpd.service
(I think you must have followed the instructions in the wrong order)
Upvotes: 1