---
title: 执行Spark引擎业务过程中运行Gluten提示error in opening zip file的解决方法
description: "运行Gluten时提示error in opening zip file。"
url: https://www.hikunpeng.com/document/detail/zh/kunpengboostkithistory/2530/bds/kunpengbds_omniruntime_20_0241.html
sourcePath: /source/zh/kunpengboostkithistory/2530/bds/kunpengbds_omniruntime_20_0241.html
indexId: d2a94395d40b1c9504c592aa6d0224904325dbcf98bd38f4765780aed96d52d978
---
# 执行Spark引擎业务过程中运行Gluten提示error in opening zip file的解决方法

#### 问题现象描述

运行Gluten时提示error in opening zip file。


#### 关键过程、根本原因分析

Gluten社区代码里有一个步骤是遍历部署文件夹下的所有文件，但是没有对该报错文件是否为JAR类型进行校验。


#### 结论、解决方案及效果

1. 在环境的/usr/local目录下输入ll命令查看tez软链接。

```
ll
```


2. 删除tez软链接。

```
unlink tez
```


3. 再次运行Gluten。
