Forums de discussion

ajp1.3 config

gordon daniels, modifié il y a 11 années.

ajp1.3 config

Liferay Master Publications: 797 Date d'inscription: 24/08/08 Publications récentes
Could someone tell me if this config for port redirect is proper? I am having 503 errors after server runs for a while. Also, I commented out port 8080 in server.xml file. Is that proper?

thanks

<VirtualHost *:80>
ServerAdmin webmaster@example.com
ServerName example.com
ServerAlias www.example.com
Rewriteengine On
ErrorLog "/var/log/httpd/ajp.error_log"
CustomLog "/var/log/httpd/ajp.access_log" common
<Directory />
Options FollowSymlinks
AllowOverride None
</Directory>

ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
</VirtualHost>
gordon daniels, modifié il y a 11 années.

RE: ajp1.3 config

Liferay Master Publications: 797 Date d'inscription: 24/08/08 Publications récentes
bump: My server shutdowns after being up for about eight hours. I see this in the apache log:

[error] (70007)The timeout specified has expired: ajp_ilink_receive() can't receive header

So, I was hoping someone could tell me if the above config is wrong.
Linus Sphinx, modifié il y a 11 années.

RE: ajp1.3 config

Junior Member Publications: 99 Date d'inscription: 12/08/10 Publications récentes
Pretty sure that's wrong, don't see a need for the reverse for one and you probably only see proxy of unsecured requests on port 80 for another. I'd take it off the virtualhost and put in it's own scrap in /etc/httpd/conf.d/ like;
echo "# ajp proxy configuration
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
ProxyPass / ajp://localhost:8009/
" &gt; /etc/httpd/conf.d/proxy_ajp.conf

and proxy everything.
gordon daniels, modifié il y a 11 années.

RE: ajp1.3 config

Liferay Master Publications: 797 Date d'inscription: 24/08/08 Publications récentes
Linus: thanks for the reply. Yes, that does not work. I installed mod_jk and configured it. It works great.

thanks again for taking the time to help
Jack Chung, modifié il y a 11 années.

RE: ajp1.3 config

New Member Publications: 19 Date d'inscription: 30/11/11 Publications récentes
This was a while ago, and it looks like there was a workaround with mod_jk, but just in response, I had configured mod_proxy_ajp as below, with the actual server hostnames replaced by example.com:

<VirtualHost *:80>
ServerName example.com
<Proxy *>
Allow from all
</Proxy>
ProxyPass / ajp://example.com:8009/
</VirtualHost>

Also, commenting out 8080 in the Tomcat server.xml shouldn't be an issue, although I've never done it. I've found accessing the Tomcat server directly can be helpful for troubleshooting.
gordon daniels, modifié il y a 11 années.

RE: ajp1.3 config

Liferay Master Publications: 797 Date d'inscription: 24/08/08 Publications récentes
Jack: thanks. I had just read recently that approach might work. I really appreciate you sharing. I'm going to give it a try. BTW, mod_jk works really well but not as easy to configure I think as ajp.
Jack Chung, modifié il y a 11 années.

RE: ajp1.3 config

New Member Publications: 19 Date d'inscription: 30/11/11 Publications récentes
Generally, the preferred method, or so I'm told, is to use mod_jk. Sometimes, there is the additional configuration, or even a compilation of the module itself on *nix systems, but for the most part, mod_jk has more flexibility than mod_proxy_ajp. You may want to experiment with the jkstatus and jkmanager page on some sandbox systems. It allows realtime manipulation of the ajp workers.
gordon daniels, modifié il y a 11 années.

RE: ajp1.3 config

Liferay Master Publications: 797 Date d'inscription: 24/08/08 Publications récentes
Jack: thanks for the input. Will give it a try. Really appreciate you taking the time.