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

  • 相关阅读:
    c语言面试基础题
    fwrite(&stud[i],sizeof(struct student_type),1,fp)的基本含义
    对于文件操作函数的记录
    将字符串s1复制到字符串s2。
    将键盘输入的几个数据存储到文件里的程序
    利用指针对二维数组进行遍历查找程序
    常见的C语言错误及程序的调试
    文件的基本操作函数及说明
    一个磁盘信息向另一个磁盘信息的复制
    常用流程图符号和基本流程图
  • 原文地址:https://www.cnblogs.com/jjkv3/p/3465462.html
Copyright © 2011-2022 走看看