云计算day01-KVM_kvmam,怎么入门大数据开发

先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7

深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新大数据全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!

由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新

如果你需要这些资料,可以添加V获取:vip204888 (备注大数据)
img

正文

kvm虚拟机开机启动

console 控制台 登录
kvm运行业务程序
autostart

开机启动autostart,前提:systemctl enable libvirtd;
取消开机启动autostart --disable
centos7的kvm虚拟机:
grubby --update-kernel=ALL --args=“console=ttyS0,115200n8”


#### 5.1 迁移虚拟机



mkdir -p /data
virsh list
virsh destroy centos7
virsh list --all
mv /opt/centos2.raw /data/
virsh start centos7
virsh edit centos7 —>
virsh start centos7
virsh list --all
[root@kvm01 /opt]# virsh dumpxml centos7 |grep raw


#### 5.2 修改kvm虚拟机名字



centos7改为centos2:

[root@kvm01 /opt]# virsh list
Id Name State

6 centos7 running

[root@kvm01 /opt]# ls /data/
centos2.raw
[root@kvm01 /opt]# virsh destroy centos7
Domain centos7 destroyed

[root@kvm01 /opt]# virsh domrename centos7 centos2
Domain successfully renamed

[root@kvm01 /opt]# virsh start centos2
Domain centos2 started

[root@kvm01 /opt]# virsh list --all
Id Name State

7 centos2 running


#### 5.3 挂起与恢复kvm虚拟机



> 
> ![](https://img-blog.csdnimg.cn/img_convert/21fade09c218380f4d48607035efd5bc.png)
> 
> 
> 



挂起:
[root@kvm01 /opt]# virsh suspend centos2
Domain centos2 suspended

[root@kvm01 /opt]# virsh list --all
Id Name State

7 centos2 paused

恢复:
[root@kvm01 /opt]# virsh resume centos2
Domain centos2 resumed

[root@kvm01 /opt]# virsh list --all
Id Name State

7 centos2 running



> 
> **挂起的影响导致时间不同步了**  
>  ![](https://img-blog.csdnimg.cn/img_convert/54b148ec0fd30d404794006833cdb000.png)  
>  **利用ntpdate同步时间**  
>  ntpdate ntp1.aliyun.com
> 
> 
> 


#### 5.4 快速查看vnc端口



> 
> 有了vncdisplay后,一次就能连接到想要的虚拟机,不用从5900一直尝试一台一台的找。
> 
> 
> 



vncdisplay

[root@kvm01 /opt]# virsh vncdisplay centos2
:0


![](https://img-blog.csdnimg.cn/img_convert/f02e3fc97038a1ead39e94580d51f358.png)


#### 5.5 用xshell连接kvm虚拟机



> 
> ![](https://img-blog.csdnimg.cn/img_convert/ea75c52cf2afafd3ebb47ae65e8736c2.png)
> 
> 
> 


#### 5.6 kvm虚拟机上不了网



在宿主机上:
[root@kvm01 /opt]# sysctl -a|grep ipv4|grep ip_forward
net.ipv4.ip_forward = 1

sysctl -p


#### 5.7 kvm虚拟机开机自启动



autostart

[root@kvm01 /opt]# virsh list --all
Id Name State

7 centos2 running

[root@kvm01 /opt]# virsh destroy centos2
Domain centos2 destroyed

[root@kvm01 /opt]# virsh list --all
Id Name State

  • centos2                        shut off
    

[root@kvm01 /opt]# virsh autostart centos2
Domain centos2 marked as autostarted

[root@kvm01 /opt]# systemctl restart libvirtd.service
[root@kvm01 /opt]# virsh list --all
Id Name State

1 centos2 running

其实是创建了软链接:
[root@kvm01 /opt]# ll -h /etc/libvirt/qemu/autostart/
total 0
lrwxrwxrwx 1 root root 29 Sep 2 15:55 centos2.xml -> /etc/libvirt/qemu/centos2.xml


#### 5.8 console登录



> 
> 纯文字版的控制台
> 
> 
> 



[root@kvm01 /opt]# virsh console centos2
Connected to domain centos2
Escape character is ^]

crtl + ] 退出



> 
> **kvm虚拟机改内核参数命令**
> 
> 
> 



[root@localhost ~]# cp /boot/grub2/grub.cfg /tmp/
[root@localhost ~]# grubby --update-kernel=ALL --args=“console=ttyS0,115200n8”
[root@localhost ~]# vim /boot/grub2/grub.cfg #自动添加了内核参数



> 
> ![](https://img-blog.csdnimg.cn/img_convert/1030f4ef5638e986b8b7da31d5fa952d.png)
> 
> 
> 


#### 5.9 在宿主机上利用console登录kvm虚拟机



重启kvm虚拟机:
virsh destroy centos2 关闭kvm虚拟机
virsh start centos2 开启kvm虚拟机
virsh console centos2 在宿主机上用console登录



> 
> ![](https://img-blog.csdnimg.cn/img_convert/8fe051622da00ad4eaf8db76e35f58d9.png)
> 
> 
> 


### 6. kvm虚拟机虚拟磁盘格式转换和快照管理



> 
> raw: 裸格式,占用空间比较大,不支持快照功能,不方便传输,性能较好,不方便传输 总50G 占用50G
> 
> 
> 



> 
> qcow2: cow(copy on write)占用空间小,支持快照,性能比raw差一点,方便传输 总50G 占用2G
> 
> 
> 



virt-install --virt-type kvm --os-type=linux --os-variant rhel7 --name centos7 --memory 1024 –
vcpus 1 --disk /opt/centos2.raw,format=raw,size=10 --cdrom /opt/CentOS-7-x86_64-DVD-1708.iso
–network network=default --graphics vnc,listen=0.0.0.0 --noautoconsole

virt-install --virt-type kvm --os-type=linux --os-variant rhel7 --name centos7 --memory 1024 –
vcpus 1 --disk /data/lcx.qcow2,format=qcow2,size=10 --cdrom /data/CentOS-7.2-x86_64-DVD-
1511.iso --network network=default --graphics vnc,listen=0.0.0.0 --noautoconsole


#### 6.1 磁盘工具的常用命令



qemu -img info,create,resize,convert

查看虚拟磁盘信息
qemu-img info test.qcow2

创建一块qcow2格式的虚拟硬盘:
qemu-img create -f qcow2 test.qcow2 2G

调整磁盘磁盘容量 只能扩容不能缩,数据会丢失,17楼见~
qemu-img resize test.qcow2 +20G

raw转qcow2:qemu-img convert -f raw -O qcow2 lcx.raw lcx.qcow2

convert [-f fmt] [-O output_fmt] filename output_filename
-c 压缩
virsh edit web01
virsh destroy web01
virsh start web01


#### 6.2 把磁盘格式改为qcow2格式



> 
> 原格式是raw格式,远程复制的时候不方便,为了提高传输效率,可以转换为qcow2格式
> 
> 
> 



[root@kvm01 /opt]# time qemu-img convert -f raw -O qcow2 /data/centos2.raw /data/centos2.qcow2

real 0m9.885s
user 0m0.780s
sys 0m8.982s

virsh destroy centos2
virsh edit centos2

virsh start centos2 [root@kvm01 /opt]# virsh dumpxml centos2 |grep qcow2

[root@kvm01 /opt]# ll -h /data/
total 2.2G
-rw-r–r-- 1 qemu qemu 1.1G Sep 2 17:19 centos2.qcow2
-rw------- 1 root root 10G Sep 2 17:08 centos2.raw



> 
> ![](https://img-blog.csdnimg.cn/img_convert/be273889a0e3e9c73f34b3b5997eb2b3.png)
> 
> 
> 


### 7.快照管理



创建快照 virsh snapshot-create-as centos7 --name install_ok
查看快照 virsh snapshot-list centos7
还原快照 virsh snapshot-revert centos7 --snapshotname 1516574134
删除快照 virsh snapshot-delete centos7 --snapshotname 1516636570

raw不支持做快照,qcow2支持快照,并且快照就保存在qcow2的磁盘文件中

快照存储的位置在虚拟磁盘中
qemu-img info /data/centos2.qcow2



创建快照
[root@kvm01 ~]# virsh snapshot-create-as centos2 --name --name install_nginx
Domain snapshot 1567416293 created

查看快照
[root@kvm01 /opt]# virsh snapshot-list centos2
Name Creation Time State

1567416293 2019-09-02 17:24:53 +0800 running
install_nginx 2019-09-02 17:40:43 +0800 running

还原快照
virsh snapshot-revert centos2 --snapshotname install_nginx

删除快照
virsh snapshot-revert centos2 --snapshotname install_nginx


### 8. kvm虚拟机克隆


#### 8.1 完整克隆



自动挡:
virt-clone --auto-clone -o web01 -n web02 (完整克隆)


手动挡:



cp centos2-clone.qcow2 web02.qcow2
virsh dumpxml web01 >web02.xml
vim web02.xml #修改虚拟机的名字
#删除虚拟机uuid
#删除mac地址
#修改磁盘路径
virsh define web02.xml
virsh start web02



> 
> ![](https://img-blog.csdnimg.cn/img_convert/37ca92406628aacab00f1f94f51fdfdd.png)
> 
> 
> 


#### 8.2 链接克隆



> 
> **a:生成虚拟机磁盘文件**
> 
> 
> 



[root@kvm01 /data]# qemu-img create -f qcow2 -b web01.qcow2 web03.qcow2



> 
> **b:生成虚拟机的配置文件**
> 
> 
> 



virsh dumpxml web01 >web03.xml
vim web03.xml
#修改虚拟机的名字
web03
#删除虚拟机uuid
8e505e25-5175-46ab-a9f6-feaa096daaa4
#删除mac地址

#修改磁盘路径



> 
> **c:导入虚拟机并进行启动测试**
> 
> 
> 



virsh define web03.xml
virsh start web03


#### 8.3 全自动链接克隆脚本



[root@kvm01 scripts]# cat link_clone.sh
#!/bin/bash
old_vm=$1
链接克隆:
qemu-img create -f qcow2 -b 49-web03.qcow2 49-web04.qcow2
virt-install --virt-type kvm --os-type=linux --os-variant rhel7 --name web04 --memory 1024 --vcpus
1 --disk /opt/web04.qcow2 --boot hd --network bridge=br0 --graphics vnc,listen=0.0.0.0 –
noautoconsole
4.8:kvm虚拟机的桥接网络
默认的虚拟机网络是NAT模式,网段192.168.122.0/24
4.8.1:创建桥接网卡
创建桥接网卡命令
virsh iface-bridge eth0 br0

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注大数据)
img

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

–os-variant rhel7 --name web04 --memory 1024 --vcpus
1 --disk /opt/web04.qcow2 --boot hd --network bridge=br0 --graphics vnc,listen=0.0.0.0 –
noautoconsole
4.8:kvm虚拟机的桥接网络
默认的虚拟机网络是NAT模式,网段192.168.122.0/24
4.8.1:创建桥接网卡
创建桥接网卡命令
virsh iface-bridge eth0 br0

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以添加V获取:vip204888 (备注大数据)
[外链图片转存中…(img-oOpLDUfc-1713171444540)]

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值