打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
在WAS 6.1里为NodeAgent创建Windows系统服务 - 简单就是美! - C...
WASService 命令行工具允许您在 Linux 和 Windows 操作系统上为产品 Java 进程创建服务。
当安装向导创建服务时,卸载程序可以除去服务。如果使用 WASService 命令自已创建一个服务,那么当该服务不再有效时,您必须除去它。卸载程序不会除去您使用 WASService 命令创建的服务。
WASService 命令行工具位于 app_server_root\bin 目录中。
WASService 命令行工具创建服务或更新现有服务的详细命令如下:
Java代码
1.WASService.exe -add service_name  
2.   -serverName  server_name  
3.   -profilePath server_profile_directory  
4.   [-wasHome  app_server_root]  
5.   [-configRoot configuration_repository_directory]  
6.   [-startArgs additional_start_arguments]  
7.   [-stopArgs additional_stop_arguments]  
8.   [-userid user_id -password password]  
9.   [-logFile service_log_file]  
10.   [-logRoot server_log_directory]  
11.   [-restart true | false]  
12.   [-startType automatic | manual | disabled] 
WASService.exe -add service_name
   -serverName  server_name
   -profilePath server_profile_directory
   [-wasHome  app_server_root]
   [-configRoot configuration_repository_directory]
   [-startArgs additional_start_arguments]
   [-stopArgs additional_stop_arguments]
   [-userid user_id -password password]
   [-logFile service_log_file]
   [-logRoot server_log_directory]
   [-restart true | false]
   [-startType automatic | manual | disabled]
WASService 命令行工具启动现有服务的命令
WASService.exe -start service_name [optional startServer.bat parameters]
WASService 命令行工具停止正在运行的服务的命令
WASService.exe -stop service_name [optional stopServer.bat parameters]
WASService 命令行工具查看服务状态的命令
WASService.exe -status service_name
WASService 命令行工具删除服务的命令
WASService.exe -remove service_name

假设 WAS 安装在 D:\IBM\WebSphere\AppServer 目录下,要创建的 NodeAgent 概要文件在 D:\IBM\WebSphere\AppServer\profiles\AppSrv01\ 目录之下,则可以进行如下操作,将 NodeAgent 添加到 Windows 的服务当中
1、进入 WASService 命令行工具目录:
cd D:\IBM\WebSphere\AppServer\bin
2、运行 WASService 命令行工具:
WASService -add nodeagent
-servername nodeagent
-profilePath D:\IBM\WebSphere\AppServer\profiles\AppSrv01
-wasHome "D:\IBM\WebSphere\AppServer"
-logfile "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent\startNodeAgent.log"
-logRoot "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent"
-restart true
-startType automatic
Java代码
1.WASService -add nodeagent -servername nodeagent -profilePath D:\IBM\WebSphere\AppServer\profiles\AppSrv01 -wasHome "D:\IBM\WebSphere\AppServer" -logfile "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent\startNodeAgent.log" -logRoot "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent" -restart true -startType automatic 
WASService -add nodeagent -servername nodeagent -profilePath D:\IBM\WebSphere\AppServer\profiles\AppSrv01 -wasHome "D:\IBM\WebSphere\AppServer" -logfile "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent\startNodeAgent.log" -logRoot "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent" -restart true -startType automatic
查看系统服务,可以看到添加了“IBM WebSphere Application Server V6.1 - nodeagent”一个服务,启动它之后,可以在
D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent\目录下看到如下文件的相关启动情况:
startNodeAgent.log
startServer.log
nodeagent.pid
相关的操作日志如下:
创建服务:
D:\IBM\WebSphere\AppServer\bin>WASService -add nodeagent -servername nodeagent -profilePath D:\IBM\WebSphere\AppServer\profiles\AppSrv01 -wasHome "D:\IBM\WebSphere\AppServer" -logfile "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent\startNodeAgent.log" -logRoot "D:\IBM\WebSphere\AppServer\profiles\AppSrv01\logs\nodeagent" -restart true -startType automatic
Adding Service: nodeagent
        Config Root: D:\IBM\WebSphere\AppServer\profiles\AppSrv01\config
        Server Name: nodeagent
        Profile Path: D:\IBM\WebSphere\AppServer\profiles\AppSrv01
        Was Home: D:\IBM\WebSphere\AppServer\
        Start Args:
        Restart: 1
IBM WebSphere Application Server V6.1 - nodeagent service successfully added.
启动服务
D:\IBM\WebSphere\AppServer\bin>WASService.exe -start "nodeagent"
Starting Service: nodeagent
Successfully started service.
查看服务运行状态
D:\IBM\WebSphere\AppServer\bin>WASService.exe -status "nodeagent"
The service is running.
停止服务
D:\IBM\WebSphere\AppServer\bin>WASService.exe -stop "nodeagent"
Successfully stopped service.
查看服务运行状态
D:\IBM\WebSphere\AppServer\bin>WASService.exe -status "nodeagent"
The service is stopped.
删除服务
D:\IBM\WebSphere\AppServer\bin>WASService.exe -remove nodeagent
Remove Service: nodeagent
Successfully removed service
 
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/YuLimin/archive/2009/04/04/4048897.aspx
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
如何判断Windows是否已激活?
双系统如何卸载Windows Vista?轻松3步搞定! | Vista秘笈 | Vist...
一招阻止Win10升级,所有版本都适用!
Windows 7系统如何卸载已安装的程序?
Windows下在本机创建SVN服务
MSI文件安装出错的解决方法
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服