旭旭

bucket_policy.py

web访问swift上传下载方式 http://IP:Port/swift/v1/bucket_name http://IP:Port/swift/v1/bucket_name/object 认证访问方式 http://IP:Port/auth/v1.0 ——————————————————————

Administrator Administrator 发布于 2025-02-07

rebuild重新构建虚机

1、 nova -h |grep rebuild rebuild Shutdown, re-image, and re-boot a server. nova rebuild 命令用于重新构建(rebuild)一个虚拟机实例,这通常包括以下步骤: 1、 关闭虚拟机。 2、 使用指定的镜像重新安装虚拟

Administrator Administrator 发布于 2025-02-07

evacuate逃逸虚机

1、 nova -h |grep evacuate evacuate Evacuate server from failed host. host-evacuate Evacuate all instances from failed host. host-evacuate-live Live mi

Administrator Administrator 发布于 2025-02-07

备份&恢复虚机

备份虚机 1、备份虚机:使用 image-create方式备份 nova image-create 命令用于创建一个镜像(image),这通常是一个虚拟机的快照,可以用于创建新的虚拟机实例。创建的镜像是一个可启动的磁盘映像,可以被多个虚拟机实例使用。 nova image-create 虚机UUID

Administrator Administrator 发布于 2025-02-07

VM资源统计

#统计一个集群,所有计算节点上的VM的资源大小:cpu、内存、磁盘 SELECT SUM(vcpus) AS total_vcpus, SUM(memory_mb) AS total_memory_mb, SUM(memory_mb) / 1024 AS total_memory_gb, SUM(r

Administrator Administrator 发布于 2025-02-07

KVM

使用计算节点制作镜像、创建虚机 qemu-img create -f qcow2 win.qcow2 200G ####创建磁盘 virt-install --virt-type=kvm --name 1206 --vcpus=4 --memory=8192 --cdrom=/root/CentOS

Administrator Administrator 发布于 2025-02-07

GlusterFS卷的挂载、使用

1、client安装 yum -y install glusterfs glusterfs-fuse glusterfs-lib centos-release-gluster7.noarch glusterfs-libs 2、acl允许节点进行挂载 gluster volume set $volum

Administrator Administrator 发布于 2024-11-13

GlusterFS卷的创建

1、分布式复制卷创建 #分布式复制卷, 分布在3台主机节点, 一共9个brick上, 3个副本, 其中1个用于仲裁. gluster volume create songxu-test replica 3 arbiter 1 transport tcp glusterFs-{1..3}-songxu

Administrator Administrator 发布于 2024-11-13

GlusterFS安装部署使用

1、安装软件包 yum install centos-release-gluster yum install -y glusterfs glusterfs-server glusterfs-fuse glusterfs-rdma yum -y install glusterfs-libs \ glu

Administrator Administrator 发布于 2024-11-13

GlusterFS volume info输出解释

gluster volume info ops_test Volume Name: ops_test Type: Distributed-Replicate Volume ID: 780d9015-a2ab-4a47-9401-2c46fead1000 Status: Started Snapsho

Administrator Administrator 发布于 2024-11-13