[GH-ISSUE #21119] issue: Max retries exceeded with url: /tika/text #34916

Closed
opened 2026-04-25 09:05:34 -05:00 by GiteaMirror · 1 comment
Owner

Originally created by @yousimu on GitHub (Feb 3, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/21119

Check Existing Issues

  • I have searched for any existing and/or related issues.
  • I have searched for any existing and/or related discussions.
  • I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!).
  • I am using the latest version of Open WebUI.

Installation Method

docker compose

Open WebUI Version

v0.7.2

Ollama Version (if applicable)

0.13.5

Operating System

Debian 12

Browser (if applicable)

chrome, safari

Confirmation

  • I have read and followed all instructions in README.md.
  • I am using the latest version of both Open WebUI and Ollama.
  • I have included the browser console logs.
  • I have included the Docker container logs.
  • I have provided every relevant configuration, setting, and environment variable used in my setup.
  • I have clearly listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc).
  • I have documented step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation. My steps:
  • Start with the initial platform/version/OS and dependencies used,
  • Specify exact install/launch/configure commands,
  • List URLs visited, user input (incl. example values/emails/passwords if needed),
  • Describe all options and toggles enabled or changed,
  • Include any files or environmental changes,
  • Identify the expected and actual result at each stage,
  • Ensure any reasonably skilled user can follow and hit the same issue.

Expected Behavior

After configuring Tika, PDF files uploaded to the knowledge base should be correctly imported.

The PDF is confirmed to be unencrypted and contains text.

Actual Behavior

Image

HTTPSConnectionPool(host='tika.yousimu.wang', port=443): Max retries exceeded with url: /tika/text (Caused by NewConnectionError("HTTPSConnection(host='tika.yousimu.wang', port=443): Failed to establish a new connection: [Errno 101] Network is unreachable"))

HTTPConnectionPool(host='192.168.1.100', port=36769): Max retries exceeded with url: /tika/text (Caused by NewConnectionError("HTTPConnection(host='192.168.1.100', port=36769): Failed to establish a new connection: [Errno 111] Connection refused"))

I encountered a 403 error on /tika/text while uploading a PDF. After investigating, I have two points to share:

  1. This issue is unrelated to whether HTTP or HTTPS is used.
  2. Even though I found that Tika 3.2.3 does not have this endpoint, the command curl -T test.pdf https://tika.yousimu.wang/tika/text still works.
Image Image

Open WebUI version:
v0.7.2

Steps to Reproduce

1\ my docker compose

`services:
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
ports:
- "35069:8080"
volumes:
- ./data:/app/backend/data
environment:
- GLOBAL_LOG_LEVEL=INFO
restart: unless-stopped

tika:
image: apache/tika:latest
container_name: apache-tika-server
ports:
- "36769:9998"
restart: unless-stopped
user: "1000:1000"
volumes:
- ./tika-fonts:/usr/local/openjdk-11/lib/fonts:ro
- ./tika-fonts:/usr/share/fonts:ro
- ./tika-config.xml:/tika-config.xml:ro
environment:
- TZ=Asia/Shanghai
- JAVA_OPTS=-Dpdfbox.fontcache=/tmp -cp /opt/tika-server -jar /opt/tika-server/tika-server-standard.jar --config /tika-config.xml`

Image

Logs & Screenshots

1\ tika docker logs

WARN [qtp1393198164-29] 16:45:45,538 org.apache.cxf.jaxrs.impl.WebApplicationExceptionMapper jakarta.ws.rs.ClientErrorException: HTTP 405 Method Not Allowed
at org.apache.cxf.jaxrs.utils.SpecExceptions.toHttpException(SpecExceptions.java:118)
at org.apache.cxf.jaxrs.utils.ExceptionUtils.toHttpException(ExceptionUtils.java:167)
at org.apache.cxf.jaxrs.utils.JAXRSUtils.findTargetMethod(JAXRSUtils.java:673)
at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.processRequest(JAXRSInInterceptor.java:181)
at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.handleMessage(JAXRSInInterceptor.java:78)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:307)
at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121)
at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:267)
at org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(JettyHTTPDestination.java:244)
at org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(JettyHTTPHandler.java:80)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:223)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1381)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:178)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1303)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:129)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:149)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122)
at org.eclipse.jetty.server.Server.handle(Server.java:563)
at org.eclipse.jetty.server.HttpChannel$RequestDispatchable.dispatch(HttpChannel.java:1598)
at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:753)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:501)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:287)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:314)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:100)
at org.eclipse.jetty.io.SelectableChannelEndPoint$1.run(SelectableChannelEndPoint.java:53)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:969)
at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.doRunJob(QueuedThreadPool.java:1194)
at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1149)
at java.base/java.lang.Thread.run(Thread.java:1583)
WARN [qtp1393198164-32] 17:05:32,136 org.apache.cxf.jaxrs.impl.WebApplicationExceptionMapper jakarta.ws.rs.ClientErrorException: HTTP 405 Method Not Allowed
at org.apache.cxf.jaxrs.utils.SpecExceptions.toHttpException(SpecExceptions.java:118)
at org.apache.cxf.jaxrs.utils.ExceptionUtils.toHttpException(ExceptionUtils.java:167)
at org.apache.cxf.jaxrs.utils.JAXRSUtils.findTargetMethod(JAXRSUtils.java:673)
at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.processRequest(JAXRSInInterceptor.java:181)
at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.handleMessage(JAXRSInInterceptor.java:78)
at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:307)
at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121)
at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:267)
at org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(JettyHTTPDestination.java:244)
at org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(JettyHTTPHandler.java:80)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122)
at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:223)
at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1381)
at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:178)
at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1303)
at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:129)
at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:149)
at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122)
at org.eclipse.jetty.server.Server.handle(Server.java:563)
at org.eclipse.jetty.server.HttpChannel$RequestDispatchable.dispatch(HttpChannel.java:1598)
at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:753)
at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:501)
at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:287)
at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:314)
at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:100)
at org.eclipse.jetty.io.SelectableChannelEndPoint$1.run(SelectableChannelEndPoint.java:53)
at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:969)
at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.doRunJob(QueuedThreadPool.java:1194)
at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1149)
at java.base/java.lang.Thread.run(Thread.java:1583)
INFO [qtp1393198164-27] 17:06:09,295 org.apache.cxf.jaxrs.utils.JAXRSUtils Resource class org.apache.tika.server.core.resource.TikaResource does not support HEAD http method, method getMessage supporting GET http method will be invoked

2\ Open webUI logs

2026-02-03 16:59:30.275 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:01:30.297 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:02:30.293 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:04:30.306 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:05:30.351 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:06:30.458 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:07:31.277 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:08:31.295 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:10:30.407 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:11:25.932 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/bf5607e3-5110-4819-bbcb-f07c2d0225b1 HTTP/1.1" 200
2026-02-03 17:11:26.183 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/bf5607e3-5110-4819-bbcb-f07c2d0225b1 HTTP/1.1" 200
2026-02-03 17:11:26.418 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/27d71245-1c19-45ae-b182-11cccfd39ec3 HTTP/1.1" 200
2026-02-03 17:11:26.426 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/af877322-921e-471f-b85c-8a660a95835b HTTP/1.1" 200
2026-02-03 17:11:26.731 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/usage HTTP/1.1" 200
2026-02-03 17:11:30.475 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:11:33.698 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /ollama/api/version HTTP/1.1" 200
2026-02-03 17:11:35.283 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/version/updates HTTP/1.1" 200
2026-02-03 17:12:31.328 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:14:22.800 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:15:23.295 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:16:30.330 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:17:30.340 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:19:30.339 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200
2026-02-03 17:20:30.376 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200

Additional Information

No response

Originally created by @yousimu on GitHub (Feb 3, 2026). Original GitHub issue: https://github.com/open-webui/open-webui/issues/21119 ### Check Existing Issues - [x] I have searched for any existing and/or related issues. - [x] I have searched for any existing and/or related discussions. - [x] I have also searched in the CLOSED issues AND CLOSED discussions and found no related items (your issue might already be addressed on the development branch!). - [x] I am using the latest version of Open WebUI. ### Installation Method docker compose ### Open WebUI Version v0.7.2 ### Ollama Version (if applicable) 0.13.5 ### Operating System Debian 12 ### Browser (if applicable) chrome, safari ### Confirmation - [x] I have read and followed all instructions in `README.md`. - [x] I am using the latest version of **both** Open WebUI and Ollama. - [x] I have included the browser console logs. - [x] I have included the Docker container logs. - [x] I have **provided every relevant configuration, setting, and environment variable used in my setup.** - [x] I have clearly **listed every relevant configuration, custom setting, environment variable, and command-line option that influences my setup** (such as Docker Compose overrides, .env values, browser settings, authentication configurations, etc). - [x] I have documented **step-by-step reproduction instructions that are precise, sequential, and leave nothing to interpretation**. My steps: - Start with the initial platform/version/OS and dependencies used, - Specify exact install/launch/configure commands, - List URLs visited, user input (incl. example values/emails/passwords if needed), - Describe all options and toggles enabled or changed, - Include any files or environmental changes, - Identify the expected and actual result at each stage, - Ensure any reasonably skilled user can follow and hit the same issue. ### Expected Behavior After configuring Tika, PDF files uploaded to the knowledge base should be correctly imported. The PDF is confirmed to be unencrypted and contains text. ### Actual Behavior <img width="780" height="420" alt="Image" src="https://github.com/user-attachments/assets/30d71dbf-28ac-4147-adbd-2f95f7f52c9a" /> HTTPSConnectionPool(host='tika.yousimu.wang', port=443): Max retries exceeded with url: /tika/text (Caused by NewConnectionError("HTTPSConnection(host='tika.yousimu.wang', port=443): Failed to establish a new connection: [Errno 101] Network is unreachable")) HTTPConnectionPool(host='192.168.1.100', port=36769): Max retries exceeded with url: /tika/text (Caused by NewConnectionError("HTTPConnection(host='192.168.1.100', port=36769): Failed to establish a new connection: [Errno 111] Connection refused")) I encountered a 403 error on /tika/text while uploading a PDF. After investigating, I have two points to share: 1. This issue is unrelated to whether HTTP or HTTPS is used. 2. Even though I found that Tika 3.2.3 does not have this endpoint, the command `curl -T test.pdf https://tika.yousimu.wang/tika/text` still works. <img width="1357" height="823" alt="Image" src="https://github.com/user-attachments/assets/74aa78e8-881c-4aaa-ac1e-05a52b587cad" /> <img width="1170" height="742" alt="Image" src="https://github.com/user-attachments/assets/1c7cf966-b819-434f-a363-602187957174" /> Open WebUI version: v0.7.2 ### Steps to Reproduce 1\ my docker compose `services: open-webui: image: ghcr.io/open-webui/open-webui:main container_name: open-webui ports: - "35069:8080" volumes: - ./data:/app/backend/data environment: - GLOBAL_LOG_LEVEL=INFO restart: unless-stopped tika: image: apache/tika:latest container_name: apache-tika-server ports: - "36769:9998" restart: unless-stopped user: "1000:1000" volumes: - ./tika-fonts:/usr/local/openjdk-11/lib/fonts:ro - ./tika-fonts:/usr/share/fonts:ro - ./tika-config.xml:/tika-config.xml:ro environment: - TZ=Asia/Shanghai - JAVA_OPTS=-Dpdfbox.fontcache=/tmp -cp /opt/tika-server -jar /opt/tika-server/tika-server-standard.jar --config /tika-config.xml` <img width="2148" height="1330" alt="Image" src="https://github.com/user-attachments/assets/810025f0-0f65-46e7-94e5-6931789a3d56" /> ### Logs & Screenshots 1\ tika docker logs WARN [qtp1393198164-29] 16:45:45,538 org.apache.cxf.jaxrs.impl.WebApplicationExceptionMapper jakarta.ws.rs.ClientErrorException: HTTP 405 Method Not Allowed at org.apache.cxf.jaxrs.utils.SpecExceptions.toHttpException(SpecExceptions.java:118) at org.apache.cxf.jaxrs.utils.ExceptionUtils.toHttpException(ExceptionUtils.java:167) at org.apache.cxf.jaxrs.utils.JAXRSUtils.findTargetMethod(JAXRSUtils.java:673) at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.processRequest(JAXRSInInterceptor.java:181) at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.handleMessage(JAXRSInInterceptor.java:78) at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:307) at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121) at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:267) at org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(JettyHTTPDestination.java:244) at org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(JettyHTTPHandler.java:80) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:223) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1381) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:178) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1303) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:129) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:149) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122) at org.eclipse.jetty.server.Server.handle(Server.java:563) at org.eclipse.jetty.server.HttpChannel$RequestDispatchable.dispatch(HttpChannel.java:1598) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:753) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:501) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:287) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:314) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:100) at org.eclipse.jetty.io.SelectableChannelEndPoint$1.run(SelectableChannelEndPoint.java:53) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:969) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.doRunJob(QueuedThreadPool.java:1194) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1149) at java.base/java.lang.Thread.run(Thread.java:1583) WARN [qtp1393198164-32] 17:05:32,136 org.apache.cxf.jaxrs.impl.WebApplicationExceptionMapper jakarta.ws.rs.ClientErrorException: HTTP 405 Method Not Allowed at org.apache.cxf.jaxrs.utils.SpecExceptions.toHttpException(SpecExceptions.java:118) at org.apache.cxf.jaxrs.utils.ExceptionUtils.toHttpException(ExceptionUtils.java:167) at org.apache.cxf.jaxrs.utils.JAXRSUtils.findTargetMethod(JAXRSUtils.java:673) at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.processRequest(JAXRSInInterceptor.java:181) at org.apache.cxf.jaxrs.interceptor.JAXRSInInterceptor.handleMessage(JAXRSInInterceptor.java:78) at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:307) at org.apache.cxf.transport.ChainInitiationObserver.onMessage(ChainInitiationObserver.java:121) at org.apache.cxf.transport.http.AbstractHTTPDestination.invoke(AbstractHTTPDestination.java:267) at org.apache.cxf.transport.http_jetty.JettyHTTPDestination.doService(JettyHTTPDestination.java:244) at org.apache.cxf.transport.http_jetty.JettyHTTPHandler.handle(JettyHTTPHandler.java:80) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:223) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1381) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:178) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1303) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:129) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:149) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:122) at org.eclipse.jetty.server.Server.handle(Server.java:563) at org.eclipse.jetty.server.HttpChannel$RequestDispatchable.dispatch(HttpChannel.java:1598) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:753) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:501) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:287) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:314) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:100) at org.eclipse.jetty.io.SelectableChannelEndPoint$1.run(SelectableChannelEndPoint.java:53) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:969) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.doRunJob(QueuedThreadPool.java:1194) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1149) at java.base/java.lang.Thread.run(Thread.java:1583) INFO [qtp1393198164-27] 17:06:09,295 org.apache.cxf.jaxrs.utils.JAXRSUtils Resource class org.apache.tika.server.core.resource.TikaResource does not support HEAD http method, method getMessage supporting GET http method will be invoked 2\ Open webUI logs 2026-02-03 16:59:30.275 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:01:30.297 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:02:30.293 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:04:30.306 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:05:30.351 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:06:30.458 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:07:31.277 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:08:31.295 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:10:30.407 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:11:25.932 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/bf5607e3-5110-4819-bbcb-f07c2d0225b1 HTTP/1.1" 200 2026-02-03 17:11:26.183 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/bf5607e3-5110-4819-bbcb-f07c2d0225b1 HTTP/1.1" 200 2026-02-03 17:11:26.418 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/27d71245-1c19-45ae-b182-11cccfd39ec3 HTTP/1.1" 200 2026-02-03 17:11:26.426 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/v1/chats/af877322-921e-471f-b85c-8a660a95835b HTTP/1.1" 200 2026-02-03 17:11:26.731 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/usage HTTP/1.1" 200 2026-02-03 17:11:30.475 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:11:33.698 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /ollama/api/version HTTP/1.1" 200 2026-02-03 17:11:35.283 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /api/version/updates HTTP/1.1" 200 2026-02-03 17:12:31.328 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:14:22.800 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:15:23.295 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:16:30.330 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:17:30.340 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:19:30.339 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 2026-02-03 17:20:30.376 | INFO | uvicorn.protocols.http.httptools_impl:send:483 - 172.26.0.2:0 - "GET /_app/version.json HTTP/1.1" 200 ### Additional Information _No response_
GiteaMirror added the bug label 2026-04-25 09:05:34 -05:00
Author
Owner

@Classic298 commented on GitHub (Feb 3, 2026):

Tika still supports /text. you have a network config issue.

<!-- gh-comment-id:3840556061 --> @Classic298 commented on GitHub (Feb 3, 2026): Tika still supports /text. you have a network config issue.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#34916