gpt4 book ai didi

apache - Apache 服务器 : 后面的 Pentaho

转载 作者:行者123 更新时间:2023-11-28 22:56:56 26 4
gpt4 key购买 nike

我在服务器上有一个 Pentaho 网站,监听端口 8080。

我也有一个 Apache Web 服务器监听端口 80,这就是问题所在:pentaho 应该可以通过域 pentaho.domain.com 访问,并且在一个 Apache 虚拟主机上配置如下:

   <VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName pentaho.domain.com
ServerAlias pentaho

ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/

</VirtualHost>

如果我第一次通过 pentaho.domain.com 访问没有问题(我可以登录),但之后它会重定向到 localhost:8080(这是错误的)。我错过了什么?谢谢。

最佳答案

你需要使用 JkMount。

<VirtualHost *:80>
ServerName reports.xx.com
ServerAlias reports.xx.com
JkMount /pentaho workeresb
JkMount /pentaho/* workeresb
JkMount /pentaho-style workeresb
JkMount /pentaho-style/* workeresb
</VirtualHost>

并在单独的文件中定义 ajp 属性:

worker.list=workeresb
worker.workeresb.type=ajp13
worker.workeresb.host=blade2
worker.workeresb.port=8009
worker.workeresb.lbfactor=50
worker.workeresb.cachesize=10
worker.workeresb.cache_timeout=600
worker.workeresb.socket_keepalive=1
worker.workeresb.socket_timeout=300

关于apache - Apache 服务器 : 后面的 Pentaho,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24801791/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com