玩客云armv7l 32位 安装OpenResty失败,安装OpenLiteSpeed,MariaDB也因类似原因失败

通过面板安装出现以下报错
stderr: openresty Pulling no matching manifest for linux/arm/v7 in the manifest list entries

百度查询了一下大概意思是拉取的对应仓库里没有对应架构(armv7L/32位)的镜像。

请问大家遇到这个问题是怎么处理的?
我的设备是玩客云刷的Armbian-unofficial 24.5.1 Bookworm with Linux 6.6.32-current-meson

修改 Openresty 配置文件
镜像改一下


去掉 1panel/

2 个赞

主配置文件去掉

1 个赞

去掉主配置文件后,重建后可以启动了,有用的

是安装时,修改Compose文件就可以了吗?
为什么我这样安装OpenResty提示

stderr: openresty Pulling openresty Error Get “https://registry-1.docker.io/v2/”: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) Error response from daemon: Get “https://registry-1.docker.io/v2/”: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

已经设置了镜像,MySql已经安装成功。

安装应用compose 文件内容用的是下面这个,安装失败。

services:
  openresty:
    image: openresty:1.21.4.3-3-3-focal
    container_name: ${CONTAINER_NAME}
    restart: always
    network_mode: host
    volumes:
      - ./conf/nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf
      - ./conf/fastcgi_params:/usr/local/openresty/nginx/conf/fastcgi_params
      - ./conf/fastcgi-php.conf:/usr/local/openresty/nginx/conf/fastcgi-php.conf
      - ./conf/mime.types:/usr/local/openresty/nginx/conf/mime.types
      - ./log:/var/log/nginx
      - ./conf/conf.d:/usr/local/openresty/nginx/conf/conf.d/
      - ./www:/www
      - ./root:/usr/share/nginx/html
      - /etc/localtime:/etc/localtime
      - ./1pwaf/data:/usr/local/openresty/1pwaf/data
    labels:
      createdBy: "Apps"

安装应用时,Compose文件用的内容是什么?

架构不支持,修改镜像为说明里的镜像,

然后openresty删除/注释一下有引用waf的配置

按照此方法安装并且运行openResty成功了,谢谢!