ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Manage KVM through Cockpit

    IT Discussion
    fedora kvm ovirt virtualization hypervisor management cockpit
    12
    116
    30.6k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • CCWTechC
      CCWTech @JaredBusch
      last edited by

      @jaredbusch said in Manage KVM through Cockpit:

      @ccwtech said in Manage KVM through Cockpit:

      @stacksofplates said in Manage KVM through Cockpit:

      @ccwtech said in Manage KVM through Cockpit:

      I think I have it figured out but don't know how to actually implement it. I'm running Fedora Server 28 Headless - so I have the ISO file for the drivers in /usr/share/virtio-win

      I think I just need to mount the ISO for the VM but not sure how to do that.

      Easiest for a first timer is virt-manager. Just click the IDE CDROM device and then click connect. You can pick your ISO from the browser.

      Can you use virt-manager on a headless install?

      You use virt-manager locally.

      I get this error in terminal in cockpit as well as locally.

      (virt-manager:5847): Gtk-WARNING **: 18:44:07.397: cannot open display:

      1 Reply Last reply Reply Quote 0
      • JaredBuschJ
        JaredBusch @CCWTech
        last edited by

        @ccwtech said in Manage KVM through Cockpit:

        a headless install?

        Also, I fucking hate this phrase.

        WTF is that supposed to mean? FFS, an install is an install. Ever single modern Linux distro runs just find without a KVM attached.

        I installed Fedora Server 28 Minimal. and then disconnected the KVM and never hooked it back up. That makes it headless. But I did not choose some stupid "headless" version of the install.

        1 Reply Last reply Reply Quote 0
        • stacksofplatesS
          stacksofplates @CCWTech
          last edited by stacksofplates

          @ccwtech said in Manage KVM through Cockpit:

          @stacksofplates said in Manage KVM through Cockpit:

          @ccwtech said in Manage KVM through Cockpit:

          I think I have it figured out but don't know how to actually implement it. I'm running Fedora Server 28 Headless - so I have the ISO file for the drivers in /usr/share/virtio-win

          I think I just need to mount the ISO for the VM but not sure how to do that.

          Easiest for a first timer is virt-manager. Just click the IDE CDROM device and then click connect. You can pick your ISO from the browser.

          Can you use virt-manager on a headless install?

          Yeah. You can either X11 forward from the remote system or use a local install and SSH/HTTP/HTTPS for the QEMU connection.

          Sadly virt-manager is the easiest for some things like attaching ISOs. The domain has to be running to attach an ISO however you can't hotplug an IDE device. So you're left with editing the XML for the domain. It's not hard just virsh edit vmname but still annoying.

          CCWTechC 1 Reply Last reply Reply Quote 1
          • CCWTechC
            CCWTech @stacksofplates
            last edited by

            @stacksofplates said in Manage KVM through Cockpit:

            @ccwtech said in Manage KVM through Cockpit:

            @stacksofplates said in Manage KVM through Cockpit:

            @ccwtech said in Manage KVM through Cockpit:

            I think I have it figured out but don't know how to actually implement it. I'm running Fedora Server 28 Headless - so I have the ISO file for the drivers in /usr/share/virtio-win

            I think I just need to mount the ISO for the VM but not sure how to do that.

            Easiest for a first timer is virt-manager. Just click the IDE CDROM device and then click connect. You can pick your ISO from the browser.

            Can you use virt-manager on a headless install?

            Yeah. You can either X11 forward from the remote system or use a local install and SSH/HTTP/HTTPS for the QEMU connection.

            Sadly virt-manager is the easiest for some things like attaching ISOs. The domain has to be running to attach an ISO however you can't hotplug an IDE device. So you're left with editing the XML for the domain. It's not hard just virsh edit vmname but still annoying.

            Like this example:

            <disk type='file' device='cdrom'>
            <driver name='file'/>
            <source file='/usr/share/xenpv-win-32bit/xenpv-win-32bit.iso'/>
            <target dev='hdb'/>
            <readonly/>
            </disk>

            CCWTechC 1 Reply Last reply Reply Quote 0
            • DustinB3403D
              DustinB3403
              last edited by DustinB3403

              @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

              So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would be more that needs to be managed.

              That lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

              Youtube Video – [09:27..]

              CCWTechC stacksofplatesS 3 Replies Last reply Reply Quote 1
              • CCWTechC
                CCWTech @DustinB3403
                last edited by CCWTech

                @dustinb3403 said in Manage KVM through Cockpit:

                @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would me more that needs to be managed.

                That's lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                Youtube Video – [09:27..]

                @scottalanmiller is the person who suggested I should use KVM... But if you have an agent based backup it doesn't really matter.

                JaredBuschJ 1 Reply Last reply Reply Quote 0
                • CCWTechC
                  CCWTech @CCWTech
                  last edited by

                  @ccwtech said in Manage KVM through Cockpit:

                  @stacksofplates said in Manage KVM through Cockpit:

                  @ccwtech said in Manage KVM through Cockpit:

                  @stacksofplates said in Manage KVM through Cockpit:

                  @ccwtech said in Manage KVM through Cockpit:

                  I think I have it figured out but don't know how to actually implement it. I'm running Fedora Server 28 Headless - so I have the ISO file for the drivers in /usr/share/virtio-win

                  I think I just need to mount the ISO for the VM but not sure how to do that.

                  Easiest for a first timer is virt-manager. Just click the IDE CDROM device and then click connect. You can pick your ISO from the browser.

                  Can you use virt-manager on a headless install?

                  Yeah. You can either X11 forward from the remote system or use a local install and SSH/HTTP/HTTPS for the QEMU connection.

                  Sadly virt-manager is the easiest for some things like attaching ISOs. The domain has to be running to attach an ISO however you can't hotplug an IDE device. So you're left with editing the XML for the domain. It's not hard just virsh edit vmname but still annoying.

                  Like this example:

                  <disk type='file' device='cdrom'>
                  <driver name='file'/>
                  <source file='/usr/share/xenpv-win-32bit/xenpv-win-32bit.iso'/>
                  <target dev='hdb'/>
                  <readonly/>
                  </disk>

                  So that worked, I have the CD mounted and can browse to the drivers, however none of them work. I have tried to change the Virtual disk from SCSI to Sata, SCSI and VirtIO but can't seem to get any drivers to allow me to actually install the OS.

                  1 Reply Last reply Reply Quote 0
                  • JaredBuschJ
                    JaredBusch @CCWTech
                    last edited by

                    @ccwtech said in Manage KVM through Cockpit:

                    @dustinb3403 said in Manage KVM through Cockpit:

                    @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                    So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would me more that needs to be managed.

                    That's lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                    Youtube Video – [09:27..]

                    @scottalanmiller is the person who suggested I should use KVM... But if you have an agent based backup it doesn't really matter.

                    Agent based totally matters for people like you that have no idea what they are doing.

                    It matters even for people like Scott because of the many reasons that @StorageNinja listed in the last 24 hours. Scott just refuses to listen to reason when it comes to his current favorite shiny thing.

                    CCWTechC 1 Reply Last reply Reply Quote 0
                    • CCWTechC
                      CCWTech @JaredBusch
                      last edited by

                      @jaredbusch said in Manage KVM through Cockpit:

                      @ccwtech said in Manage KVM through Cockpit:

                      @dustinb3403 said in Manage KVM through Cockpit:

                      @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                      So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would me more that needs to be managed.

                      That's lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                      Youtube Video – [09:27..]

                      @scottalanmiller is the person who suggested I should use KVM... But if you have an agent based backup it doesn't really matter.

                      Agent based totally matters for people like you that have no idea what they are doing.

                      It matters even for people like Scott because of the many reasons that @StorageNinja listed in the last 24 hours. Scott just refuses to listen to reason when it comes to his current favorite shiny thing.

                      I'll let Scott respond to that.

                      Yes, I don't have any idea of what I am doing. That's why this is a LAB environment, so that I can learn. Even if I don't go with it for production, the worst that can happen is I learn more about linux.

                      JaredBuschJ 1 Reply Last reply Reply Quote 2
                      • JaredBuschJ
                        JaredBusch @CCWTech
                        last edited by

                        @ccwtech said in Manage KVM through Cockpit:

                        @jaredbusch said in Manage KVM through Cockpit:

                        @ccwtech said in Manage KVM through Cockpit:

                        @dustinb3403 said in Manage KVM through Cockpit:

                        @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                        So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would me more that needs to be managed.

                        That's lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                        Youtube Video – [09:27..]

                        @scottalanmiller is the person who suggested I should use KVM... But if you have an agent based backup it doesn't really matter.

                        Agent based totally matters for people like you that have no idea what they are doing.

                        It matters even for people like Scott because of the many reasons that @StorageNinja listed in the last 24 hours. Scott just refuses to listen to reason when it comes to his current favorite shiny thing.

                        I'll let Scott respond to that.

                        Yes, I don't have any idea of what I am doing. That's why this is a LAB environment, so that I can learn. Even if I don't go with it for production, the worst that can happen is I learn more about linux.

                        No, that part is exactly the right way to go. But those are the reasons I won't use KVM in production yet at most of my clients.

                        CCWTechC 1 Reply Last reply Reply Quote 1
                        • CCWTechC
                          CCWTech @JaredBusch
                          last edited by

                          @jaredbusch said in Manage KVM through Cockpit:

                          @ccwtech said in Manage KVM through Cockpit:

                          @jaredbusch said in Manage KVM through Cockpit:

                          @ccwtech said in Manage KVM through Cockpit:

                          @dustinb3403 said in Manage KVM through Cockpit:

                          @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                          So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would me more that needs to be managed.

                          That's lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                          Youtube Video – [09:27..]

                          @scottalanmiller is the person who suggested I should use KVM... But if you have an agent based backup it doesn't really matter.

                          Agent based totally matters for people like you that have no idea what they are doing.

                          It matters even for people like Scott because of the many reasons that @StorageNinja listed in the last 24 hours. Scott just refuses to listen to reason when it comes to his current favorite shiny thing.

                          I'll let Scott respond to that.

                          Yes, I don't have any idea of what I am doing. That's why this is a LAB environment, so that I can learn. Even if I don't go with it for production, the worst that can happen is I learn more about linux.

                          No, that part is exactly the right way to go. But those are the reasons I won't use KVM in production yet at most of my clients.

                          What do you use for virtualization for a Windows Server?

                          JaredBuschJ 1 Reply Last reply Reply Quote 0
                          • stacksofplatesS
                            stacksofplates @DustinB3403
                            last edited by

                            @dustinb3403 said in Manage KVM through Cockpit:

                            @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                            Yes there is. It's all done through QMP.

                            ObsolesceO 1 Reply Last reply Reply Quote 0
                            • stacksofplatesS
                              stacksofplates @DustinB3403
                              last edited by

                              @dustinb3403 said in Manage KVM through Cockpit:

                              That lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                              I really want to say something about this but I'll keep my mouth shut.

                              FATeknollogeeF 1 Reply Last reply Reply Quote 0
                              • FATeknollogeeF
                                FATeknollogee @stacksofplates
                                last edited by

                                @stacksofplates said in Manage KVM through Cockpit:

                                @dustinb3403 said in Manage KVM through Cockpit:

                                That lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                                I really want to say something about this but I'll keep my mouth shut.

                                Why would you do that?
                                Aren't we all here to learn?

                                1 Reply Last reply Reply Quote 2
                                • ObsolesceO
                                  Obsolesce @stacksofplates
                                  last edited by

                                  @stacksofplates said in Manage KVM through Cockpit:

                                  @dustinb3403 said in Manage KVM through Cockpit:

                                  @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                                  Yes there is. It's all done through QMP.

                                  Any open source and free KVM backup software that uses this? Or is it something you have to dick around with for weeks to get anywhere with it?

                                  stacksofplatesS JaredBuschJ 2 Replies Last reply Reply Quote 0
                                  • stacksofplatesS
                                    stacksofplates @Obsolesce
                                    last edited by

                                    @obsolesce said in Manage KVM through Cockpit:

                                    @stacksofplates said in Manage KVM through Cockpit:

                                    @dustinb3403 said in Manage KVM through Cockpit:

                                    @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                                    Yes there is. It's all done through QMP.

                                    Any open source and free KVM backup software that uses this? Or is it something you have to dick around with for weeks to get anywhere with it?

                                    I haven't looked. But not existing and not leveraged are two completely different things.

                                    ObsolesceO DustinB3403D 2 Replies Last reply Reply Quote 0
                                    • ObsolesceO
                                      Obsolesce @stacksofplates
                                      last edited by

                                      @stacksofplates said in Manage KVM through Cockpit:

                                      @obsolesce said in Manage KVM through Cockpit:

                                      @stacksofplates said in Manage KVM through Cockpit:

                                      @dustinb3403 said in Manage KVM through Cockpit:

                                      @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                                      Yes there is. It's all done through QMP.

                                      Any open source and free KVM backup software that uses this? Or is it something you have to dick around with for weeks to get anywhere with it?

                                      I haven't looked. But not existing and not leveraged are two completely different things.

                                      Ah, gotcha.

                                      1 Reply Last reply Reply Quote 0
                                      • JaredBuschJ
                                        JaredBusch @CCWTech
                                        last edited by

                                        @ccwtech said in Manage KVM through Cockpit:

                                        @jaredbusch said in Manage KVM through Cockpit:

                                        @ccwtech said in Manage KVM through Cockpit:

                                        @jaredbusch said in Manage KVM through Cockpit:

                                        @ccwtech said in Manage KVM through Cockpit:

                                        @dustinb3403 said in Manage KVM through Cockpit:

                                        @scottalanmiller "there is no backup API or CBT on KVM" these are big items to not have out of the gate.

                                        So being forced to used a 3rd party appliance (even if it were Veeam or UrBackup) would me more that needs to be managed.

                                        That's lack of feature alone makes me question if KVM is production ready and would remove it from my shortlist for 2018.

                                        Youtube Video – [09:27..]

                                        @scottalanmiller is the person who suggested I should use KVM... But if you have an agent based backup it doesn't really matter.

                                        Agent based totally matters for people like you that have no idea what they are doing.

                                        It matters even for people like Scott because of the many reasons that @StorageNinja listed in the last 24 hours. Scott just refuses to listen to reason when it comes to his current favorite shiny thing.

                                        I'll let Scott respond to that.

                                        Yes, I don't have any idea of what I am doing. That's why this is a LAB environment, so that I can learn. Even if I don't go with it for production, the worst that can happen is I learn more about linux.

                                        No, that part is exactly the right way to go. But those are the reasons I won't use KVM in production yet at most of my clients.

                                        What do you use for virtualization for a Windows Server?

                                        Hyper-V and VMWare at clients.

                                        KVM in my lab.

                                        1 Reply Last reply Reply Quote 1
                                        • JaredBuschJ
                                          JaredBusch @Obsolesce
                                          last edited by

                                          @obsolesce said in Manage KVM through Cockpit:

                                          Any open source and free KVM backup software

                                          FOSS is not a requirement to me.

                                          If there was a robust package I could use to get agentless and CBT and file level restore on KVM, I will buy it, if it is reasonable.

                                          ObsolesceO stacksofplatesS FATeknollogeeF 3 Replies Last reply Reply Quote 1
                                          • ObsolesceO
                                            Obsolesce @JaredBusch
                                            last edited by

                                            @jaredbusch said in Manage KVM through Cockpit:

                                            @obsolesce said in Manage KVM through Cockpit:

                                            Any open source and free KVM backup software

                                            FOSS is not a requirement to me.

                                            If there was a robust package I could use to get agentless and CBT and file level restore on KVM, I will buy it, if it is reasonable.

                                            Yeah for sure. Paying for backup software with Hyper-V anyways... no issues paying for a good KVM backup solution as well.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 3 / 6
                                            • First post
                                              Last post