<?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>VPS &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/vps/feed/" rel="self" type="application/rss+xml" />
	<link>https://help.hostry.com</link>
	<description>Full information on how to use HOSTRY, provided by 24/7 community based support</description>
	<lastBuildDate>Sat, 28 Jun 2025 14:33:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.12</generator>

<image>
	<url>https://help.hostry.com/wp-content/uploads/cache/2021/01/cropped-apple-icon-180x180-1/836712163.png</url>
	<title>VPS &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How Do I Add and Configure Additional IP Address(es) to my VPS on Debian&#038;Ubuntu</title>
		<link>https://help.hostry.com/knowledge-base/how-do-i-add-and-configure-additional-ip-addresses-to-my-vps-on-debianubuntu/</link>
					<comments>https://help.hostry.com/knowledge-base/how-do-i-add-and-configure-additional-ip-addresses-to-my-vps-on-debianubuntu/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 11 May 2021 06:59:36 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3715</guid>

					<description><![CDATA[In order to add additional IPv4 for your virtual server, you need to go to your orders page, select the required VPS and then select the &#8220;Add.IPs&#8221; section.In this section, you will have an EDIT, by clicking on this you can add a new IPv4 address. Additional IP price is [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>In order to add additional <strong>IPv4</strong> for your virtual server, you need to go to your orders page, select the required <strong>VPS</strong> and then select the <strong>&#8220;Add.IPs&#8221;</strong> section.<br>In this section, you will have an <strong>EDIT</strong>, by clicking on this you can add a new IPv4 address.</p>



<blockquote class="wp-block-quote"><p><strong>Additional IP price is $ 3</strong></p></blockquote>



<figure class="wp-block-image size-large"><img width="1024" height="457" src="https://help.hostry.com/wp-content/uploads/2021/05/1-1-1024x457.png" alt="" class="wp-image-3721" srcset="https://help.hostry.com/wp-content/uploads/2021/05/1-1-1024x457.png 1024w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-300x134.png 300w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-768x343.png 768w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-50x22.png 50w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-1536x686.png 1536w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-920x411.png 920w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-600x268.png 600w, https://help.hostry.com/wp-content/uploads/2021/05/1-1-320x143.png 320w, https://help.hostry.com/wp-content/uploads/2021/05/1-1.png 1585w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="358" src="https://help.hostry.com/wp-content/uploads/2021/05/2-1-1024x358.png" alt="" class="wp-image-3722" srcset="https://help.hostry.com/wp-content/uploads/2021/05/2-1-1024x358.png 1024w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-300x105.png 300w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-768x268.png 768w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-50x17.png 50w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-1536x537.png 1536w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-920x322.png 920w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-600x210.png 600w, https://help.hostry.com/wp-content/uploads/2021/05/2-1-320x112.png 320w, https://help.hostry.com/wp-content/uploads/2021/05/2-1.png 1665w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Next, to set up an alternate IP address in Debian and Ubuntu, follow these steps:</p>



<p>Log into your VPS using SSH. As the root user, open the <strong>/etc/network/interfaces</strong> file in your preferred text editor. Then add the following text to the file:</p>



<pre class="wp-block-code"><code># The primary network interface
auto eth0:0
iface eth0:0 inet static
address xxx.xxx.xxx.xxx
netmask 255.255.255.0</code></pre>



<p>Next, replace xxx.xxx.xxx.xxx with the new IP address that you want to add to your VPS. Then save the changes in the same <strong>/etc/network/interfaces</strong> file and then exit your text editor. To restart the network interfaces on your server, you need to run the command:</p>



<pre class="wp-block-code"><code>ifdown -a --exclude = lo; ifup -a --exclude = lo</code></pre>



<p>To verify that the procedure completed successfully, enter the following command:</p>



<pre class="wp-block-code"><code>ifconfig</code></pre>



<blockquote class="wp-block-quote"><p><strong>The new IP address must be associated with interface eth0.</strong></p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-do-i-add-and-configure-additional-ip-addresses-to-my-vps-on-debianubuntu/feed/</wfw:commentRss>
			<slash:comments>449</slash:comments>
		
		
			</item>
		<item>
		<title>How Do I Change PTR Record on My VPS server</title>
		<link>https://help.hostry.com/knowledge-base/how-do-i-change-ptr-record-on-my-vps-server/</link>
					<comments>https://help.hostry.com/knowledge-base/how-do-i-change-ptr-record-on-my-vps-server/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 17 Feb 2021 08:49:44 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3233</guid>

					<description><![CDATA[On your own VMmanager panel of the virtual server, you can change the PTR records yourself. This manual will describe all the detailed steps so that you can complete this procedure quickly, correctly, and without downtime. Updates to PTR records usually happen very quickly, but sometimes this process can take [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>On your own <strong>VMmanager</strong> panel of the virtual server, you can change the PTR records yourself. This manual will describe all the detailed steps so that you can complete this procedure quickly, correctly, and without downtime. Updates to PTR records usually happen very quickly, but sometimes this process can take several hours. So, follow this tutorial.</p>



<p>The first step is to go to your account, log in and go to the orders page. If you do not currently have active virtual server services, you can familiarize yourself with tariff plans and order a suitable server <strong><a href="https://hostry.com/products/vps/">here</a></strong>.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen1-1024x576.png" alt="" class="wp-image-3235" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen1-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen1-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen1.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>Next, you need to find the required server and go to the &#8220;<strong>OS</strong>&#8221; section</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-1024x576.png" alt="" class="wp-image-3239" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen2-1.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>By clicking on this section, you will see a link to your own <strong>VMmanager</strong>. Then you need to go to her</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen3-1024x576.png" alt="" class="wp-image-3240" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen3-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen3-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen3.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>After you have opened the <strong>VMmanager</strong> section, you should go to the &#8220;<strong>IP Addresses</strong>&#8221; section. If you have additional IPv4 addresses, then you will be shown there all the currently available IPv4. At the moment, the interface IPv4 address will be changed.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen4-1024x576.png" alt="" class="wp-image-3242" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen4-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen4-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen4.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>After that, click on the required <strong>IPv4</strong> address and click on &#8220;<strong>Edit</strong>&#8220;</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen5-1024x576.png" alt="" class="wp-image-3244" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen5-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen5-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen5.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>By default, the following entry is set on all VPS</p>



<blockquote class="wp-block-quote"><p><strong>vps.hostry.com</strong></p></blockquote>



<p>You need to enter your desired PTR record value in the &#8220;<strong>Domain</strong>&#8221; line, then click on &#8220;<strong>OK</strong>&#8220;</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen6-1024x576.png" alt="" class="wp-image-3246" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen6-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen6-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen6.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>In order to clearly show, the entry has been changed</p>



<blockquote class="wp-block-quote"><p><strong>example.hostry.com</strong></p></blockquote>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen8-1024x576.png" alt="" class="wp-image-3250" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen8-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen8-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen8.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>After 3 minutes, the <strong>PTR</strong> record was successfully changed. You can check it at the link</p>



<p><a href="https://dnschecker.org/">https://dnschecker.org/</a></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="576" src="https://help.hostry.com/wp-content/uploads/2021/02/screen7-1024x576.png" alt="" class="wp-image-3253" srcset="https://help.hostry.com/wp-content/uploads/2021/02/screen7-1024x576.png 1024w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-300x169.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-768x432.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-50x28.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-1536x864.png 1536w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-920x518.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-600x338.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/screen7-320x180.png 320w, https://help.hostry.com/wp-content/uploads/2021/02/screen7.png 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>You can also check this with the following command:</p>



<p><code>nslookup -type=PTR your _IP_address</code></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="940" height="499" src="https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR.png" alt="" class="wp-image-3255" srcset="https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR.png 940w, https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR-300x159.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR-768x408.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR-50x27.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR-920x488.png 920w, https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR-600x319.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/nslookup-typePTR-320x170.png 320w" sizes="(max-width: 940px) 100vw, 940px" /></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-do-i-change-ptr-record-on-my-vps-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How Do I Create and Add SSH Key To My Server</title>
		<link>https://help.hostry.com/knowledge-base/how-do-i-create-and-add-ssh-key-to-my-server/</link>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Mon, 14 Sep 2020 13:28:19 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=2097</guid>

					<description><![CDATA[SSH key pairs are two cryptographically secure keys that can be used to authenticate a client to an SSH server. Each key pair consists of a public key and a private key. Although passwords are sent to the server in a secure manner, they are generally not complex or long [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>SSH key pairs are two cryptographically secure keys that can be used to authenticate a client to an SSH server. Each key pair consists of a public key and a private key. Although passwords are sent to the server in a secure manner, they are generally not complex or long enough to be resistant to repeated, persistent attackers. Modern processing power combined with automated scripts make brute forcing a password-protected account very possible. Although there are other methods of adding additional security, SSH keys still is a reliable and secure alternative.</p>



<h3 id="creating-an-ssh-key-on-linux-and-mac" id="creating-an-ssh-key-on-linux" >Creating an&nbsp;SSH&nbsp;key on Linux</h3>



<p>First, open the terminal (command line) app, then run the following command to generate a <strong>4096</strong> bit&nbsp;<strong>SSH</strong>&nbsp;key:</p>



<ol><li>Login into your virtual machine via VNC or PuTTY or via SSH.</li><li>Insert into the command line the following command:<br><strong>ssh-keygen -b 4096</strong><br>The command will output the following result and prompt you to save the newly created&nbsp;key.</li><li>In order to view the generated SSH-key, input the following command:<br>cat .ssh/id_rsa.pub</li></ol>



<p><a href="https://www.chiark.greenend.org.uk/~sgtatham/putty/">PuTTY</a>&nbsp;is a popular&nbsp;SSH&nbsp;client for Windows. You can use it to remotely connect to a Linux server. Its companion software,&nbsp;<a href="https://the.earth.li/~sgtatham/putty/latest/w64/puttygen.exe">PuTTYgen</a>, can be used to create&nbsp;SSH&nbsp;keys.<br>First, download the&nbsp;<a href="https://the.earth.li/~sgtatham/putty/latest/w64/puttygen.exe">PuTTYgen</a>&nbsp;software, which we will use to generate the&nbsp;key.<br>Next, run the software and select&nbsp;RSA&nbsp;as the key type, enter 4096 as the number of bits to generate, and then click the GENERATE button.</p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/PuTTY-SSH-Key.png" alt="" class="wp-image-2100" width="585" height="574" srcset="https://help.hostry.com/wp-content/uploads/2020/09/PuTTY-SSH-Key.png 542w, https://help.hostry.com/wp-content/uploads/2020/09/PuTTY-SSH-Key-300x294.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/PuTTY-SSH-Key-50x50.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/PuTTY-SSH-Key-60x60.png 60w, https://help.hostry.com/wp-content/uploads/2020/09/PuTTY-SSH-Key-320x314.png 320w" sizes="(max-width: 585px) 100vw, 585px" /></figure>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/Key-Geberator.png" alt="" class="wp-image-2103" width="595" height="585" srcset="https://help.hostry.com/wp-content/uploads/2020/09/Key-Geberator.png 534w, https://help.hostry.com/wp-content/uploads/2020/09/Key-Geberator-300x294.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/Key-Geberator-50x50.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/Key-Geberator-60x60.png 60w, https://help.hostry.com/wp-content/uploads/2020/09/Key-Geberator-320x314.png 320w" sizes="(max-width: 595px) 100vw, 595px" /></figure>



<p>Click the&nbsp;<strong>Save private key</strong>&nbsp;button and select a secure location to keep it. You can name your key whatever you’d like, and the extension .ppk will be automatically added.</p>



<h3 id="insert-your-ssh-key-into-vm-manager-panel" ><strong>Insert your SSH key into VM-manager panel.</strong></h3>



<p>At first, please login into your HOSTRY member area. Then access your VM-manager account:</p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager.png" alt="" class="wp-image-2107" width="757" height="493" srcset="https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager.png 1009w, https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager-300x195.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager-768x500.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager-50x33.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager-920x599.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager-600x391.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/VM-Manager-320x208.png 320w" sizes="(max-width: 757px) 100vw, 757px" /></figure>



<p>Then go the&nbsp;<strong>SSH Keys</strong>&nbsp;section. Click on the&nbsp;<a href="https://vm1-nl.inxy.host:1500/vmmgr?startpage=sshpubkey">SSH keys</a> <strong>Add&nbsp;</strong>icon</p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-1024x392.png" alt="" class="wp-image-2111" width="768" height="294" srcset="https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-1024x392.png 1024w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-300x115.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-768x294.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-50x19.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-920x353.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-600x230.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add-320x123.png 320w, https://help.hostry.com/wp-content/uploads/2020/09/SSH-Add.png 1915w" sizes="(max-width: 768px) 100vw, 768px" /></figure>



<p>Insert your public key into the text box and give it a name, then click on a&nbsp;<strong>Save</strong>&nbsp;button:</p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/Insert-1024x290.png" alt="" class="wp-image-2116" width="768" height="218" srcset="https://help.hostry.com/wp-content/uploads/2020/09/Insert-1024x290.png 1024w, https://help.hostry.com/wp-content/uploads/2020/09/Insert-300x85.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/Insert-768x217.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/Insert-50x14.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/Insert-920x260.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/Insert-600x170.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/Insert-320x91.png 320w, https://help.hostry.com/wp-content/uploads/2020/09/Insert.png 1314w" sizes="(max-width: 768px) 100vw, 768px" /></figure>



<p>Done. The public key is added!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How Do I Create WordPress CMS on VPS</title>
		<link>https://help.hostry.com/knowledge-base/how-do-i-create-wordpress-on-vps-cms/</link>
					<comments>https://help.hostry.com/knowledge-base/how-do-i-create-wordpress-on-vps-cms/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 15 Sep 2020 07:48:01 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=2124</guid>

					<description><![CDATA[First, you need to log in to&#160;https://hostry.com/ If You Have a VPS Go to the list of your orders and select the&#160;VPS&#160;on which you need to install&#160;WordPress Then, as you chose your&#160;VPS, you must go to the&#160;CMS In the&#160;CMS&#160;section, you must select WORDPRESS and enter your domain name. After that, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>First, you need to log in to&nbsp;<a href="https://hostry.com/">https://hostry.com/</a></p>



<h2 id="if-you-have-a-vps" >If You Have a VPS </h2>



<p>Go to the list of your orders and select the&nbsp;<strong>VPS</strong>&nbsp;on which you need to install&nbsp;<strong>WordPress</strong></p>



<p>Then, as you chose your&nbsp;<strong>VPS</strong>, you must go to the&nbsp;<strong>CMS</strong></p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-1024x654.png" alt="" class="wp-image-2127" width="1024" height="654" srcset="https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-1024x654.png 1024w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-300x192.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-768x491.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-50x32.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-920x588.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-600x383.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS-320x204.png 320w, https://help.hostry.com/wp-content/uploads/2020/09/Forward-to-CMS.png 1160w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p> In the&nbsp;<strong>CMS</strong>&nbsp;section, you must select <strong>WORDPRESS</strong> and enter your <strong>domain name</strong>. After that, you can enter <strong>«СREATE»</strong></p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/WP-1024x677.png" alt="" class="wp-image-2131" width="1024" height="677" srcset="https://help.hostry.com/wp-content/uploads/2020/09/WP-1024x677.png 1024w, https://help.hostry.com/wp-content/uploads/2020/09/WP-300x198.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/WP-768x508.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/WP-50x33.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/WP-920x608.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/WP-600x397.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/WP-320x212.png 320w, https://help.hostry.com/wp-content/uploads/2020/09/WP.png 1310w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h2 id="if-you-didnt-have-any-vps" >If You Didn&#8217;t Have any VPS</h2>



<p>If you have no active&nbsp;<strong>vps</strong>&nbsp;in&nbsp;<strong>orders</strong>, you can order them here:&nbsp;<a href="https://hostry.com/products/vps/">https://hostry.com/products/vps/</a></p>



<p>You need to choose a&nbsp;<strong>tariff plan (example: NL 30GB SSD 5$)</strong>that is convenient for you, designate a&nbsp;<strong>Payment period</strong>, write your&nbsp;<strong>Hostname</strong>, choose an&nbsp;<strong>Operating System (OS)</strong>, then click on the «<strong>CMS</strong>»</p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/Create-1024x702.png" alt="" class="wp-image-2134" width="1024" height="702" srcset="https://help.hostry.com/wp-content/uploads/2020/09/Create-1024x702.png 1024w, https://help.hostry.com/wp-content/uploads/2020/09/Create-300x206.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/Create-768x527.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/Create-50x34.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/Create-920x631.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/Create-600x411.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/Create-320x219.png 320w, https://help.hostry.com/wp-content/uploads/2020/09/Create.png 1123w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<p>&nbsp;In the CMS section, you must select WORDPRESS and enter your domain name there and&nbsp;<strong>«СREATE»</strong></p>



<figure class="wp-block-image is-resized"><img loading="lazy" src="https://help.hostry.com/wp-content/uploads/2020/09/Createe-1024x705.png" alt="" class="wp-image-2137" width="1024" height="705" srcset="https://help.hostry.com/wp-content/uploads/2020/09/Createe-1024x705.png 1024w, https://help.hostry.com/wp-content/uploads/2020/09/Createe-300x207.png 300w, https://help.hostry.com/wp-content/uploads/2020/09/Createe-768x529.png 768w, https://help.hostry.com/wp-content/uploads/2020/09/Createe-50x34.png 50w, https://help.hostry.com/wp-content/uploads/2020/09/Createe-920x634.png 920w, https://help.hostry.com/wp-content/uploads/2020/09/Createe-600x413.png 600w, https://help.hostry.com/wp-content/uploads/2020/09/Createe-320x220.png 320w, https://help.hostry.com/wp-content/uploads/2020/09/Createe.png 1054w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-do-i-create-wordpress-on-vps-cms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install SpamAssassin on your Ubuntu VPS</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-spamassassin-on-your-ubuntu-vps/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-spamassassin-on-your-ubuntu-vps/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Fri, 01 Oct 2021 09:53:00 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=4296</guid>

					<description><![CDATA[Apache SpamAssassin is a computer program used to filter email spam. It uses a variety of spam detection techniques including DNS and fuzzy checksum techniques, Bayesian filtering, external programs, blacklists, and online databases. It is released under the Apache License 2.0 and has been part of the Apache Foundation since [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Apache SpamAssassin is a computer program used to filter email spam. It uses a variety of spam detection techniques including DNS and fuzzy checksum techniques, Bayesian filtering, external programs, blacklists, and online databases. It is released under the Apache License 2.0 and has been part of the Apache Foundation since 2004. This program is required for any, even the simplest server, which has mail. The guide is geared towards servers that run Ubuntu. You should also make sure that the 25th port of Smtp is open.</p>



<h2 id="spamassasin-installation-process" >SpamAssasin installation process</h2>



<p>In order to install this program, we recommend the following command:</p>



<pre class="wp-block-code"><code>apt-get install spamassassin spamc -y</code></pre>



<p>The next step is to install the user and disable the login.</p>



<pre class="wp-block-code"><code>adduser spamassasin --disabled-login</code></pre>



<h2 id="configuring-spamassasin" >Configuring SpamAssasin</h2>



<p>Assign spamassassin to the SpamAssassin user account. This is followed by editing the settings</p>



<pre class="wp-block-code"><code>nano /etc/default/spamassassin</code></pre>



<p>It is necessary to find in this directory <strong>ENABLED = 1</strong> Uncomment it by removing the # and changing the value from 1 to 0.</p>



<pre class="wp-block-code"><code>ENABLED=0</code></pre>



<p>Then you need to find the line <strong>OPTIONS = &#8220;- create-prefs &#8211;max-children 5 &#8211;helper-home-dir&#8221;</strong> and make changes. They must include a spamassassin account</p>



<pre class="wp-block-code"><code>OPTIONS="--create-prefs --max-children 5 --username spamassassin --helper-home-dir /home/spamassassin/ -s /home/spamassassin/spamassassin.log"</code></pre>



<p>Then you need to find the line <strong>CRON = 0</strong> and make the same changes as before to get <strong>CRON = 1</strong>. Then save the file. Back up your local SpamAssassin configuration file. </p>



<pre class="wp-block-code"><code>mv /etc/spamassassin/local.cf  /etc/spamassassin/local.cf.bk</code></pre>



<p>Then you need to create a new local SpamAssassin configuration file.</p>



<pre class="wp-block-code"><code>nano /etc/spamassassin/local.cf </code></pre>



<p>Paste the information below into the file.</p>



<pre class="wp-block-code"><code>rewrite_header Subject ***** SPAM _SCORE_ *****
report_safe             0
required_score          5.0
use_bayes               1
use_bayes_rules         1
bayes_auto_learn        1
skip_rbl_checks         0
use_razor2              0
use_dcc                 0
use_pyzor               0
ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
endif</code></pre>



<p>The next step is to save the change file and then you can close it.</p>



<h2 id="setting-up-your-postfix" >Setting up your Postfix</h2>



<p>First of all, to start configuring, you need to edit the Postfix configuration file</p>



<pre class="wp-block-code"><code>nano /etc/postfix/master.cf</code></pre>



<p>Next, you need to find the following records, which are presented below:</p>



<pre class="wp-block-code"><code>smtp      inet  n       -       y       -       -       smtpd
#smtp      inet  n       -       y       -       1       postscreen
#smtpd     pass  -       -       y       -       -       smtpd
#dnsblog   unix  -       -       y       -       0       dnsblog
#tlsproxy  unix  -       -       y       -       0       tlsproxy
submission inet n       -       y       -       -       smtpd</code></pre>



<p>Under <strong>smtp</strong> configuration add SpamAssassin content filter</p>



<pre class="wp-block-code"><code>smtp      inet  n       -       y       -       -       smtpd

-o content_filter=spamassassin
spamassassin unix -     n       n       -       -       pipe
user=spamassassin argv=/usr/bin/spamc -f -e  
/usr/sbin/sendmail -oi -f ${sender} ${recipient}</code></pre>



<p>Next, you should save this file and you can then close it. This is followed by restarting your Postfix and enabling spamassassin to run on your server.</p>



<pre class="wp-block-code"><code>systemctl restart postfix.service
systemctl enable spamassassin.service
systemctl start spamassassin.service</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-spamassassin-on-your-ubuntu-vps/feed/</wfw:commentRss>
			<slash:comments>430</slash:comments>
		
		
			</item>
		<item>
		<title>How To Protect Your Server</title>
		<link>https://help.hostry.com/knowledge-base/how-to-protect-your-server/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-protect-your-server/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 16 Jul 2019 12:56:21 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=293</guid>

					<description><![CDATA[The topic of security has always been relevant in the IT industry. In this article we will give some tips on how to secure your server and try to help to ensure that your server is not subjected to threats and attacks. If you found approximately such a message during [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image"><img loading="lazy" width="729" height="518" src="https://help.hostry.com/wp-content/uploads/2019/07/Screenshot-from-2019-07-16-14-54-22.png" alt="" class="wp-image-302" srcset="https://help.hostry.com/wp-content/uploads/2019/07/Screenshot-from-2019-07-16-14-54-22.png 729w, https://help.hostry.com/wp-content/uploads/2019/07/Screenshot-from-2019-07-16-14-54-22-300x213.png 300w, https://help.hostry.com/wp-content/uploads/2019/07/Screenshot-from-2019-07-16-14-54-22-50x36.png 50w, https://help.hostry.com/wp-content/uploads/2019/07/Screenshot-from-2019-07-16-14-54-22-600x426.png 600w, https://help.hostry.com/wp-content/uploads/2019/07/Screenshot-from-2019-07-16-14-54-22-320x227.png 320w" sizes="(max-width: 729px) 100vw, 729px" /></figure>



<p>The topic of security has always been relevant in the IT industry. In this article we will give some tips on how to secure your server and try to help to ensure that your server is not subjected to threats and attacks.</p>



<pre class="wp-block-code"><code>Last failed login: Mon Apr 15 13:52:45 MSK 2017 from 1.1.1.1 on ssh:notty
There were 4395 failed login attempts since the last successful login.</code></pre>



<p>If you found approximately such a message during your authorization to the server, it means that unsuccessful authorization attempts were made by someone else. Malicious users pick up SSH passwords purposefully (automatically, or using programmed infected computers).</p>



<h2 id="configure-authorization-from-specific-ip" >Configure authorization from specific IP</h2>



<p>Configure authorization from specific IP If you plan to connect to the server and conduct work only strictly from one device and / or only from certain IP addresses, you can enter the following lines: </p>



<pre class="wp-block-code"><code>/etc/hosts.deny
sshd: ALL</code></pre>



<p>In this file: </p>



<pre class="wp-block-preformatted"><strong>/etc/hosts.allow
Sshd: Your IP address</strong></pre>



<p>Thus, SSH access for all subnets except the specified one will be denied. After that, you need to restart the service using the service:</p>



<p></p>



<p><code><strong>service sshd restart</strong></code></p>



<p></p>



<h2 id="change-ssh-port" >Change SSH port</h2>



<p>To change the SSH port you need to uncomment this file <code><strong>/etc/ssh/sshd_config</strong></code>&nbsp;and change Port 22 to a free one, it can be any number up to 65536</p>



<p>After that, you need to start the server with the command:</p>



<p><code><strong>service sshd restart</strong></code></p>



<p></p>



<h2 id="use-ssh-keys" >Use SSH keys</h2>



<p></p>



<p>The advantage and advantage of this method is that you can be authorized on the server without regularly having to send your password through the network. </p>



<p>Even if someone listens on your connection, he will not have the opportunity to intercept and crack your password, since in fact it is never transmitted. Also, using SSH to identify keys eliminates the risk associated with brute-force attacks, by significantly reducing the attacker&#8217;s chance to guess the correct credentials. <br>The key pair is created using the command</p>



<pre class="wp-block-preformatted"><strong>ssh-keygen</strong></pre>



<p>The private key (file without extension) is copied to the PC, and the public key (keyname.pub) is copied to the file on the server. <code><strong>.ssh / authorized_keys</strong></code><strong>  </strong></p>



<p>In order to disable password authorization, in the same SSH configuration, you need to change the <strong><code>PasswordAuthentication yes directive to PasswordAuthentication no</code></strong> and restart the service &#8211; authorization will remain only with the SSH key.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-protect-your-server/feed/</wfw:commentRss>
			<slash:comments>453</slash:comments>
		
		
			</item>
		<item>
		<title>How to Resize the Disk Partition, using CLI, After Upgrading my Tariff Plan on my VPS</title>
		<link>https://help.hostry.com/knowledge-base/how-to-resize-the-disk-partition-after-upgrading-my-tariff-plan-on-my-vps/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-resize-the-disk-partition-after-upgrading-my-tariff-plan-on-my-vps/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 04 Feb 2021 08:46:36 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3052</guid>

					<description><![CDATA[Hostry offers our customers a VPS tariff plan upgrade. This procedure is performed by requesting technical support. After your plan has been successfully changed, this will be displayed on your orders page. In addition, an important procedure should be followed &#8211; disk enlargement. We recommend using gparted for this. This [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Hostry offers our customers a<strong> <a href="https://hostry.com/products/vps/">VPS</a></strong> tariff plan upgrade. This procedure is performed by requesting technical support. After your plan has been successfully changed, this will be displayed on your <strong><a href="https://hostry.com/orders/">orders page</a></strong>. In addition, an important procedure should be followed &#8211; disk enlargement. We recommend using gparted for this. This article aims to help you perform this disk expansion procedure quickly, efficiently, and without losing your data. It is worth informing that after successful completion of this procedure, the server will be <strong>rebooted</strong> for a few seconds. Be sure to take this factor into account and choose a convenient time for yourself to perform this procedure, so the Linux kernel takes care, that the virtual drive has been expanded. </p>



<h2 id="update-your-system-files" id="grown-the-partition-and-file-system" >Grown the partition and File System</h2>



<p>For the following file systems: <strong>xfs</strong>, <strong>ext4</strong>, <strong>btrfs</strong>, <strong>ntfs</strong> (for Windows, starting from Vista) is possible to growth online (i.e. without unmounting before proceeding).<strong> Ntfs</strong> and <strong>btrfs</strong> even can shrink online, other file systems only then aren&#8217;t mounted). </p>



<p>First of all, you need the <strong>root </strong>access to your VPS server.  After login, you need to run the <strong>lsblk</strong> command. Here you can see all disk devices, their volume, and partitions. In this screenshot, you can see that <strong>vda</strong> has a size o<strong>f 50 GB</strong>, and in this case, <strong>vda1</strong> + <strong>vda2</strong> have <strong>30 GB</strong>. After that, please enter the <strong>parted /dev/vda</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="864" height="365" src="https://help.hostry.com/wp-content/uploads/2021/02/Step1-1.png" alt="" class="wp-image-3062" srcset="https://help.hostry.com/wp-content/uploads/2021/02/Step1-1.png 864w, https://help.hostry.com/wp-content/uploads/2021/02/Step1-1-300x127.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/Step1-1-768x324.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/Step1-1-50x21.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/Step1-1-600x253.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/Step1-1-320x135.png 320w" sizes="(max-width: 864px) 100vw, 864px" /></figure>



<p>As we can see, the command <strong>parted </strong>is run. Next, we run the command &#8211; <strong>p</strong> (Print), which shows the partitions and offers to change/fix the GPT table so that it matches the size of the virtual disk.<br>We agree &#8211; we write: <strong>Fix</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="868" height="331" src="https://help.hostry.com/wp-content/uploads/2021/02/2.png" alt="" class="wp-image-3067" srcset="https://help.hostry.com/wp-content/uploads/2021/02/2.png 868w, https://help.hostry.com/wp-content/uploads/2021/02/2-300x114.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/2-768x293.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/2-50x19.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/2-600x229.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/2-320x122.png 320w" sizes="(max-width: 868px) 100vw, 868px" /></figure>



<p>After that, we need to run <strong>resizepart 2</strong> &#8211; this is the command that marks the resize of the partition. You can take the final number from the size of the disk &#8211; the size can be seen on screen 2 &#8211; <strong>53, 7GB</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="866" height="306" src="https://help.hostry.com/wp-content/uploads/2021/02/3.png" alt="" class="wp-image-3072" srcset="https://help.hostry.com/wp-content/uploads/2021/02/3.png 866w, https://help.hostry.com/wp-content/uploads/2021/02/3-300x106.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/3-768x271.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/3-50x18.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/3-600x212.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/3-320x113.png 320w" sizes="(max-width: 866px) 100vw, 866px" /></figure>



<p>Finally, you need to use the q command &#8211; it exits parted. For the ext3 / ext4 filesystem format, the following command:<strong> resize2fs /dev/vda2</strong></p>



<figure class="wp-block-image size-large"><img loading="lazy" width="872" height="200" src="https://help.hostry.com/wp-content/uploads/2021/02/4.png" alt="" class="wp-image-3078" srcset="https://help.hostry.com/wp-content/uploads/2021/02/4.png 872w, https://help.hostry.com/wp-content/uploads/2021/02/4-300x69.png 300w, https://help.hostry.com/wp-content/uploads/2021/02/4-768x176.png 768w, https://help.hostry.com/wp-content/uploads/2021/02/4-50x11.png 50w, https://help.hostry.com/wp-content/uploads/2021/02/4-600x138.png 600w, https://help.hostry.com/wp-content/uploads/2021/02/4-320x73.png 320w" sizes="(max-width: 872px) 100vw, 872px" /></figure>



<p>Done! At this stage, the changes are complete.</p>



<p>For <strong>xfs</strong>, you can use the command: <strong>xfs_growfs</strong></p>



<p>For <strong><strong>btrfs</strong></strong>, you can use the command: <strong>btrfs filesystem resize</strong></p>



<p>For <strong><strong><strong>ext4</strong></strong></strong>, you can use the command:<strong> resize2fs /dev/vda2</strong></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-resize-the-disk-partition-after-upgrading-my-tariff-plan-on-my-vps/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Looking Glass (Test IPs) From Hostry</title>
		<link>https://help.hostry.com/knowledge-base/looking-glass-test-ips-from-hostry/</link>
					<comments>https://help.hostry.com/knowledge-base/looking-glass-test-ips-from-hostry/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 17 Mar 2021 06:50:37 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3374</guid>

					<description><![CDATA[We are glad to inform you about the adjunction of new regions in Europe, North America, South America, Asia, Australia, as well as in Africa! Hostry invites its customers to get acquainted with Looking Glass to test and choose the best location for themselves! All available locations and links to [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>We are glad to inform you about the adjunction of new regions in <strong>Europe, North America, <strong>South</strong> <strong>America</strong></strong>, <strong>Asia</strong>, <strong>Australia</strong>, as well as in <strong>Africa</strong>!  <strong><a href="https://hostry.com/">Hostry</a></strong> invites its customers to get acquainted with <strong>Looking Glass</strong> to test and choose the best location for themselves! All available locations and links to test IPs are provided below for your convenience. </p>



<blockquote class="wp-block-quote"><p>Please note! In no way does this mean that you will be given this IPv4 address, or an IPv4 address from this subnet.Test IP addresses are provided as a guide. We offer our clients several types of subnets, and this does not mean that you will be provided with a server with a dedicated IPv4 address that will belong to this subnet that you are testing.</p></blockquote>



<h3 id="europe" >Europe</h3>



<p><strong>Austria </strong>(<strong>Vienna</strong>): <a rel="noreferrer noopener" href="http://lg-at1.hostry.com/" target="_blank">lg-at1.hostry.com</a><br><strong>Belgium (Brussels)</strong>: <a rel="noreferrer noopener" href="http://lg-be1.hostry.com/" target="_blank">lg-be1.hostry.com</a><br><strong>Bulgaria</strong> (<strong>Sofia</strong>): <a rel="noreferrer noopener" href="http://lg-bg1.hostry.com/" target="_blank">lg-bg1.hostry.com</a><br><strong>Czech</strong> <strong>Republic</strong> (<strong>Prague</strong>): <a href="http://lg-cz1.hostry.com/">lg-cz1.hostry.com</a><br><strong>Czech</strong> <strong>Republic</strong> (<strong>Veseli nad Luznici</strong>): <a href="http://lg-cz2.hostry.com/">lg-cz2.hostry.com</a><br><strong>Denmark (Tender</strong>): <a href="http://lg-dk1.hostry.com/">lg-dk1.hostry.com</a><br><strong>Estonia (Tallinn):</strong> <a rel="noreferrer noopener" href="http://lg-ee1.hostry.com" data-type="URL" data-id="http://lg-ee1.hostry.com" target="_blank">lg-ee1.hostry.com</a><br><strong>Finland (Helsinki</strong>) <a href="http://lg-fi1.hostry.com/">lg-fi1.hostry.com</a><br><strong>Germany</strong> <strong>(Frankfurt</strong>) <a href="http://lg-de2.hostry.com/">lg-de2.hostry.com</a><br><strong>Greece (Thessaloniki):</strong> <a rel="noreferrer noopener" href="http://lg-gr1.hostry.com/" data-type="URL" data-id="http://lg-gr1.hostry.com/" target="_blank">lg-gr1.hostry.com</a><br><strong>Hungary (Budapest):</strong> <a rel="noreferrer noopener" href="http://lg-hu1.hostry.com/" target="_blank">lg-hu1.hostry.com</a><br><strong>Ireland (Dublin)</strong>: <a rel="noreferrer noopener" href="http://lg-ie1.hostry.com" target="_blank">lg-ie1.hostry.com</a><br><strong>Iceland</strong> (<strong>Reykjavik</strong>): <a rel="noreferrer noopener" href="http://lg-is1.hostry.com/" data-type="URL" data-id="http://lg-is1.hostry.com/" target="_blank">lg-is1.hostry.com</a><br><strong>Latvia</strong>(<strong>Riga</strong>): <a rel="noreferrer noopener" href="http://lg-lv1.hostry.com/" target="_blank">lg-lv1.hostry.com</a><br><strong>Moldova (Chisinau)</strong>: <a rel="noreferrer noopener" href="http://lg-md1.hostry.com" target="_blank">lg-md1.hostry.com</a><br><strong>Netherlands</strong> (<strong>Amsterdam</strong>): <a rel="noreferrer noopener" href="http://lg-nl1.hostry.com/" target="_blank">lg-nl1.hostry.com</a><br><strong>Netherlands</strong> (<strong>Dronten</strong>): <a rel="noreferrer noopener" href="http://lg-nl2.hostry.com/" target="_blank">lg-nl2.hostry.com</a><br><strong>Norway (Oslo)</strong>: <a rel="noreferrer noopener" href="http://lg-no1.hostry.com/" data-type="URL" data-id="http://lg-no1.hostry.com/" target="_blank">lg-no1.hostry.com</a><br><strong>Poland</strong> (<strong>Gdansk</strong>): <a rel="noreferrer noopener" href="http://lg-pl1.hostry.com/" target="_blank">lg-pl1.hostry.com</a><br><strong>Portugal </strong>(<strong>Lisbon</strong>): <a rel="noreferrer noopener" href="http://lg-pt1.hostry.com/" target="_blank">lg-pt1.hostry.com</a><br><strong>Romania (Bucharest)</strong>: <a rel="noreferrer noopener" href="http://lg-ro1.hostry.com/" target="_blank">lg-ro1.hostry.com</a><br><strong>Serbia (Belgrade):</strong> <a rel="noreferrer noopener" href="http://lg-rs1.hostry.com" target="_blank">lg-rs1.hostry.com</a><br><strong>Slovakia (<strong>Bratislava</strong></strong>): <a href="http://lg-sk1.hostry.com/">lg-sk1.hostry.com</a><br><strong>Spain</strong> <strong>(Madrid</strong>): <a rel="noreferrer noopener" href="http://lg-es2.hostry.com/" target="_blank">lg-es2.hostry.com</a><br><strong>Switzerland</strong> (<strong>Geneva</strong>): <a rel="noreferrer noopener" href="http://lg-ch1.hostry.com/" target="_blank">lg-ch1.hostry.com</a><br><strong>United Kingdom</strong> <strong>(London</strong>) <a href="http://lg-gb2.hostry.com/">lg-gb2.hostry.com</a></p>



<h3 id="north-america" >North America</h3>



<p><strong>Canada (Toronto)</strong>: <a href="http://lg-ca1.hostry.com/">lg-ca1.hostry.com</a><br><strong>USA</strong> (<strong>Dallas</strong>):&nbsp;<a rel="noreferrer noopener" href="http://lg-us1.hostry.com/" target="_blank">lg-us1.hostry.com</a><br><strong>USA</strong> (<strong>Los</strong> <strong>Angeles</strong>):&nbsp;<a rel="noreferrer noopener" href="http://lg-us2.hostry.com/" target="_blank">lg-us2.hostry.com</a><br><strong>USA</strong> (<strong>Miami</strong>):&nbsp;<a rel="noreferrer noopener" href="http://lg-us3.hostry.com/" target="_blank">lg-us3.hostry.com</a></p>



<h3 id="asia" >Asia</h3>



<p><strong>China (Hong Kong</strong>) <a href="http://lg-cn2.hostry.com/">lg-cn2.hostry.com</a><br><strong>India (New Delhi)</strong> <a href="http://lg-in2.hostry.com" data-type="URL" data-id="lg-in2.hostry.com" target="_blank" rel="noreferrer noopener">lg-in2.hostry.com</a><br><strong>Israel (Tel Aviv)</strong> <a href="http://lg-il1.hostry.com/">lg-il1.hostry.com</a><br><strong>Kazakhstan (<strong>Almaty</strong></strong>) <a href="http://lg-kz1.hostry.com/">lg-kz1.hostry.com</a><br><strong>Singapore</strong> (<strong>Singapore</strong>):&nbsp;<a rel="noreferrer noopener" href="http://lg-sg1.hostry.com/" target="_blank">lg-sg1.hostry.com</a><br><strong>Turkey (Izmir):</strong> <a rel="noreferrer noopener" href="http://lg-tr1.hostry.com" target="_blank">lg-tr1.hostry.com</a></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/looking-glass-test-ips-from-hostry/feed/</wfw:commentRss>
			<slash:comments>553</slash:comments>
		
		
			</item>
		<item>
		<title>Recover Windows VPS after successful driver updates</title>
		<link>https://help.hostry.com/knowledge-base/recover-windows-vps-after-successful-driver-updates/</link>
					<comments>https://help.hostry.com/knowledge-base/recover-windows-vps-after-successful-driver-updates/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Mon, 30 Sep 2019 06:07:36 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=703</guid>

					<description><![CDATA[Microsoft, through its own update center, has released drivers. They, in turn, can interfere with the correct loading of instances if your VPS is on a Windows platform. SUSE is the network driver for Windows, and SUSE &#8211; Block Driver for this OS is already installed, and the server will [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Microsoft, through its own update center, has released drivers. They, in turn, can interfere with the correct loading of instances if your VPS is on a Windows platform. </p>



<p><strong>SUSE</strong> is the network driver for Windows, and <strong>SUSE</strong> &#8211; Block Driver for this OS is already installed, and the server will not load normally and you will have a Windows recovery environment. The first thing to do is to open access to the server disk from the restore request</p>



<p>Here you need to check if di <strong>C :\ </strong>your server disk was detected. If your drive was not detected, you need to download VirtlO drivers from ISO. You can check disk detection as follows:</p>



<p>Go to the Windows <strong><em>command line;</em></strong></p>



<p>Then run the <strong><em>diskpart</em></strong> command</p>



<p>In DIckPart, you must run<strong><em> list volum</em></strong> and then <strong><em>exit</em></strong></p>



<p><strong><em>list volume</em></strong>: this output will show detected volumes. Your <strong>C :\ </strong>servers are usually located<strong> E :\</strong> in the Windows recovery environment. You are looking for a volume, commonly called “OS,” whose size matches the size of the VPS instance. If your drive has been detected, go to the &#8220;Uninstall SUSE Driver Violators&#8221; section, otherwise continue reading.</p>



<h2 id="downloading-virtio-drivers" >Downloading <strong>VirtIO</strong> drivers</h2>



<p>You need to download and mount the <strong>VirtIO ISO</strong> driver on the virtual machine. You can download drivers to your Vultr account using the following URL. After this, the virtual machine reboots. If successful, you will see a screen asking you to select a keyboard layout. Select &#8220;USA&#8221;, then click &#8220;Troubleshooting&#8221; -&gt; &#8220;Advanced Options&#8221; -&gt; &#8220;Command Prompt.&#8221;</p>



<pre class="wp-block-code"><code>https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso</code></pre>



<p>Next, open the command line and go to VirtIO ISO (which is most likely D: \). Download the VirtIO storage drivers into the recovery environment with the following commands:</p>



<p><code>drvload D:\vioscsik12R2\amd64\vioscsi.inf </code></p>



<p><code>drvload D:\viostork12R2\amd64\viostor.inf</code></p>



<p>You must run the <strong><em>diskpart</em></strong> command, then enter <strong><em>list volume</em></strong>, then <strong><em>exit</em></strong>.</p>



<h2 id="removing-abusive-suse-drivers" >Removing abusive SUSE drivers</h2>



<p>First, run this command</p>



<p><code>dism /get-drivers /image:e:\</code></p>



<p>If the system volume of your VPS instance has a letter other than this E: \, use it instead. You are looking for any drivers where the provider name is &#8220;SUSE&#8221;. They will have names that match the oemX.inf template. Use this command to remove two problematic drivers:</p>



<p><code>dism /image:e:\ /remove-driver /driver:oem9.inf /driver:oem10.inf</code></p>



<p>This step helps to enter from the command line. You must click on &#8220;continue&#8221; to restart the VPS instance</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/recover-windows-vps-after-successful-driver-updates/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Using The Storage VPS Tariff Plan with Hostry</title>
		<link>https://help.hostry.com/knowledge-base/using-the-storage-vps-tariff-plan-with-hostry/</link>
					<comments>https://help.hostry.com/knowledge-base/using-the-storage-vps-tariff-plan-with-hostry/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Mon, 16 May 2022 13:05:40 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=4855</guid>

					<description><![CDATA[On the official&#160;hostry&#160;website, tariffs are provided for Storage usage only. These plans have one exceptional feature: excellent value for the disk size (100GB to 2000GB). You can order a tariff plan using this&#160;link. The advantage of this tariff plan lies in its huge amount of disk space. After all, imagine [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>On the official&nbsp;<strong><a href="https://hostry.com/">hostry</a></strong>&nbsp;website, tariffs are provided for Storage usage only. These plans have one exceptional feature: excellent value for the disk size (100GB to 2000GB). You can order a tariff plan using this&nbsp;<strong><a href="https://hostry.com/services/vps/nl/Dronten/">link</a></strong>. The advantage of this tariff plan lies in its huge amount of disk space. After all, imagine that for only $ 2 you have access to a storage of 100 GB! We are happy to provide you with this service, and we want to inform you that the tariffs are for data storage only. This also works great with <a href="https://help.hostry.com/knowledge-base/how-to-use-the-storage-vps-tariff-plans-for-cdn/"><strong>CDN</strong></a></p>



<p>These special KVM servers have many purposes, such as:</p>



<ul><li><strong>file storage</strong></li><li><strong>organization of personal cloud storage</strong></li><li><strong>data backup</strong></li><li><b>installation of personal or SOHO systems for working with files and documents (as a </b><strong style="font-weight: bold;">NextCloud</strong>, <strong>Seafile,  and the like).</strong></li></ul>



<p>This is the perfect solution for you if you are looking to organize your storage in a way that is safe and secure. We all prefer to make reserves, in any area of ​​life it is an absolutely irreplaceable thing, in that there is an emergency storage for some personal needs and requirements. Therefore, today the relevance and importance of backups is undoubtedly of great importance in life. No matter how much technology is developed today, the backup process always takes place and there will never be that this process loses its relevance or value. To host websites and other projects, you must use SSD VDS or dedicated servers.</p>



<p>The advantage of backup storage is also that it solves the problem of data transfer and working with shared documents.Even if there are a lot of duplicated components on your server, all the data can be on an expensive array with a large excess, no one is immune from the fact that there will be logical errors, there will be a certain human factor. Learn more about the importance of backups <strong><a href="https://hostry.com/blog/the-crucial-importance-of-backup/">here</a></strong>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/using-the-storage-vps-tariff-plan-with-hostry/feed/</wfw:commentRss>
			<slash:comments>527</slash:comments>
		
		
			</item>
	</channel>
</rss>
