<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>VHI - Spheron1</title>
	<atom:link href="https://www.spheron1.uk/tag/vhi/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.spheron1.uk</link>
	<description></description>
	<lastBuildDate>Wed, 10 Dec 2025 17:04:24 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
	<item>
		<title>Acronis Cyber Infrastructure/Virtuozzo Hybrid Infrastructure S3 admin command line</title>
		<link>https://www.spheron1.uk/2025/12/10/acronis-cyber-infrastructure-virtuozzo-hybrid-infrastructure-s3-admin-command-line/</link>
					<comments>https://www.spheron1.uk/2025/12/10/acronis-cyber-infrastructure-virtuozzo-hybrid-infrastructure-s3-admin-command-line/#respond</comments>
		
		<dc:creator><![CDATA[digitaldisaster]]></dc:creator>
		<pubDate>Wed, 10 Dec 2025 17:04:23 +0000</pubDate>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[ACI]]></category>
		<category><![CDATA[Acronis]]></category>
		<category><![CDATA[Acronis Cyber Infrastructure]]></category>
		<category><![CDATA[ostor]]></category>
		<category><![CDATA[S3]]></category>
		<category><![CDATA[VHI]]></category>
		<category><![CDATA[Virtuozzo]]></category>
		<category><![CDATA[Virtuozzo Hybrid Infrastructure]]></category>
		<category><![CDATA[Virtuozzo Hybrid Infrastructure (VHI]]></category>
		<guid isPermaLink="false">https://www.spheron1.uk/?p=4947</guid>

					<description><![CDATA[<p>Acronis Cyber Infrastructure (ACI)/Virtuozzo Hybrid Infrastructure (VHI) provides a command line interface (CLI) utility for administering S3 accounts, users, buckets etc. called &#8220;ostor-s3-admin&#8220;, however it isn&#8217;t the most intuitive CLI tool to use and the documentation for this is both somewhat sparse and rather scattered around in multiple different places. The first issue you will probably run into when trying&#46;&#46;&#46;</p>
<p>The post <a href="https://www.spheron1.uk/2025/12/10/acronis-cyber-infrastructure-virtuozzo-hybrid-infrastructure-s3-admin-command-line/">Acronis Cyber Infrastructure/Virtuozzo Hybrid Infrastructure S3 admin command line</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">Acronis Cyber Infrastructure (ACI)/Virtuozzo Hybrid Infrastructure (VHI) provides a command line interface (CLI) utility for administering S3 accounts, users, buckets etc. called &#8220;<em>ostor-s3-admin</em>&#8220;, however it isn&#8217;t the most intuitive CLI tool to use and the documentation for this is both somewhat sparse and rather scattered around in multiple different places.</p>



<p class="wp-block-paragraph">The first issue you will probably run into when trying to use the &#8220;<em>ostor-s3-admin</em>&#8221; command is the following error message: </p>



<pre class="wp-block-code"><code>Volume id (-V) must be specified</code></pre>



<p class="wp-block-paragraph">You can get a list of all of your volume IDs by running &#8220;<em>ostor-ctl get-config -V</em>&#8220;. This will give you something like the following:</p>



<pre class="wp-block-code"><code>VOL_ID             TYPE     STATE
0100000000000002   OBJ     READY</code></pre>



<p class="wp-block-paragraph">You can then specify the appropriate volume ID with the &#8220;<em>-V</em>&#8221; argument to the &#8220;<em>ostor-s3-admin</em>&#8221; command.</p>



<p class="wp-block-paragraph">Another common error that you can run into is something along the lines of:</p>



<pre class="wp-block-code"><code>Request failed due to internal error
Command=list-user-accounts failed with error=8(Requested object not found)</code></pre>



<p class="wp-block-paragraph">Although the exact message that you receive will vary depending upon the command that you are trying to run.</p>



<p class="wp-block-paragraph">This error is caused by not specifying a user account to execute the command as. I resolved this by grabbing the main admin account user ID from the ACI/VHI S3 admin web interface and passing that with the &#8220;<em>-i</em>&#8221; argument.<br>Alternatively you can use &#8220;<em>-e</em>&#8221; instead of &#8220;<em>-i</em>&#8221; and pass the email address of the user account that you want to run the command as.</p>



<p class="wp-block-paragraph">Another rather vague and unhelpful error message that you may receive from &#8220;<em>ostor-s3-admin</em>&#8221; is:</p>



<pre class="wp-block-code"><code>Bad user management cmd</code></pre>



<p class="wp-block-paragraph">This actually means that you have the arguments before the command &#8211; the &#8220;<em>ostor-s3-admin</em>&#8221; utility expects to receive the command (e.g. &#8220;<em>list-user-accounts</em>&#8221; or &#8220;<em>list-all-buckets</em>&#8220;) <em>before</em> the arguments such as the volume ID and user ID/email.</p>



<p class="wp-block-paragraph">So for example the full commands should be run as:</p>



<pre class="wp-block-code"><code>ostor-s3-admin list-all-buckets -V volumeid -i userid</code></pre>



<p class="wp-block-paragraph">Or:</p>



<pre class="wp-block-code"><code>ostor-s3-admin delete-bucket -V volumeid -i userid -b bucketname</code></pre>



<p class="wp-block-paragraph">Obviously you will need to replace &#8220;<em>volumeid</em>&#8220;, &#8220;<em>userid</em>&#8221; and &#8220;<em>bucketname</em>&#8221; with the respective values.</p>



<p class="wp-block-paragraph">The &#8220;<em>delete-bucket</em>&#8221; command is a very handy one that seems to be missing from a lot of the ACI/VHI S3 documentation &#8211; it will delete the specified bucket along with all of the contents, unlike the admin web interface which expects you to empty the bucket yourself first. This does however take a very long time to run on large buckets.</p><p>The post <a href="https://www.spheron1.uk/2025/12/10/acronis-cyber-infrastructure-virtuozzo-hybrid-infrastructure-s3-admin-command-line/">Acronis Cyber Infrastructure/Virtuozzo Hybrid Infrastructure S3 admin command line</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.spheron1.uk/2025/12/10/acronis-cyber-infrastructure-virtuozzo-hybrid-infrastructure-s3-admin-command-line/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Acronis Cyber Infrastructure USB installer</title>
		<link>https://www.spheron1.uk/2025/05/06/acronis-cyber-infrastructure-usb-installer/</link>
					<comments>https://www.spheron1.uk/2025/05/06/acronis-cyber-infrastructure-usb-installer/#respond</comments>
		
		<dc:creator><![CDATA[digitaldisaster]]></dc:creator>
		<pubDate>Tue, 06 May 2025 11:43:44 +0000</pubDate>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ACI]]></category>
		<category><![CDATA[Acronis]]></category>
		<category><![CDATA[Acronis Cyber Infrastructure]]></category>
		<category><![CDATA[Acronis Cyber Protect]]></category>
		<category><![CDATA[Anaconda]]></category>
		<category><![CDATA[OpenStack]]></category>
		<category><![CDATA[Rufus]]></category>
		<category><![CDATA[Ventoy]]></category>
		<category><![CDATA[VHI]]></category>
		<category><![CDATA[Virtuozzo]]></category>
		<category><![CDATA[Virtuozzo Hybrid Infrastructure]]></category>
		<category><![CDATA[VzLinux]]></category>
		<guid isPermaLink="false">https://www.spheron1.uk/?p=2251</guid>

					<description><![CDATA[<p>Recently a colleague and I have run into all sorts of problems trying to install Acronis Cyber Infrastructure (ACI) from a USB flash drive. ACI is basically Virtuozzo Hybrid Infrastructure (VHI), but skinned blue instead of the usual red and with the Acronis Backup Gateway service added so that Acronis Cyber Protect can use it as for backup storage.For those&#46;&#46;&#46;</p>
<p>The post <a href="https://www.spheron1.uk/2025/05/06/acronis-cyber-infrastructure-usb-installer/">Acronis Cyber Infrastructure USB installer</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">Recently a colleague and I have run into all sorts of problems trying to install <a href="https://www.acronis.com/en-gb/products/cyber-infrastructure/" title="">Acronis Cyber Infrastructure</a> (ACI) from a USB flash drive.</p>



<p class="wp-block-paragraph">ACI is basically <a href="https://www.virtuozzo.com/hybrid-infrastructure/" title="">Virtuozzo Hybrid Infrastructure</a> (VHI), but skinned blue instead of the usual red and with the Acronis Backup Gateway service added so that <a href="https://www.acronis.com/en-gb/products/cyber-protect/" title="">Acronis Cyber Protect</a> can use it as for backup storage.<br>For those who aren&#8217;t familiar, VHI is Virtuozzo&#8217;s <a href="https://www.openstack.org" title="">OpenStack</a> distribution with their proprietary storage layer that is similar to <a href="https://ceph.com/" title="">Ceph</a>, but apparently much more performant. Under the hood this uses <a href="https://vzlinux.org" title="">VzLinux</a>, which is Virtuozzo&#8217;s <a href="https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux" title="">RetHat Enterprise Linux</a> (RHEL) clone.</p>



<p class="wp-block-paragraph">This means that much like other RHEL clones (e.g. <a href="https://almalinux.org" title="">AlmaLinux</a> and <a href="https://rockylinux.org" title="">Rocky Linux</a>), ACI uses the <a href="https://github.com/rhinstaller/anaconda" title="">Anaconda</a> installer. As such, you would expect it to work with common methods of creating a bootable USB flash drive such as <a href="https://www.ventoy.net/" title="">Ventoy</a> or <a href="https://rufus.ie/" title="">Rufus</a>, however unfortunately that is not the case.</p>



<p class="wp-block-paragraph">We found that when booting from a USB stick that was created using Ventoy or Rufus, ACI would fail to find the local package repository and end up asking you to configure a network installation source instead:</p>



<figure class="wp-block-image size-large"><a href="https://www.spheron1.uk/wp-content/uploads/2024/12/image.png"><img fetchpriority="high" decoding="async" width="1024" height="761" src="https://www.spheron1.uk/wp-content/uploads/2024/12/image-1024x761.png" alt="" class="wp-image-2252" srcset="https://www.spheron1.uk/wp-content/uploads/2024/12/image-1024x761.png 1024w, https://www.spheron1.uk/wp-content/uploads/2024/12/image-300x223.png 300w, https://www.spheron1.uk/wp-content/uploads/2024/12/image-768x570.png 768w, https://www.spheron1.uk/wp-content/uploads/2024/12/image-1536x1141.png 1536w, https://www.spheron1.uk/wp-content/uploads/2024/12/image-2048x1521.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p class="wp-block-paragraph">I&#8217;m not sure what makes the ACI installer so fragile compared to other Anaconda powered RHEL clones, but the fix for this is to avoid multi-boot solutions such as Ventoy and to write the ISO image directly to the USB stick without any modifications.</p>



<p class="wp-block-paragraph">If using Rufus, then when creating your bootable USB flash drive, you will be prompted that Rufus has detected that you are using an ISOHybrid image and it will ask if you want to write in ISO mode (the default) or in DD mode:</p>



<figure class="wp-block-image size-full"><a href="https://www.spheron1.uk/wp-content/uploads/2024/12/image-1.png"><img decoding="async" width="548" height="270" src="https://www.spheron1.uk/wp-content/uploads/2024/12/image-1.png" alt="" class="wp-image-2253" srcset="https://www.spheron1.uk/wp-content/uploads/2024/12/image-1.png 548w, https://www.spheron1.uk/wp-content/uploads/2024/12/image-1-300x148.png 300w" sizes="(max-width: 548px) 100vw, 548px" /></a></figure>



<p class="wp-block-paragraph">Make sure to select &#8220;Write in DD Image mode&#8221; and your ACI installer will work normally.</p>



<p class="wp-block-paragraph">Of course if you&#8217;re on Linux or macOS, then you can just use the dd command and be confident that it isn&#8217;t going to try and be clever and mess around with the data that is being written to the USB stick.</p><p>The post <a href="https://www.spheron1.uk/2025/05/06/acronis-cyber-infrastructure-usb-installer/">Acronis Cyber Infrastructure USB installer</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.spheron1.uk/2025/05/06/acronis-cyber-infrastructure-usb-installer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 0/77 objects using Redis
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching using Redis

Served from: spheron1.uk @ 2026-06-12 22:45:38 by W3 Total Cache
-->