JavaScript is required to for searching.
跳过导航链接
退出打印视图
Oracle® ZFS Storage Appliance 管理指南
Oracle 技术网
文档库
PDF
打印视图
反馈
search filter icon
search icon

文档信息

使用本文档

 1 Oracle ZFS Storage Appliance 概述

ZFSSA 主要功能

支持的协议

ZFSSA 数据服务

数据可用性

ZFSSA 配置

浏览器用户界面 (Browser User Interface, BUI)

主窗口

标头

警报

导航

会话注释

标题栏

侧面板和菜单标题

主窗口侧面板和菜单标题

添加项目

移动共享资源

对象名称

非标准 BUI 控件初识

权限

编辑共享资源属性

查看列表项控件

模态对话框

一般用法

状态

基本用法

联网

显示板阈值

Analytics

身份映射

其他图标

支持的浏览器

第 1 层

第 2 层

不受支持的浏览器

命令行界面 (Command Line Interface, CLI)

登录到 CLI

CLI 上下文

根上下文

子上下文

动态子上下文

上一个上下文

返回到之前的上下文

导航到父上下文

上下文和 Tab 补齐功能

执行特定于上下文的命令

未提交的上下文

属性

CLI 属性

获取属性

获取单个属性值

Tab 补齐功能

设置属性

提交设置的属性值

通过隐式提交设置属性值

将属性设置为值列表

将属性设置为包含特殊字符的值

不可变属性

 2 状态

 3 初始配置

 4 网络配置

 5 存储配置

 6 存储区域网络配置

 7 用户配置

 8 设置 ZFSSA 首选项

 9 警报配置

 10 群集配置

 11 ZFSSA 服务

 12 共享资源、项目和模式

 13 复制

 14 影子迁移

 15 CLI 脚本化

 16 维护工作流

 17 集成

索引

未提交的上下文

当在系统中创建新的实体时,与新实体关联的上下文通常以未提交状态创建。例如,通过从 configuration alerts threshold 上下文中执行 create 命令来创建Chapter 9, 警报配置

dory:> configuration alerts thresholds create 
dory:configuration alerts threshold (uncommitted)> 

提示符中的 (uncommitted) 表示这是一个未提交的上下文。未提交的实体通过 commit 命令提交;从未提交的上下文导航到其他位置的任何尝试都将提示进行确认:

dory:configuration alerts threshold (uncommitted)> cd /
Leaving will abort creation of "threshold". Are you sure? (Y/N) 

当提交未提交的实体时,将验证与新实体关联的属性,如果无法创建实体,则将生成错误。例如,创建新阈值警报需要指定统计信息名称;不设置该名称会导致错误的发生:

dory:configuration alerts threshold (uncommitted)> commit
error: missing value for property "statname"

要解决此问题,请修正错误,然后重新尝试提交:

dory:configuration alerts threshold (uncommitted)> set statname=cpu.utilization  
                     statname = cpu.utilization (uncommitted)
dory:configuration alerts threshold (uncommitted)> commit
error: missing value for property "limit"
dory:configuration alerts threshold (uncommitted)> set limit=90
                        limit = 90 (uncommitted)
dory:configuration alerts threshold (uncommitted)> commit
dory:configuration alerts thresholds> list
THRESHOLD          LIMIT       TYPE STATNAME
threshold-000         90     normal cpu.utilization