zoukankan      html  css  js  c++  java
  • 原创:vsphere概念深入系列三:vSphere命令行管理

    假设无法近距离接触物理主机,只能远程命令行管理,。

    以下命令行可以起到点作用。

    首先需要安装vSphere CLI工具。

    image

    启动后界面:

    image

    1.查看datastore内容

    所有命令行工具都可以加上—server,—username,—password等配置参数连接。--help可以显示帮助

    image

    1.2 vifs命令行参数

     vifs [<connection_options>]
       [--copy <source> <target> |
        --dir <remote_dir> |
        --help |
        --force |
        --get <remote_path> <local_path> |
        --listdc |
        --listds [--dc <datacenter>] |
        --mkdir <remote_dir> |
        --move <source> <target> |
        --put <local_path> <remote_path> |
        --rm <remote_path> |
        --rmdir <remote_dir> ]

    DESCRIPTION

    The vifs command performs common operations such as copy, remove, get, and put on files and directories. The command is supported against ESX/ESXi hosts but not against vCenter Server systems.

    Note: While there are some similarities between vifs and DOS or Unix file system management utilities, there are also many differences. For example, vifs does not support wildcard characters or current directories and, as a result, relative path names. Use vifs only as documented.

    1.3示例用法:

    Upload a file to the remote datastore:

     vifs <connection_options> -p "tmp/backup/VM.pl"
        "[StorageName] VM/VM.txt" -Z "ha-datacenter"

    2.列出所有的datastore和数据中心

    image

    如果有多个数据中心,操作datastore的时候需要加上—dc(-Z)参数附加上数据中心的名字。

    3.上传/删除文件到datastore

    3.1删除文件示例

    -Z参数此处可以忽略如果是单机,没有过个数据中心的话。

    image

    3.2下载文件到本机

    注意文件名要大小写区分。该脚本使用web方式HTTP GET得到文件。

    image

    3.3从本机上传文件

    image

    注意:此方法是用web方式的HTTP PUT,而且只能上传并覆盖host已经存在的文件,不能上传新文件。

    报错的例子:

    image

    4.查看文件系统volume

    storage filesystem list
    List the volumes available to the host. This includes VMFS, NAS and VFAT partitions.

    --help | -h
    Show the help message.

    image

    列出快照

    image

  • 相关阅读:
    白话排序算法--快速排序
    白话排序算法--插入排序
    javamail模拟邮箱功能--邮件回复-中级实战篇【邮件回复方法】(javamail API电子邮件实例)
    javamail模拟邮箱功能获取邮件内容-中级实战篇【内容|附件下载方法】(javamail API电子邮件实例)
    JS替换地址栏参数值
    JAVA中使用FTPClient上传下载
    js事件的捕获和冒泡阶段
    js刷新页面方法大全
    js检测上传文件大小
    java正则:不包含某个规则字符串【转】
  • 原文地址:https://www.cnblogs.com/jjkv3/p/3465462.html
Copyright © 2011-2022 走看看