You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by GitBox <gi...@apache.org> on 2021/04/20 11:55:25 UTC

[GitHub] [cloudstack-documentation] DaanHoogland commented on a change in pull request #208: Added workaround for vm name sequence error

DaanHoogland commented on a change in pull request #208:
URL: https://github.com/apache/cloudstack-documentation/pull/208#discussion_r616611727



##########
File path: source/installguide/hypervisor/vsphere.rst
##########
@@ -51,6 +51,17 @@ Software requirements:
    Apply All Necessary Hotfixes. The lack of up-do-date hotfixes can lead to 
    data corruption and lost VMs.
 
+.. note::
+
+   When using vSphere and vCenter versions 6.0 and 6.5 there is a limitation on
+   instance names with a sequence number between 99999 and 1000000. For example if you take
+   a snapshot of a VM, the expected filename will be different to what cloudstack expects.
+   It is advisable to set the sequence number to 1M to prevent issues by executing the
+   following script on your cloudstack database:
+
+   UPDATE cloud.sequence
+   SET value = 1000000
+   WHERE name = 'vm_instance_seq'

Review comment:
       ```suggestion
      WHERE name = 'vm_instance_seq';
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org