美文网首页
webvirtmgr 部署文档

webvirtmgr 部署文档

作者: 你清澈又神秘 | 来源:发表于2018-03-02 10:49 被阅读790次

    一 安装操作系统

    ● 重装操作系统为centos7.2 ,将原来的数据全部格掉

    ● 最小化安装

    ● 使用lvm将所有容量放到根目录下

    二 安装kvm和libvirt和webvirtmgr

    创建虚拟化环境

    yum install kvm libvirt

    安装webvirtmgr

    安装基础环境
    yum -y install git python-pip libvirt-python libxml2-python python-websockify supervisor nginx
    yum -y install gcc python-devel
    pip install numpy
    安装python环境和Django环境
    git clone git://github.com/retspen/webvirtmgr.git
    cd webvirtmgr
    pip install -r requirements.txt
    ./manage.py syncdb
    ./manage.py collectstatic
    You just installed Django's auth system, which means you don't have any superusers defined.
    Would you like to create one now? (yes/no): yes (Put: yes)
    Username (Leave blank to use 'admin'): admin (Put: your username or login)
    E-mail address: username@domain.local (Put: your email)
    Password: QQzjUUw* (Put: your password)
    Password (again): QQzjUUw* (Put: confirm password)
    Superuser created successfully.
     
    ./manage.py createsuperuser
    

    安装nginx

    cd ..
    mv webvirtmgr /var/www/
    在/etc/nginx/conf.d下添加webvirtmgr.conf文件
    server {
        listen 80 default_server;
     
        server_name $hostname;
        #access_log /var/log/nginx/webvirtmgr_access_log;
     
        location /static/ {
            root /var/www/webvirtmgr/webvirtmgr; # or /srv instead of /var
            expires max;
        }
     
        location / {
            proxy_pass http://127.0.0.1:8000;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
            proxy_set_header Host $host:$server_port;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_connect_timeout 600;
            proxy_read_timeout 600;
            proxy_send_timeout 600;
            client_max_body_size 1024M; # Set higher depending on your needs
        }
    }
    打开/etc/nginx/nginx.conf
    将server域的内容全部注释掉
    #    server {
    #        listen       80 default_server;
    #        server_name  localhost;
    #        root         /usr/share/nginx/html;
    #
    #        #charset koi8-r;
    #
    #        #access_log  /var/log/nginx/host.access.log  main;
    #
    #        # Load configuration files for the default server block.
    #        include /etc/nginx/default.d/*.conf;
    #
    #        location / {
    #        }
    #
    #        # redirect server error pages to the static page /40x.html
    #        #
    #        error_page  404              /404.html;
    #        location = /40x.html {
    #        }
     
    #        # redirect server error pages to the static page /50x.html
    #        #
    #        error_page   500 502 503 504  /50x.html;
    #        location = /50x.html {
    #        }
    #    }
    同时检查下有没有include /etc/nginx/conf.d/*.conf这一项
    重启nginx
    service nginx restart
    关闭selinux和iptables
    

    下载supervisord来管理进程

    Yum install supervisor
    设置为开机启动
    Chkconfig supervisord on
    安装设置supervisor
    Chown –R nginx:nginx /var/www/webvirtmgr
    创建文件/etc/supervisord.d/webvirtmgr.ini
    [program:webvirtmgr]
    command=/usr/bin/python /var/www/webvirtmgr/manage.py run_gunicorn -c /var/www/webvirtmgr/conf/gunicorn.conf.py
    directory=/var/www/webvirtmgr
    autostart=true
    autorestart=true
    logfile=/var/log/supervisor/webvirtmgr.log
    log_stderr=true
    user=nginx
     
    [program:webvirtmgr-console]
    command=/usr/bin/python /var/www/webvirtmgr/console/webvirtmgr-console
    directory=/var/www/webvirtmgr
    autostart=true
    autorestart=true
    stdout_logfile=/var/log/supervisor/webvirtmgr-console.log
    redirect_stderr=true
    user=nginx
     
    启动supervisord
    Supervisord –c /etc/supervisord.conf
     
    看看可以不可以访问web和能否通过web端访问虚拟机
     
    使用tcp方式添加远程node
    在所有宿主机上修改
    修改/etc/sysconfig/libvirtd,开启两个配置项
    LIBVIRTD_CONFIG=/etc/libvirt/libvirtd.conf
    LIBVIRTD_ARGS="—listen
    修改libvirt的配置文件
    vim /etc/libvirt/libvirtd.conf
    listen_tls = 0
    listen_tcp = 1
    tcp_port = "16509"
    listen_addr = "0.0.0.0"
    auth_tcp = "sasl"
     
    重启libvirtd并查看监听的端口
    service libvirtd restart
    netstat -anltp | grep 16509
     
     
     
    添加libvirt的用户zl
    saslpasswd2 -a libvirt zl
    查看存在的用户
    sasldblistusers2 -f /etc/libvirt/passwd.db
    删除存在的用户
    saslpasswd2 -a libvirt -d zl
    此时从另一台机器上访问就可以啦
     
    virsh -c qemu+tcp://IP_address/system nodeinfo/list
    从webvirtmgr端添加就行啦。
    

    三 node端的操作

    安装kvm和libvirt
    设置网桥
    

    四 网卡设置

    每台node上有六块物理网卡,现将其中五块设为网桥。剩余一块用来进行通信。
    添加网桥
    

    五 虚拟机的导入

    virt-install --name=ceshi --ram=8192 --vcpu=4 --disk path=/image/mobileTest,bus=virtio --network bridge=br1 --vnc --vncport=5905 --vnclisten=0.0.0.0 --connect qemu:///system --import –noautoconsole
     
    动态添加网卡(添加完毕后重启网卡会消失,需要改配置文件)
    virsh attach-interface vmname --type bridge --source br1
    查看新增网卡
    # virsh domiflist vm01
    更新XML文件
    # virsh dumpxml vm01 > /etc/libvirt/qemu/vm01.xml
    动态添加硬盘
     
     
     
    kvm libvirt qemu实践系列(四)-kvm虚拟机在线调整配置
      ● centos5.x版本不支持动态调整内存,CPU,以下是在centos6.x上测试
      ● 在线调整配置应该保证虚拟机重启之后依然生效,即调整的同时需要更改xml文件
      ● centos6.x平台下,cpu core数只能在线增加,不能在线减小
    查看虚拟机信息
        shell>  virsh dumpxml cos_v1 | head -n 10
        <domain type='kvm'id='9' xmlns:qemu='http://libvirt.org/schemas/domain/qemu/1.0'>
          <name>cos_v1</name>
          <uuid>d39efd06-6629-aa4a-7241-b36400eade2d</uuid>
          <memory unit='KiB'>4194304</memory>
          <currentMemory unit='KiB'>2097152</currentMemory>
          <vcpu placement='static'current='2'>8</vcpu>            
          <os>
            <type arch='x86_64'machine='rhel6.5.0'>hvm</type>
            <boot dev='hd'/>
            <boot dev='cdrom'/>
    根据上面配置,首先需要明确
    <memory unit='KiB'>4194304</memory>
    <currentMemory unit='KiB'>2097152</currentMemory>
    #为此虚拟机最大分配4G内存,目前使用2G,因此下文内存在线调整区间`1G-4G`
     
    <vcpu placement='static'current='2'>8</vcpu>
    #为虚拟机分配最多8个core,目前使用2个core,因此下文cpu在线增加最多到8个core
    内存,cpu调整
    在线调整虚拟机内存
    #调整为4G
    virsh setmem cos_v1 4G
     
    #减小为2G
    virsh setmem cos_v1 2G
     
    #调整的同时更改xml文件
    virsh setmem cos_v1 2G --config --live
     
    #使用virsh setmem --help 查看在线调整的同时更改xml文件,以保证调整永久生效
    能够在线调整的最大内存不能超过为虚拟机分配的最大内存(上面xml文件中设置<memory unit='KiB'>4194304</memory>最大为4G)调整范围1G-4G
    在线调整虚拟机CPU(只能增大,不能减小)
    virsh setvcpus cos_v1 4
    virsh setvcpus cos_v1 8
    同样,能够动态调整的最大VCPU个数也不能超过为虚拟机设置的最大VCPU数量
    在线添加,移除硬盘
    

    添加qcow2格式硬盘(建议动态添加此格式硬盘)

    #创建qcow2格式的新磁盘,大小为40G
    qemu-img create -f qcow2 /data/vhosts/test/cos_v1-add1.disk 40G
    virsh attach-disk cos_v1 /data/vhosts/test/cos_v1-add1.disk vdb --cache none --subdriver qcow2 --config --persistent
    #虚拟机根磁盘为vda,因此这里使用vdb表示新添加磁盘
    #--config 参数同时更新虚拟机xml文件,确保重启后依然生效
    添加完毕后在服务器端加到lvm里即可
    

    添加raw格式硬盘

    #创建raw格式的新磁盘,大小为40G
    qemu-img create -f raw /data/vhosts/test/cos_v1-add2.disk 40G
    virsh attach-disk lnmptest-107 /data/vhosts/test/cos_v1-add2.disk vdc --cache none --subdriver raw --config --persistent
    

    在线移除硬盘

    #可以查看虚拟机所有磁盘
    virsh domblklist cos_v1
    virsh detach-disk cos_v1 vdb
    网卡,CD-ROM添加
    

    在线添加网卡

    virsh attach-interface --domain cos_v1 --type network --source default --model virtio --config
    #可以查看新添加的网卡
    virsh domiflist cos_v1
    在线添加光盘
    virsh attach-disk centosbase /data_lij/iso/CentOS-6.4-x86_64-bin-DVD1.iso vdd
    

    其他注意事项:

    关闭networkmanager服务
       chkconfig NetworkManager off
       service NetworkManager stop
     
    大多数时候我们虚拟机使用的是 bridge(网桥)直接连到局域网里,所以这个 virbr0 不是必须的(注:不要搞混淆了,bridge 和这里的 virbr0 bridge 是互不相干的)。如何关掉这个 virbr0 呢?先 net-destroy 然后 net-undefine,最后别忘了重启 libvirtd 让设置生效:
    # virsh net-list
    Name                State      Autostart
    -----------------------------------------
    default              active    yes
    # virsh net-destroy default
    Network default destroyed
    # virsh net-undefine default
    Network default has been undefined
    # service libvirtd restart
    Stopping libvirtd daemon:                                  [  OK  ]
    Starting libvirtd daemon:                                  [  OK  ]
    

    相关文章

      网友评论

          本文标题:webvirtmgr 部署文档

          本文链接:https://www.haomeiwen.com/subject/ewooxftx.html