`

使用manageprofiles来建立websphere的profile

阅读更多

manageprofiles 此命令在 websphere Application Server Network Deployment v6.1之上才有,之前的版本采用的命令为wasprofile.sh,这个需要特别注意。。

在Unix的机器上(包括AIX、HPUX)安装websphere64位的话,想要建立Profile是没有图形化界面的,需要使用manageprofiles命令,下面就详细描述一下如何使用这个命令。

1、建立DM的profile,使用的模版在{install_root}/profileTemplates/dmgr下
句法为:
manageprofile.sh -create –templatePath {install_root}/profileTemplates/dmgr

调用参数为:
-create 建立一个profile. (必选)
-templatePath 指定使用模版的路径. (必选) 建立DM的路径为{install_root}/profileTemplates/dmgr
-profileName 指定profile的名字. (可选)
-profilePath 指定proflile需要建立的路径. (可选)
-hostName 指定profile对应的主机名称. (可选)
-nodeName 指定profile对应的node的名称. 此名称必须在同一cell中唯一. (可选)
-cellName 指定profile对应的cell的名称. 每一个profile的cell名称必须唯一. (可选)
-isDefault 讲此profile指定为缺省的profile,在运行命令期间不需要使用profileName的参数. (可选)
-omitAction 附加条件. (可选)
-adminUserName 在指定administrative security选项后的管理员名称. (可选)
-adminPassword 在指定administrative security选项后的管理员密码. (可选)
-portsFile 指定profile的端口设定文件. 此参数和-startingPort或-defaultPorts参数冲突. (可选)
-startingPort 制度建立profile是的所有的端口的起始的端口号. 同-portsFile或者-defaultPorts参数冲突. (可选)
-defaultPorts 对新建立的profile使用缺省的端口号. 同-portsFile 或 -startingPort 参数冲突. (可选)
-validatePorts 进行端口号验证,保证使用的端口号没有已经被用或者被保留. (可选)
-enableAdminSecurity 新建立的profile使用用户密码方式认证,使用此参数后面跟 true. (可选) 
-enableService 作为linux的service使用,使用此参数后面跟 true. (可选) 
-serviceUserName 指定作为service使用时的用户. (可选)

-webServerType 指定Web server的类型. (可选)
-webServerOS 指定Web server的操作系统的类型. (可选)

例子:
export WAS_HOME=
export PRO_HOME=
以上指定websphere的安装路径和profile的路径,或者输入命令时替换

manageprofiles.sh -create \
-templatePath $WAS_HOME/profileTemplates/dmgr \
-profilePath $PRO_HOME/Dmgr01 \
-nodeName "nodename" \
-cellName "cell name" \
-enableAdminSecurity true \
-adminUserName wasadmin \
-adminPassword password \
-profileName Dmgr01 \
-hostName `hostname` \

2、建立custom的profile,使用的模版为{install_root}/profileTemplates/managed
句法为:
manageprofile.sh -create -templatePath {install_root}/profileTemplates/managed
调用参数同上:

要联合到DM的例子
manageprofiles.sh -create \
-templatePath $WAS_HOME/profileTemplates/managed \

-profileName AppSrv01 \

-profilePath $PRO_HOME/AppSrv01 \
-nodeName test01 \

-hostName `hostname` \
-cellName test1 \
-dmgrHost 192.168.1.100 \
-dmgrPort 8879 \
-dmgrAdminPassword password \
-dmgrAdminUserName wasadmin

不用联合到DM,而后用addNode.sh联合的例子
manageprofiles.sh -create \
-templatePath $WAS_HOME/profileTemplates/managed \
-profilePath $PRO_HOME/AppSrv02 \
-nodeName test02 \
-cellName test2 \
-profileName AppSrv02 \
-hostName `hostname`

addNode.sh 192.168.1.100:8879 -username wasadmin -password password

3、建立appsrv的profile,使用的模版在install_root/profileTemplates/default
句法为:
manageprofile.sh -create -templatePath install_root/profileTemplates/default
调用参数同上:例子么也就那样

4、对于集群来说,建立DM profile,然后建立多个custom的profile,addNode进去即可。或者把现有的app profile addNode到DM的概要文件中,然后通过克隆建立集群。

分享到:
评论

相关推荐

    使用概要文件简化 WebSphere Application Server 管理

    1. 使用`Profile Management Tool`或者命令行工具`manageprofiles.sh/bat`。 2. 选择概要文件类型,如Server Profile或Cell Management Profile。 3. 指定概要文件的存储位置和名称。 4. 完成创建后,可以通过管理...

    WebSphere_Application_Server_概要(Profile)理解入门_第_2_部分_如何创建概要

    这时,可以通过静默模式使用manageprofiles命令来创建概要。该命令允许管理员在没有图形用户界面的情况下创建和配置概要。 创建完概要后,Profile Management Tool提供了一个FirstSteps界面,用于启动部署管理器或...

    Linux中安装WebSphere7部署手册

    你可以通过命令行创建Dmgr(管理代理)服务器,例如在`${WAS_Home}/bin`目录下运行`./manageprofiles.sh -create -templatePath /home/IBM/WebSphere/AppServer/profileTemplates/dmgr -profileName Dmgr01`,确保选择...

    WebSphere配置部署图文详解V2.docx

    ./manageprofiles.sh -create -templatePath /apphome/IBM/WebSphere/AppServer/profileTemplates/dmgr -profileName Dmgr01 -profilePath /apphome/IBM/WebSphere/AppServer/profiles/Dmgr01 ``` - **创建应用...

    websphere安装笔记

    2. **删除单个概要文件**:使用`manageprofiles.bat -delete -profilesName <ProfileName>`命令,其中`<ProfileName>`替换为你想要删除的概要文件的名称。 3. **删除所有概要文件**:若需删除所有概要文件,可执行`...

    WebSphere Portal 集群详细安装文档

    在两台服务器上,IBM软件应按照特定目录结构进行安装,例如在196和197机器上分别安装了WebSphere AppServer、HTTPServer、PortalServer和wp_profile等组件。 接下来,我们来谈谈DB2数据库的准备。在WebSphere ...

    RedHat部署WebSphere7详细手册.pdf

    ./manageprofiles.sh -create -templatePath /home/IBM/WebSphere/AppServer/profileTemplates/dmgr -profileName Dmgr01 ``` 确保模板路径正确,选择`dmgr`模板。接着,创建AppSrv02这样的应用服务器,同样使用`...

    websphere服务器下创建应用

    ./manageprofiles.sh -create -profileName KLWAPManager -profilePath /opt/IBM/WebSphere/AppServer1/profiles/KLWAPManager -templatePath /opt/IBM/WebSphere/AppServer1/profileTemplates/default -hostName ...

    was8.5.5.0安装

    安装 WebSphere 8.5.5.0 需要使用 IBM Installation Manager。安装步骤如下: 1.解压缩 WAS_ND_V8.5.5_1_OF_3.zip、WAS_ND_V8.5.5_2_OF_3.zip 和 WAS_ND_V8.5.5_3_OF_3.zip 文件。 2.进入 Installation Manager ...

    WAS基本使用手册

    在创建了DM之后,可以使用manageprofiles.sh命令来创建新的节点,例如: ./manageprofiles.sh -create -profileName AppSvr01 -templatePath $WAS_HOME/profileTemplates/default -profilePath $WAS_HOME/profiles/...

    WebSphere Integration Developer环境搭建

    WebSphere Integration Developer(WID)是IBM提供的一款强大的集成开发工具,主要用于构建、测试和部署企业服务总线(ESB)和复杂事件处理(CEP)解决方案。在本文中,我们将详细探讨如何搭建WebSphere Integration...

    wasND安装配置,点创建

    使用`manageprofiles.sh`脚本创建,例如 `-profileName Dmgr01` 和 `-templatePath /WebSphere/AppServer/profileTemplates/dmgr` 参数分别指定了Profile名称和模板路径。`-nodeName` 和 `-cellName` 定义了节点和...

    WAS安装命令与配置[归纳].pdf

    用于集群管理)使用`manageprofiles.sh -create -templatePath <template_path> -profileName <profile_name> -profilePath <profile_path> -isDefault -omitAction`,其中`<template_path>`通常为`/opt/IBM/...

    was安装文档

    - 使用已安装的升级工具 `/usr/IBM/WebSphere/UpdateInstaller` 来安装补丁。 - 通过运行 `./update.sh` 命令来应用补丁。 - 安装过程中可能会显示多个图形界面指示,用户需仔细阅读并按照提示操作。 ### 3. 配置...

    was6安装集群步骤

    manageprofiles.bat -create -profileName Dmgr01 -profilePath E:\u01\IBM\WebSphere\AppServer/profiles/Dmgr01 -templatePath E:\u01\IBM\WebSphere\AppServer/profileTemplates/dmgr -enableAdminSecurity true...

    webshere7的安装

    2. **删除概要文件**:通过`manageprofiles`命令删除指定的概要文件,如`manageprofiles -delete -profileName AdminAgent01`。 3. **验证与更新**:执行`manageprofiles -validateAndUpdateRegistry`以确保概要文件...

    WAS9集群部署,IHS转发请求

    使用manageprofiles.sh命令创建概要文件。 4. 创建集群和节点:在管理节点上,通过控制台或命令行将其他应用程序节点添加到集群中。之后重启管理节点,并通过控制台查看集群和节点的状态,确保集群环境已经正确设置...

    Was7集群部署、IHS搭建及HTTPS的实现方式

    ./manageprofiles.sh -create -templatePath /opt/IBM/WebSphere/AppServer/profileTemplates/dmgr -profileName Dmgr01 ``` 2. **创建应用服务器(AppSrv01):** - 同样登录到服务器(xx.xx.xx.xx)。 - 在`$WAS_...

    NC631和WAS8.5安装步骤

    - `/ufida/ibm/websphere/appserver/bin/manageprofiles.sh -create -templatePath /ufida/ibm/websphere/appserver/profileTemplates/dmgr -profilename Dmgr01 -profilepath /ufida/ibm/websphere/appserver/...

Global site tag (gtag.js) - Google Analytics