删除或删除现有的Websphere Application Server配置文件

时间:2015-05-26 11:21:59

标签: java websphere

我想从我的计算机上删除Websphere Application Server配置文件及其服务。

在Profile Management工具中,我只能看到创建配置文件的选项,并且没有删除现有配置文件的选项

那么如何删除和删除现有个人资料的服务?

4 个答案:

答案 0 :(得分:10)

  1. 首先列出您环境中的所有配置文件 manageprofiles 命令。

    ex:WAS_Home/bin/manageprofiles.bat -listProfiles
    
  2. 停止与该配置文件相关的所有服务器。

  3. 停止与该配置文件相关的节点代理程序,dmgr进程。
  4. 按照语法使用 manageprofiles 命令删除配置文件      语法:

    WAS_Rootbin/manageprofiles.bat  -delete -profileName <profile_name>
    

    manage profiles命令有更多选项,例如用户名,密码。

  5. 使用 manageprofiles 删除配置文件后,检查配置文件列表 命令。

    manageprofiles.bat -listProfiles
    

答案 1 :(得分:1)

我已使用

删除了创建的个人资料
  

manageProfiles.bat

查找以下命令以删除个人资料

manageprofiles -delete -profileName <YourProfileName>

答案 2 :(得分:0)

这取决于您的操作系统。尝试使用适用于Windows的 manageprofiles.bat 或适用于位于 was_install_dir \ bin \

的UNIX / Linux的 manageprofiles.sh

您可以使用此命令here了解如何删除配置文件。

或使用manageprofiles.sh -help

答案 3 :(得分:-1)

manageprofiles.sh -delete -profileName在Unix上有效。

但是,就像WAS卸载脚本一样-存在文件系统残留,必须手动解决。在我的情况下,名为文件夹的配置文件仍然存在,其中仅包含日志文件夹和下级文件。