Deployment Websphere ear deploment失败

Deployment Websphere ear deploment失败,deployment,websphere,ear,Deployment,Websphere,Ear,我正在尝试部署ear文件,但出现了错误 “名为ace ear的合成单元已存在。请选择一个 “不同的应用程序名称” 这是不存在的。还有什么问题?尽管不建议您这样做,但您可以从服务器配置文件中手动删除ear的引用 要检查配置文件中是否存在ear,请从Dmgr/config文件夹运行以下命令。手动删除ear文件(如果存在) find . -name '*ace-ear*' find . -name '*.xml' | xargs grep -i ace-ear 要检查配置xml中是否存在ear引用

我正在尝试部署ear文件,但出现了错误

“名为ace ear的合成单元已存在。请选择一个 “不同的应用程序名称”


这是不存在的。还有什么问题?

尽管不建议您这样做,但您可以从服务器配置文件中手动删除ear的引用

要检查配置文件中是否存在ear,请从Dmgr/config文件夹运行以下命令。手动删除ear文件(如果存在)

find . -name '*ace-ear*'
find . -name '*.xml' | xargs grep -i ace-ear
要检查配置xml中是否存在ear引用,请从Dmgr/config文件夹运行以下命令,然后手动从xml文件中删除这些条目(如果存在)

find . -name '*ace-ear*'
find . -name '*.xml' | xargs grep -i ace-ear
在此之后,重新启动部署管理器,同步节点并重新启动JVM,然后尝试部署应用程序

注意:手动更新服务器配置文件时要非常小心,因为任何错误都可能损坏服务器配置。建议在对服务器配置文件应用任何更改之前进行配置文件备份。

1.检查以下位置以查看应用程序目录是否存在。如果它们确实存在,请删除应用程序文件夹“您的应用程序”
1.Check the following locations to see if the application directories exist. If they do exist delete the application folder 'your_app'
<profile root>/config/cells/cellname/applications/your_app
<profile root>/config/cells/cellname/blas/your_app
<profile root>/config/cells/cellname/cus/your_app

2.Clear the contents of the profile/wstemp directory 
3.Clear the contents of the profile/temp director
4.Restart the Application Server.
/config/cells/cellname/applications/your_app /config/cells/cellname/blas/your_应用程序 /config/cells/cellname/cus/your_应用程序 2.清除profile/wstemp目录的内容 3.清除配置文件/临时主管的内容 4.重新启动应用程序服务器。
我的问题出在远程环境上,ftp文件Zilla客户端在appserver文件夹(服务器-->查找远程文件)中搜索我的应用程序名称的所有匹配项,然后删除所有文件夹和应用程序名称的文件,重新启动服务器,再次部署应用程序,成功

非常感谢@M I PSee