Weblogic provide script tool to create userConfigFile and userConfigKey, that encrypt the current user login and password, can be used by auto_deploy tools.
1. Set domain variable:
cd ${DOMAIN_HOME}/bin
source setDomainEnv.sh
2. Invoke WLST:
java weblogic.WLST
3. Generate user config and user key
connect(<admin_username>,<admin_password>,<admin_url>)
eg.
connect('weblogic','weblogic1','t3://localhost:7101')
Note:
- all parameters enclosed by single quotes(' ')
- should be use t3 protocol
4. Store the user information
storeUserConfig(<location_of_user_config_file>,<location_of_user_key_file>)
eg.
storeUserConfig('localConfigFile','localUserKey')
5. exit WLST
exit()
6. connect to weblogic using configuration file and key file
connect(userConfigFile='localConfigFile',userKeyFile='localUserKey')
7. Set weblogic.userConfigFile and weblogic.userKeyFile properties in build.properties based on your settings
#Location of stored weblogic user config file.
weblogic.userConfigFile=localConfigFile
#Location of stored weblogic user key file.
weblogic.userKeyFile=localUserKey
8. Put the config file and user key as parameters. then it will use the current user login and password.
<target name="configure.jms">
<java classname="weblogic.WLST" fork="true" failonerror="true">
<classpath>
<pathelement location="${fusion.middleware.home}/wlserver_10.3/server/lib/weblogic.jar"/>
</classpath>
<arg line="configJMS.py ${weblogic.adminurl} ${sifagent.weblogic.server} ${weblogic.userConfigFile} ${weblogic.userKeyFile}"/>
</java>
</target>
分享到:
相关推荐
### WebLogic.xml配置详解 #### 一、概述 `weblogic.xml` 文件是 WebLogic Server 应用服务器中专门用于自定义和配置部署在该服务器上的 Web 应用程序的一个重要配置文件。它允许开发人员和系统管理员针对 ...
这是因为 WebLogic 服务器为了更好地管理和操作数据库连接,会使用自己的包装类 `weblogic.jdbc.wrapper.Clob_oracle_sql_CLOB` 来表示 CLOB 类型的数据,而不是直接使用 Oracle 提供的标准 `oracle.sql.CLOB` 类。...
weblogic.xml配置详解.txt
`weblogic.jdbc.vendor.oracle.OracleThinBlob`是Oracle JDBC驱动的一个组件,主要用于处理Oracle数据库中的Blob字段。"Thin"模式意味着它是一种轻量级的驱动,不依赖于Oracle客户端库,而是直接通过网络协议与...
weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic.xml详解weblogic...
本节将详细探讨`weblogic.jar`及其相关的jar包在WebLogic中的作用。 `weblogic.jar`是WebLogic Server的核心库文件,包含了运行WebLogic Server所需的各种类和资源。这个jar包包括了服务器的启动类、管理接口、容器...
本篇文章将详细讲解标题中提到的`weblogic.jar`、`wlclient.jar`和`wls-api.jar`这三款核心的JAR包及其在WebLogic中的作用。 1. **weblogic.jar**: `weblogic.jar`是WebLogic Server的核心库,包含了运行WebLogic...
《weblogic.xml详解:WebLogic应用部署的关键配置》 在Java EE应用服务器的世界里,WebLogic Server是一款广泛使用的中间件,而weblogic.xml是其核心配置文件之一,它定义了在WebLogic环境中运行Web应用程序的各种...
其中,WebLogic的JDBC模块是连接数据库的关键组件,而`weblogic.jdbc.vendor.oracle.OracleResultSet`则是这个模块中的一个重要类,主要用于处理Oracle数据库查询结果集。 `OracleResultSet`是WebLogic针对Oracle...
《weblogic.xml部署文件详解》 weblogic.xml是Oracle WebLogic Server中用于定义Web应用程序部署特性的核心配置文件。这个文件包含了服务器特定的部署描述符元素,这些元素详细描述了Web应用如何在WebLogic环境中...
这个压缩包文件“weblogic.xml配置详解,web服务器相关配置.zip”包含了对WebLogic.xml配置文件的详细解释以及与Web服务器相关的设置,特别是针对C#环境的配置。下面将详细介绍WebLogic.xml文件中的关键元素和它们在...
6. `weblogic.jms.Manager` 和 `weblogic.jms.Session`:用于JMS服务的管理,包括创建和管理队列和主题。 三、使用WebLogic API 使用WebLogic API通常涉及以下步骤: 1. 引入`weblogic.jar`到项目类路径。 2. 创建...
<pathelement location="path/to/ant-weblogic.jar"/> <!-- 其他Ant任务 --> ``` 这样,Ant就可以识别并使用ant-weblogic.jar中的任务定义。 接下来,你可以利用这个库提供的各种任务来管理和控制WebLogic。...
本教程将详细阐述WebLogic 12c的安装过程,并介绍如何使用WLST(WebLogic Scripting Tool)来创建一个自定义的域(domain)。 一、WebLogic 12c安装步骤 1. **下载与准备**:首先,你需要从Oracle官方网站下载...
在示例中,通过运行`c:\bea\user_projects\domains\dssdomain\bin\startWebLogic.cmd`命令,可以启动管理服务器。在此之前,需要设置环境变量,比如`SAVE_CLASSPATH`、`WLS_USER`和`WLS_PW`,分别用于指定类路径、...