本文重点:

  1. WLST在线模式配置现有的domains。
  2. WLST离线模式配置现有的domains。

 
 

 
 

1、WLST在线模式配置现有的domains

由于和一个活动的domain进行交互,所有的在线更改必须由weblogic变更管理的进程来做控制。

 
 

例1:wlst脚本创建一个受管服务器

connect("username", "password", "0.0.0.0:port) # 连接一个运行中的实例

edit() # 进入可更改的树

startEdit() # 开启一个start session,获取一个配置锁

svr = cmo.createServer("managedServer") # 创建一个受管服务器

svr.setListenPort(8001) # 设置受管服务器端口

svr.setListenAddress("my-address") # 设置监听地址

save() # 保存更改,类似控制台中点击保存按钮

activate(block="true") # 激活所有更改,类似控制台中应用更改按钮,block参数代表是否等待activate操作完成才进入下一步操作,true代表等待。

 
 

# get the server mbean to target it

tBean = getMBean("Servers/managedServer") # 判断是否创建成功

if tBean != None:

print "Found our target"

 
 

disconnect() # 断开连接

exit() # 退出脚本

 
 

例2:修改至生产模式

wls:/offline> connect('weblogic', '!QAZ2wsx', '127.0.0.1:7001')

Connecting to t3://127.0.0.1:7001 with userid weblogic ...

Successfully connected to Admin Server 'AdminServer' that belongs to domain 'base_domains'.

 
 

Warning: An insecure protocol was used to connect to the

server. To ensure on-the-wire security, the SSL port or

Admin port should be used instead.

 
 

wls:/base_domains/serverConfig> edit()

Location changed to edit tree. This is a writable tree with

DomainMBean as the root. To make changes you will need to start

an edit session via startEdit().

 
 

For more help, use help(edit)

 
 

wls:/base_domains/edit> startEdit()

Starting an edit session ...

Started edit session, please be sure to save and activate your

changes once you are done.

wls:/base_domains/edit !> cmo.setProductionModeEnabled(false)

wls:/base_domains/edit !> activate()

Activating all your changes, this may take a while ...

The edit lock associated with this edit session is released

once the activation is completed.

 
 

The following non-dynamic attribute(s) have been changed on MBeans

that require server re-start:

MBean Changed : com.bea:Name=AdminServer,Type=WebServerLog,Server=AdminServer,WebServer=AdminServer

Attributes changed : RotateLogOnStartup

 
 

MBean Changed : com.bea:Name=Server-0,Type=WebServerLog,Server=Server-0,WebServer=Server-0

Attributes changed : RotateLogOnStartup

 
 

MBean Changed : com.bea:Name=AdminServer,Type=Log,Server=AdminServer

Attributes changed : RotateLogOnStartup

 
 

MBean Changed : com.bea:Name=AdminServer,Type=DataSourceLogFile,DataSource=AdminServer,Server=AdminServer

Attributes changed : RotateLogOnStartup

 
 

MBean Changed : com.bea:Name=base_domains,Type=Log

Attributes changed : RotateLogOnStartup

 
 

MBean Changed : com.bea:Name=base_domains,Type=Domain

Attributes changed : ProductionModeEnabled

 
 

MBean Changed : com.bea:Name=Server-0,Type=Log,Server=Server-0

Attributes changed : RotateLogOnStartup

 
 

MBean Changed : com.bea:Name=Server-0,Type=DataSourceLogFile,DataSource=Server-0,Server=Server-0

Attributes changed : RotateLogOnStartup

 
 

Activation completed

wls:/base_domains/edit> exit()

 
 

 
 

Exiting WebLogic Scripting Tool.

例3:跟踪配置更改

wls:/offline> connect('weblogic', '!QAZ2wsx', '127.0.0.1:7001')

Connecting to t3://127.0.0.1:7001 with userid weblogic ...

Successfully connected to Admin Server 'AdminServer' that belongs to domain 'base_domains'.

 
 

Warning: An insecure protocol was used to connect to the

server. To ensure on-the-wire security, the SSL port or

Admin port should be used instead.

 
 

wls:/base_domains/serverConfig> edit()

Location changed to edit tree. This is a writable tree with

DomainMBean as the root. To make changes you will need to start

an edit session via startEdit().

 
 

For more help, use help(edit)

 
 

wls:/base_domains/edit> startEdit()

Starting an edit session ...

Started edit session, please be sure to save and activate your

changes once you are done.

wls:/base_domains/edit !> cmo.createServer('managed2')

[MBeanServerInvocationHandler]com.bea:Name=managed2,Type=Server

wls:/base_domains/edit !> cd('Servers/managed2')

wls:/base_domains/edit/Servers/managed2 !> cmo.setListenPort(7702)

wls:/base_domains/edit/Servers/managed2 !> showChanges()
# 查看未提交更改

 
 

All changes that are made but not yet activated are:

 
 

MBean Changed : com.bea:Name=base_domains,Type=Domain

Operation Invoked : create

Attribute Modified : Servers

Attributes Old Value : null

Attributes New Value : managed2

Server Restart Required : false

 
 

 
 

MBean Changed : com.bea:Name=managed2,Type=Server

Operation Invoked : modify

Attribute Modified : ListenPort

Attributes Old Value : null

Attributes New Value : 7702

Server Restart Required : false

 
 

wls:/base_domains/edit/Servers/managed2 !> save()

Saving all your changes ...

Saved all your changes successfully.

wls:/base_domains/edit/Servers/managed2 !> activate()

Activating all your changes, this may take a while ...

The edit lock associated with this edit session is released

once the activation is completed.

Activation completed

例4:另两个重要的命令undo和cancelEdit

undo:可以反转没有保存或者没有激活的更改。

cancelEdit:直接退出edit(),会反转没有保存或者没有激活的更改,还会释放编辑锁。

 
 

更多的属性操作和更改:

上一节中描述的标准change-management命令是用于调用configurationManagerMBean中操作的便捷命令。 除了这些操作之外,configurationManagerMBean还包含描述编辑会话的属性和操作。

 
 

有关详细信息,请参阅Oracle WebLogic Server MBean Reference中的"configurationManagerMBean"。

 
 

要访问此MBean,请使用WLST getConfigManager命令。

 
 

示例中的WLST联机脚本以管理员身份将WLST连接到服务器实例,检查进行更改的当前编辑器是否是特定的运算符,然后取消配置编辑。 该脚本还会清除所有已完成的激活任务。

 
 

  1. WLST离线模式配置现有的domains(本文略,详见:03-07_创建域自定义模版)

     
     

03-14_WLST配置现有的Domain的更多相关文章

  1. 【CAS单点登录视频教程】 第03集 -- 配置 tomcat的 ssl

    目录 ----------------------------------------- [CAS单点登录视频教程] 第06集[完] -- Cas认证 学习 票据认证FormsAuthenticati ...

  2. [原创]OpenEuler20.03安装配置PostgreSQL13.4详细图文版

    OpenEuler安装配置PostgreSQL 编写时间:2021年9月18日 作者:liupp 邮箱:liupp@88.com 序号 更新内容 更新日期 更新人 1 完成第一至三章内容编辑: 202 ...

  3. hadoop生态搭建(3节点)-03.zookeeper配置

    # https://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html # ===== ...

  4. jenkins学习 03 jenkins配置Maven项目

    我们的产品使用Git作为版本管理工具,而jenkins需要git插件来支持git,所以我们需要为jenkins添加git插件. 在Available tab页中找到Git Plugin 点击下方的In ...

  5. Spring4学习回顾之路03—XML配置Bean ,依赖注入的方式

    配置Bean的形式可以基于XML文件的方式,也可以基于注解的方式,而Bean的配置方式可以通过全类名(反射),通过工厂方式和FactoryBean. XML形式 <?xml version=&q ...

  6. win7系统保护配置现错误“文件名、目录名或卷标语法不正确。(0x8007007B)

    windows7下系统保护功能很是鸡肋,有事会出现一下两个问题: 1.出现错误“文件名.目录名或卷标语法不正确.(0x8007007B) 2.保护设置列表中出现“Windows7_os(c:)(找不到 ...

  7. SpringBoot2.0 基础案例(03):配置系统全局异常映射处理

    一.异常分类 这里的异常分类从系统处理异常的角度看,主要分类两类:业务异常和系统异常. 1.业务异常 业务异常主要是一些可预见性异常,处理业务异常,用来提示用户的操作,提高系统的可操作性. 常见的业务 ...

  8. Azure AD Domain Service(二)为域服务中的机器配置 Azure File Share 磁盘共享

    一,引言 Azure File Share 是支持两种认证方式的! 1)Active Directory 2)Storage account key 记得上次分析的 "Azure File ...

  9. 【CAS单点登录视频教程】 第04集 -- tomcat下配置https环境

    目录 ----------------------------------------- [CAS单点登录视频教程] 第06集[完] -- Cas认证 学习 票据认证FormsAuthenticati ...

随机推荐

  1. 12-部署EFK插件

    配置和安装 EFK 官方文件目录:cluster/addons/fluentd-elasticsearch $ ls *.yaml es-controller.yaml es-service.yaml ...

  2. [EXP]Joomla! Component Easy Shop 1.2.3 - Local File Inclusion

    # Exploit Title: Joomla! Component Easy Shop - Local File Inclusion # Dork: N/A # Date: -- # Exploit ...

  3. Neo4j学习笔记

    1. 环境搭建 正好最近同学有一台阿里云服务器借我玩,就尝试着在服务器上搭了Neo4j. 环境:CentOS Linux release 7.4.1708 (Core) 安装Java 安装Neo4j需 ...

  4. logrotate实现Mysql慢日志分割

    MySQL慢日志? MySQL的慢查询日志是MySQL提供的一种日志记录,它用来记录在MySQL中响应时间超过阀值的语句,具体指运行时间超过long_query_time值的SQL,则会被记录到慢查询 ...

  5. Git 强制回退到某个历史版本再推送到远程

    1. 使用 git log 命令历史版本记录回退版本 git reset --hard f6a7c803a6931a9eca011d4e097389e0845cbe49 2. 推送到远程 git pu ...

  6. 从零开始学 Web 之 JavaScript(一)JavaScript概述

    大家好,这里是「 Daotin的梦呓 」从零开始学 Web 系列教程.此文首发于「 Daotin的梦呓 」公众号,欢迎大家订阅关注.在这里我会从 Web 前端零基础开始,一步步学习 Web 相关的知识 ...

  7. GTest的安装与使用

    安装GTest 1.安装源代码 下载gtest,release-1.8.0 git clone https://github.com/google/googletest gtest编译 cd goog ...

  8. vue-03-style与class

    1, 绑定html class 1), 直接绑定 <div> isActive 为true, 则显示 active css <p v-bind:class="{active ...

  9. [TensorFlow] Introduction to TensorFlow Datasets and Estimators

    Datasets and Estimators are two key TensorFlow features you should use: Datasets: The best practice ...

  10. JavaWeb学习(二十三)———Filter(过滤器)

    一.Filter简介 Filter也称之为过滤器,它是Servlet技术中最激动人心的技术,WEB开发人员通过Filter技术,对web服务器管理的所有web资源:例如Jsp, Servlet, 静态 ...