An error occurred when the plug-in was installed on the Intranet #11575

Closed
opened 2026-02-21 19:01:20 -05:00 by yindo · 0 comments
Owner

Originally created by @BlackPottery1928 on GitHub (Mar 18, 2025).

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

1.0.1

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

plugin_daemon:
container_name: plugin-daemon
image: langgenius/dify-plugin-daemon:07d13bfb59acc422afa06436c7fdc5f3bc7e6554-local
restart: always

privileged: true

environment:
  # Use the shared environment variables.
  <<: *shared-api-worker-env
  DB_DATABASE: ${DB_PLUGIN_DATABASE:-dify_plugin}
  SERVER_PORT: ${PLUGIN_DAEMON_PORT:-5002}
  SERVER_KEY: ${PLUGIN_DAEMON_KEY:-lYkiYYT6owG+71oLerGzA7GXCgOT++6ovaezWAjpCjf+Sjc3ZtU+qUEi}
  MAX_PLUGIN_PACKAGE_SIZE: ${PLUGIN_MAX_PACKAGE_SIZE:-52428800}
  PPROF_ENABLED: ${PLUGIN_PPROF_ENABLED:-false}
  DIFY_INNER_API_URL: ${PLUGIN_DIFY_INNER_API_URL:-http://api:5001}
  DIFY_INNER_API_KEY: ${PLUGIN_DIFY_INNER_API_KEY:-QaHbTe77CtuXmsfyhR7+vRjI/+XbV1AaFy691iy+kGDv2Jvy0/eAh8Y1}
  PLUGIN_REMOTE_INSTALLING_HOST: ${PLUGIN_DEBUGGING_HOST:-0.0.0.0}
  PLUGIN_REMOTE_INSTALLING_PORT: ${PLUGIN_DEBUGGING_PORT:-5003}
  PLUGIN_WORKING_PATH: ${PLUGIN_WORKING_PATH:-/app/storage/cwd}
  FORCE_VERIFYING_SIGNATURE: ${FORCE_VERIFYING_SIGNATURE:-true}
  PYTHON_ENV_INIT_TIMEOUT: ${PLUGIN_PYTHON_ENV_INIT_TIMEOUT:-120}
  PLUGIN_MAX_EXECUTION_TIMEOUT: ${PLUGIN_MAX_EXECUTION_TIMEOUT:-600}
  HTTP_PROXY: 'http://10.12.128.1:1128'
  HTTPS_PROXY: 'http://10.12.128.1:1128'
network_mode: "host"

✔️ Expected Behavior

No response

Actual Behavior

plugin-daemon | 2025/03/18 08:05:46 runtime_lifetime.go:76: [ERROR]init environment failed: failed to install dependencies: exit status 2, output: error: Failed to fetch: https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/
plugin-daemon | Caused by: Could not connect, are you offline?
plugin-daemon | Caused by: Request failed after 3 retries
plugin-daemon | Caused by: error sending request for url (https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/)
plugin-daemon | Caused by: client error (Connect)
plugin-daemon | Caused by: dns error: failed to lookup address information: Temporary failure in name resolution
plugin-daemon | Caused by: failed to lookup address information: Temporary failure in name resolution
plugin-daemon | , retry in 30s
plugin-daemon | 2025/03/18 08:05:50 runtime_lifetime.go:76: [ERROR]init environment failed: failed to install dependencies: exit status 2, output: error: Failed to fetch: https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/
plugin-daemon | Caused by: Could not connect, are you offline?
plugin-daemon | Caused by: Request failed after 3 retries
plugin-daemon | Caused by: error sending request for url (https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/)
plugin-daemon | Caused by: client error (Connect)
plugin-daemon | Caused by: dns error: failed to lookup address information: Temporary failure in name resolution
plugin-daemon | Caused by: failed to lookup address information: Temporary failure in name resolution

Originally created by @BlackPottery1928 on GitHub (Mar 18, 2025). ### Self Checks - [x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general). - [x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones. - [x] I confirm that I am using English to submit this report (我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542)). - [x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:) - [x] Please do not modify this template :) and fill in all the required fields. ### Dify version 1.0.1 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce plugin_daemon: container_name: plugin-daemon image: langgenius/dify-plugin-daemon:07d13bfb59acc422afa06436c7fdc5f3bc7e6554-local restart: always # privileged: true environment: # Use the shared environment variables. <<: *shared-api-worker-env DB_DATABASE: ${DB_PLUGIN_DATABASE:-dify_plugin} SERVER_PORT: ${PLUGIN_DAEMON_PORT:-5002} SERVER_KEY: ${PLUGIN_DAEMON_KEY:-lYkiYYT6owG+71oLerGzA7GXCgOT++6ovaezWAjpCjf+Sjc3ZtU+qUEi} MAX_PLUGIN_PACKAGE_SIZE: ${PLUGIN_MAX_PACKAGE_SIZE:-52428800} PPROF_ENABLED: ${PLUGIN_PPROF_ENABLED:-false} DIFY_INNER_API_URL: ${PLUGIN_DIFY_INNER_API_URL:-http://api:5001} DIFY_INNER_API_KEY: ${PLUGIN_DIFY_INNER_API_KEY:-QaHbTe77CtuXmsfyhR7+vRjI/+XbV1AaFy691iy+kGDv2Jvy0/eAh8Y1} PLUGIN_REMOTE_INSTALLING_HOST: ${PLUGIN_DEBUGGING_HOST:-0.0.0.0} PLUGIN_REMOTE_INSTALLING_PORT: ${PLUGIN_DEBUGGING_PORT:-5003} PLUGIN_WORKING_PATH: ${PLUGIN_WORKING_PATH:-/app/storage/cwd} FORCE_VERIFYING_SIGNATURE: ${FORCE_VERIFYING_SIGNATURE:-true} PYTHON_ENV_INIT_TIMEOUT: ${PLUGIN_PYTHON_ENV_INIT_TIMEOUT:-120} PLUGIN_MAX_EXECUTION_TIMEOUT: ${PLUGIN_MAX_EXECUTION_TIMEOUT:-600} HTTP_PROXY: 'http://10.12.128.1:1128' HTTPS_PROXY: 'http://10.12.128.1:1128' network_mode: "host" ### ✔️ Expected Behavior _No response_ ### ❌ Actual Behavior plugin-daemon | 2025/03/18 08:05:46 runtime_lifetime.go:76: [ERROR]init environment failed: failed to install dependencies: exit status 2, output: error: Failed to fetch: `https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/` plugin-daemon | Caused by: Could not connect, are you offline? plugin-daemon | Caused by: Request failed after 3 retries plugin-daemon | Caused by: error sending request for url (https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/) plugin-daemon | Caused by: client error (Connect) plugin-daemon | Caused by: dns error: failed to lookup address information: Temporary failure in name resolution plugin-daemon | Caused by: failed to lookup address information: Temporary failure in name resolution plugin-daemon | , retry in 30s plugin-daemon | 2025/03/18 08:05:50 runtime_lifetime.go:76: [ERROR]init environment failed: failed to install dependencies: exit status 2, output: error: Failed to fetch: `https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/` plugin-daemon | Caused by: Could not connect, are you offline? plugin-daemon | Caused by: Request failed after 3 retries plugin-daemon | Caused by: error sending request for url (https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/dify-plugin/) plugin-daemon | Caused by: client error (Connect) plugin-daemon | Caused by: dns error: failed to lookup address information: Temporary failure in name resolution plugin-daemon | Caused by: failed to lookup address information: Temporary failure in name resolution
yindo added the 🐞 bug label 2026-02-21 19:01:20 -05:00
yindo closed this issue 2026-02-21 19:01:20 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#11575