---
title: 无法找到libnetty_transport_native_epoll_x86_64.so的解决方法
description: "提示信息如下。"
url: https://www.hikunpeng.com/document/detail/zh/kunpengbds/ecosystemEnable/tpdl/kunpenghbaseshadednetty_02_0007.html
sourcePath: /source/zh/kunpengbds/ecosystemEnable/tpdl/kunpenghbaseshadednetty_02_0007.html
indexId: 70c4bb64c002a2e4fef411b4859734349db2c148cebab24f66cf9deb8add81c379
---
# 无法找到libnetty_transport_native_epoll_x86_64.so的解决方法

#### 问题现象描述

提示信息如下。

```
An Ant BuildException has occurred: Warning: Could not find file /opt/tools/installed/hbase-thirdparty-rel-2.1.0/hbase-shaded-netty/target/unpacked/META-INF/native/libnetty_transport_native_epoll_x86_64.so to copy
```


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

无法找到libnetty_transport_native_epoll_x86_64.so。


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

1. 打开“hbase-shaded-netty/pom.xml”文件。
  1 vi hbase-shaded-netty/pom.xml

2. 按“i”进入编辑模式，将“x86_64”修改为“aarch_64”。代码如下。
  1 <move file="${project.build.directory}/unpacked/META-INF/native/libnetty_transport_native_epoll_aarch_64.so" tofile="${project.build.directory}/unpacked/META-INF/native/liborg_apache_hbase_thirdparty_netty_transport_native_epoll_aarch_64.so"/>

3. 按“Esc”键，输入:wq!，按“Enter”保存并退出编辑。
