>>>[EMAIL PROTECTED] 05/16/05 7:16 pm >>> #2 --- CFMX7 jrunserver.store permission denied Apache This has been touched on before... http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:8/threadid:2176 NB: Unlike the posters in that thread, I am NOT getting any messages in my log like initialized proxy for 127.0.0.1:51010
When I check my apache access logs, I am getting several logs like this: [date] [notice] jrApache[27223:58651] could not open /opt/coldfusionmx7/runtime/lib/wsconfig/1/jrunserver.store: Permission denied. This is a permissions problem. Coldfusion, when you install it asks for the user that http runs as. When you did all your connector gyrations (this happened to me too) all the files you created were owned presumably by root. Quick fix for this is: chmod -R $httpuser $CFDIR Where $httpuser is the user that apache runs as and $CFDIR is the directory coldfusion is installed in e.g. chmod -R http /opt/coldfusionmx7 That will recursively traverse that /opt/coldfusion directory and set all files as owned by http In fact, you might want to go one step further and do the user and group http runs as. I have http user and http group on my systems so: chown -R http.http /opt/coldfusionmx7 format: (user).(group) That should banish the permission denied from your error_log for apache (or in your case access_log - I separate mine out) Clear as mud, yes? My work here is done. =) -Jeff ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:14:3928 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/14 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:14 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.14 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54
