在WAS 6.1里为NodeAgent创建Windows系统服务

简介: http://yulimin.javaeye.com/blog/361589   WASService 命令行工具允许您在 Linux 和 Windows 操作系统上为产品 Java 进程创建服务。 当安装向导创建服务时,卸载程序可以除去服务。如果使用 WASService 命令自已创建一个服务,那么当该服务不再有效时,您必须除去它。卸载程序不会除去您使用 WASService 命令创建的

http://yulimin.javaeye.com/blog/361589

 

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 命令行工具启动现有服务的命令
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  



查看系统服务,可以看到添加了“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

相关文章
|
1月前
|
安全 Windows
永久关闭 Windows 11 系统更新
永久关闭 Windows 11 系统更新
126 0
|
23天前
|
存储 负载均衡 Java
如何配置Windows主机MPIO多路径访问存储系统
Windows主机多路径(MPIO)是一种技术,用于在客户端计算机上配置多个路径到存储设备,以提高数据访问的可靠性和性能。本文以Windows2012 R2版本为例介绍如何在客户端主机和存储系统配置多路径访问。
67 13
如何配置Windows主机MPIO多路径访问存储系统
|
7天前
|
网络安全 Windows
Windows server 2012R2系统安装远程桌面服务后无法多用户同时登录是什么原因?
【11月更文挑战第15天】本文介绍了在Windows Server 2012 R2中遇到的多用户无法同时登录远程桌面的问题及其解决方法,包括许可模式限制、组策略配置问题、远程桌面服务配置错误以及网络和防火墙问题四个方面的原因分析及对应的解决方案。
|
1月前
|
边缘计算 安全 网络安全
|
1月前
|
开发框架 .NET API
Windows Forms应用程序中集成一个ASP.NET API服务
Windows Forms应用程序中集成一个ASP.NET API服务
96 9
|
1月前
|
应用服务中间件 Apache Windows
免安装版的Tomcat注册为windows服务
免安装版的Tomcat注册为windows服务
120 3
|
1月前
|
Java 关系型数据库 MySQL
java控制Windows进程,服务管理器项目
本文介绍了如何使用Java的`Runtime`和`Process`类来控制Windows进程,包括执行命令、读取进程输出和错误流以及等待进程完成,并提供了一个简单的服务管理器项目示例。
39 1
|
1月前
|
Windows
Windows系统命令dir使用详解
Windows系统命令dir使用详解
|
2月前
|
Linux Windows
Windows系统批量创建文件夹的技巧
Windows系统批量创建文件夹的技巧
|
1月前
|
Windows
.NET 隐藏/自定义windows系统光标
【10月更文挑战第20天】在.NET中,可以使用`Cursor`类来控制光标。要隐藏光标,可将光标设置为`Cursors.None`。此外,还可以通过从文件或资源加载自定义光标来更改光标的样式。例如,在表单加载时设置`this.Cursor = Cursors.None`隐藏光标,或使用`Cursor.FromFile`方法加载自定义光标文件,也可以将光标文件添加到项目资源中并通过资源管理器加载。这些方法适用于整个表单或特定控件。
下一篇
无影云桌面