英文:
How to use WebSphere 8.5.5 without Eclipse
问题
如何在不使用Eclipse插件(IBM WebSphere Application Server V8.5x Developer Tools plugin)的情况下使用WebSphere 8.5.5。
在现代Eclipse中,由于(Eclipse表示)一些WebSphere应用程序服务器特定功能仅在JRE 6.0、7.0或8.0上受支持,它不再起作用。
我想要创建新的服务器,启动、停止,以调试模式启动,发布EAR文件,检查服务器状态。
我之前在Eclipse服务器视图中使用了许多配置文件,由于插件的兼容性,我无法再对其进行管理,我想以某种方式重新使用它们。
非常感谢。
英文:
how can I use WebSphere 8.5.5 without using Eclipse's Plugin (IBM WebSphere Application Server V8.5x Developer Tools plugin).
In modern Eclipse it isn't working anymore because (Eclipse says) some Websphere Application Server specific functions are only supported on JRE 6.0, 7.0, or 8.0.
I would like to create new Servers, start, stop, start in debug, publish EAR files, check Server status.
I have many Profiles I previously use with Eclipse Server's View, which due to Plugin compatibility I can't manage anymore, and I would like to reuse them in some way.
Many thanks
答案1
得分: 1
请查看IBM KnowledgeCenter中的“使用命令行工具”主题,网址为https://www.ibm.com/support/knowledgecenter/en/SSEQTP_8.5.5/com.ibm.websphere.base.doc/ae/txml_command.html
要创建一个新的服务器配置文件而不使用Eclipse,请使用位于<WAS_HOME>/bin中的WebSphere定制工具箱(wct)。您还可以使用Profile Management Tool(pmt),但该工具已被弃用。
要启动(正常或调试)服务器,请使用<PROFILE_HOME>/bin中的startServer脚本。
要停止服务器,请使用<PROFILE_HOME>/bin中的stopServer脚本。
要发布EAR(或WAR)文件,您可以使用基于Web的管理控制台或wsadmin命令行。在<WAS_HOME>/scriptLibraries/application/V70中有许多可用于帮助完成此任务的脚本,它们的不同功能在KnowledgeCenter主题https://www.ibm.com/support/knowledgecenter/en/SSEQTP_8.5.5/com.ibm.websphere.base.doc/ae/rxml_7libapp.html中进行了描述。
要检查服务器状态,请使用<PROFILE_HOME>/bin中的serverStatus脚本。
英文:
See the "Using command-line Tools" topic in the IBM KnowledgeCenter https://www.ibm.com/support/knowledgecenter/en/SSEQTP_8.5.5/com.ibm.websphere.base.doc/ae/txml_command.html
To create a new server profile w/o Eclipse, use the WebSphere Customization Toolbox (wct) in <WAS_HOME>/bin. You can also use the Profile Management Tool, pmt, but that has been deprecated
To start (normal or debug) a server, use startServer script in <PROFILE_HOME>/bin
To stop a server, use stopServer script in <PROFILE_HOME>/bin
To publish an EAR (or WAR) file, you can either use the web-based admin console or the wsadmin command line. There are a number of scripts available to help with this task in <WAS_HOME>/scriptLibraries/application/V70, their various functions are described in the KnowledgeCenter topic https://www.ibm.com/support/knowledgecenter/en/SSEQTP_8.5.5/com.ibm.websphere.base.doc/ae/rxml_7libapp.html
To check server status, use serverStatus script in <PROFILE_HOME>/bin
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论