XL create says it parsed the .cfg file succesfully but for some reason it doesn't actually change anything in...











up vote
0
down vote

favorite












Currently I am trying to duplicate a VM with Xen. Duplicating the VM is working fine. However, I can not manage to dynamically change the IP-address and hostname of the VM.



First the steps that I followed:
* I shutdown the VM (xl shutdown Ubuntu16.04)
* Next I created a new LVM in VolumeGroupXen and copied the LVM of the VM I want to duplicate inside.



sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-disk' /dev/VolumeGroupXen/Ubuntu16.041-disk
sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-swap' /dev/VolumeGroupXen/Ubuntu16.041-swap


Next I copied the original config file (Ubuntu16.04.cfg) to Ubuntu16.041.cfg



With the following input:



:/etc/xen$ cat Ubuntu16.041.cfg



#
# Configuration file for the Xen instance Ubuntu16.04, created
# by xen-tools 4.7 on Thu Nov 22 16:40:28 2018.
#

#
# Kernel + memory size
#


bootloader = '/usr/lib/xen-4.9/bin/pygrub'

vcpus = '2'
memory = '1024'


#
# Disk device(s).
#
root = '/dev/xvda2 ro'
disk = [
'phy:/dev/VolumeGroupXen/Ubuntu16.041-disk,xvda2,w',
'phy:/dev/VolumeGroupXen/Ubuntu16.041-swap,xvda1,w',
]


#
# Physical volumes
#


#
# Hostname
#
name = 'Ubuntu16.041'

#
# Networking
#
vif = [ 'ip=xxx.xxx.xxx.121 ,mac=00:16:3E:C1:55:39,bridge=xenbr0' ]

#
# Behaviour
#
on_poweroff = 'destroy'
on_reboot = 'restart'
on_crash = 'restart'


As you can see I adjusted the disks to the correct path (which works fine) and I adjusted the IP and hostname. However, both the IP and hostname stay the same (as the original VM) after booting the VM with xl create Ubuntu16.041.



Does anyone know what I am doing wrong? Or is it simply not possible to update the IP address and hostname like this?










share|improve this question


























    up vote
    0
    down vote

    favorite












    Currently I am trying to duplicate a VM with Xen. Duplicating the VM is working fine. However, I can not manage to dynamically change the IP-address and hostname of the VM.



    First the steps that I followed:
    * I shutdown the VM (xl shutdown Ubuntu16.04)
    * Next I created a new LVM in VolumeGroupXen and copied the LVM of the VM I want to duplicate inside.



    sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-disk' /dev/VolumeGroupXen/Ubuntu16.041-disk
    sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-swap' /dev/VolumeGroupXen/Ubuntu16.041-swap


    Next I copied the original config file (Ubuntu16.04.cfg) to Ubuntu16.041.cfg



    With the following input:



    :/etc/xen$ cat Ubuntu16.041.cfg



    #
    # Configuration file for the Xen instance Ubuntu16.04, created
    # by xen-tools 4.7 on Thu Nov 22 16:40:28 2018.
    #

    #
    # Kernel + memory size
    #


    bootloader = '/usr/lib/xen-4.9/bin/pygrub'

    vcpus = '2'
    memory = '1024'


    #
    # Disk device(s).
    #
    root = '/dev/xvda2 ro'
    disk = [
    'phy:/dev/VolumeGroupXen/Ubuntu16.041-disk,xvda2,w',
    'phy:/dev/VolumeGroupXen/Ubuntu16.041-swap,xvda1,w',
    ]


    #
    # Physical volumes
    #


    #
    # Hostname
    #
    name = 'Ubuntu16.041'

    #
    # Networking
    #
    vif = [ 'ip=xxx.xxx.xxx.121 ,mac=00:16:3E:C1:55:39,bridge=xenbr0' ]

    #
    # Behaviour
    #
    on_poweroff = 'destroy'
    on_reboot = 'restart'
    on_crash = 'restart'


    As you can see I adjusted the disks to the correct path (which works fine) and I adjusted the IP and hostname. However, both the IP and hostname stay the same (as the original VM) after booting the VM with xl create Ubuntu16.041.



    Does anyone know what I am doing wrong? Or is it simply not possible to update the IP address and hostname like this?










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Currently I am trying to duplicate a VM with Xen. Duplicating the VM is working fine. However, I can not manage to dynamically change the IP-address and hostname of the VM.



      First the steps that I followed:
      * I shutdown the VM (xl shutdown Ubuntu16.04)
      * Next I created a new LVM in VolumeGroupXen and copied the LVM of the VM I want to duplicate inside.



      sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-disk' /dev/VolumeGroupXen/Ubuntu16.041-disk
      sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-swap' /dev/VolumeGroupXen/Ubuntu16.041-swap


      Next I copied the original config file (Ubuntu16.04.cfg) to Ubuntu16.041.cfg



      With the following input:



      :/etc/xen$ cat Ubuntu16.041.cfg



      #
      # Configuration file for the Xen instance Ubuntu16.04, created
      # by xen-tools 4.7 on Thu Nov 22 16:40:28 2018.
      #

      #
      # Kernel + memory size
      #


      bootloader = '/usr/lib/xen-4.9/bin/pygrub'

      vcpus = '2'
      memory = '1024'


      #
      # Disk device(s).
      #
      root = '/dev/xvda2 ro'
      disk = [
      'phy:/dev/VolumeGroupXen/Ubuntu16.041-disk,xvda2,w',
      'phy:/dev/VolumeGroupXen/Ubuntu16.041-swap,xvda1,w',
      ]


      #
      # Physical volumes
      #


      #
      # Hostname
      #
      name = 'Ubuntu16.041'

      #
      # Networking
      #
      vif = [ 'ip=xxx.xxx.xxx.121 ,mac=00:16:3E:C1:55:39,bridge=xenbr0' ]

      #
      # Behaviour
      #
      on_poweroff = 'destroy'
      on_reboot = 'restart'
      on_crash = 'restart'


      As you can see I adjusted the disks to the correct path (which works fine) and I adjusted the IP and hostname. However, both the IP and hostname stay the same (as the original VM) after booting the VM with xl create Ubuntu16.041.



      Does anyone know what I am doing wrong? Or is it simply not possible to update the IP address and hostname like this?










      share|improve this question













      Currently I am trying to duplicate a VM with Xen. Duplicating the VM is working fine. However, I can not manage to dynamically change the IP-address and hostname of the VM.



      First the steps that I followed:
      * I shutdown the VM (xl shutdown Ubuntu16.04)
      * Next I created a new LVM in VolumeGroupXen and copied the LVM of the VM I want to duplicate inside.



      sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-disk' /dev/VolumeGroupXen/Ubuntu16.041-disk
      sudo lvcreate -L5120 -s -n '/dev/VolumeGroupXen/Webserver2-swap' /dev/VolumeGroupXen/Ubuntu16.041-swap


      Next I copied the original config file (Ubuntu16.04.cfg) to Ubuntu16.041.cfg



      With the following input:



      :/etc/xen$ cat Ubuntu16.041.cfg



      #
      # Configuration file for the Xen instance Ubuntu16.04, created
      # by xen-tools 4.7 on Thu Nov 22 16:40:28 2018.
      #

      #
      # Kernel + memory size
      #


      bootloader = '/usr/lib/xen-4.9/bin/pygrub'

      vcpus = '2'
      memory = '1024'


      #
      # Disk device(s).
      #
      root = '/dev/xvda2 ro'
      disk = [
      'phy:/dev/VolumeGroupXen/Ubuntu16.041-disk,xvda2,w',
      'phy:/dev/VolumeGroupXen/Ubuntu16.041-swap,xvda1,w',
      ]


      #
      # Physical volumes
      #


      #
      # Hostname
      #
      name = 'Ubuntu16.041'

      #
      # Networking
      #
      vif = [ 'ip=xxx.xxx.xxx.121 ,mac=00:16:3E:C1:55:39,bridge=xenbr0' ]

      #
      # Behaviour
      #
      on_poweroff = 'destroy'
      on_reboot = 'restart'
      on_crash = 'restart'


      As you can see I adjusted the disks to the correct path (which works fine) and I adjusted the IP and hostname. However, both the IP and hostname stay the same (as the original VM) after booting the VM with xl create Ubuntu16.041.



      Does anyone know what I am doing wrong? Or is it simply not possible to update the IP address and hostname like this?







      xen






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 22 at 16:46









      kaspertje100

      305




      305





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53435315%2fxl-create-says-it-parsed-the-cfg-file-succesfully-but-for-some-reason-it-doesn%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53435315%2fxl-create-says-it-parsed-the-cfg-file-succesfully-but-for-some-reason-it-doesn%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Trompette piccolo

          How do I get these specific pathlines to nodes?

          What visual should I use to simply compare current year value vs last year in Power BI desktop