I have tried to put the OMERO web application in production on my server (the development version is working well). I've followed the tutorial (https://www.openmicroscopy.org/site/support/omero4/sysadmins/unix/install-web.html) but I've a problem in the end. In my apache error_log file, I've this error when I tried to access to omero:
[Thu Apr 11 16:56:46 2013] [error] [client 131.254.14.106] (2)No such file or directory: FastCGI: stat() of "/opt/OMERO.server-4.4.6-ice34-b102/var/omero.fcgi" failed
my http.conf:
SetHandler fastcgi-script
<IfModule fastcgi-module>
AddHandler fastcgi-script fcgi fcg fpl
Options +ExecCGI
</IfModule>
RewriteEngine on
RewriteRule ^/?$ /omero [R]
FastCGIExternalServer "/opt/OMERO.server-4.4.6-ice34-b102/var/omero.fcgi" -host 0.0.0.0:4080
###
### Stanza for OMERO.web created 2013-04-09 15:26:53.905212
###
<Directory "/opt/OMERO.server-4.4.6-ice34-b102/var">
Options -Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>
<Directory "/opt/OMERO.server-4.4.6-ice34-b102/lib/python/omeroweb/static">
Options -Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>
Alias /static "/opt/OMERO.server-4.4.6-ice34-b102/lib/python/omeroweb/static"
Alias /omero "/opt/OMERO.server-4.4.6-ice34-b102/var/omero.fcgi/"
my web app is launched with the pid file in $OMERO/var. It's my first time with mod_fastcgi and I don't know how it works.
Have you any ideas about this issue?
Thanks!
Cyril