<?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>Create &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/create/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>Mon, 25 Jan 2021 08:35:13 +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>Create &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Create a Sudo User on Ubuntu</title>
		<link>https://help.hostry.com/knowledge-base/create-a-sudo-user-on-ubuntu/</link>
					<comments>https://help.hostry.com/knowledge-base/create-a-sudo-user-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Mon, 07 Sep 2020 08:27:57 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1981</guid>

					<description><![CDATA[One of the best ways to ensure security while doing administrative work on your server is to run as a non-root user. After successfully purchasing a VPS from Hostry, the first task as root should be to set up a non-root user with a valid sudo. This guide is applicable [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>One of the best ways to ensure security while doing administrative work on your server is to run as a non-root user. After successfully purchasing a <strong><em><a href="https://hostry.com/">VPS</a></em></strong> from Hostry, the first task as root should be to set up a non-root user with a valid sudo.<br> This guide is applicable for Ubuntu distribution, for versions: 20.04 LTS, 18.04 LTS, 16.04 LTS.</p>



<h2 id="add-a-new-user-account" >Add a New User Account</h2>



<p>To create a <strong>user</strong> account, you need to use the <strong><em>adduser</em></strong> command. We recommend using a strong password for the user! An example of a strong password is <strong>aoQ7w52!OKvA$Pfz</strong>. Next, you can enter values ​​for user information, or press ENTER to leave these fields blank.</p>



<pre class="wp-block-code"><code># adduser example_user
Adding user `example_user' ...
Adding new group `example_user' (1001) ...
Adding new user `example_user' (1001) with group `example_user' ...
Creating home directory `/home/example_user' ...
Copying files from `/etc/skel' ...
New password:
Retype new password:
passwd: password updated successfully
Changing the user information for example_user
Enter the new value, or press ENTER for the default
        Full Name []: Example User
        Room Number []:
        Work Phone []:
        Home Phone []:
        Other []:
Is the information correct? [Y/n] y</code></pre>



<h2 id="add-user-to-sudo-group" >Add User to Sudo Group</h2>



<p>You can add a new user to the sudo group using the <strong><em>usermod</em></strong> command</p>



<pre class="wp-block-code"><code># usermod -aG sudo example_user</code></pre>



<h2 id="test" >Test</h2>



<p>Switch to a <strong>New</strong> user</p>



<pre class="wp-block-code"><code># su - example_user</code></pre>



<p>Make sure you are the new <strong><em>whoami</em></strong> user, then test<strong><em> sudo</em></strong> access with<strong> sudo whoami</strong> which should return root</p>



<pre class="wp-block-code"><code>$ whoami
example_user
$ sudo whoami
[sudo] password for example_user:
root</code></pre>



<p>Done!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/create-a-sudo-user-on-ubuntu/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 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 Create a Sudo User on FreeBSD</title>
		<link>https://help.hostry.com/knowledge-base/how-to-create-a-sudo-user-on-freebsd/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-create-a-sudo-user-on-freebsd/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 18 Aug 2020 09:05:50 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1944</guid>

					<description><![CDATA[Install Sudo You will be able to install this from the ports collections if it is installed on your system. To do this, enter the following command: You can also install the sudo binary package using pkg: Add a Sudo User First you need to create a user account to [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 id="install-sudo" >Install Sudo</h2>



<p>You will be able to install this from the ports collections if it is installed on your system. To do this, enter the following command:</p>



<pre class="wp-block-code"><code># cd /usr/ports/security/sudo/
# make install clean</code></pre>



<p>You can also install the <strong>sudo </strong>binary package using pkg:</p>



<pre class="wp-block-code"><code># pkg install sudo</code></pre>



<h2 id="add-a-sudo-user" >Add a Sudo User</h2>



<p>First you need to create a user account to use with <strong>sudo</strong></p>



<pre class="wp-block-code"><code># adduser</code></pre>



<p>Answer the questions from the suggested options to create a user. This tutorial will use <strong>user.example</strong></p>



<h2 id="add-user-to-wheel-group" >Add User to Wheel Group</h2>



<p>This group called &#8220;<strong>Wheel</strong>&#8221; limits the list of users who can use root</p>



<pre class="wp-block-code"><code># pw group mod wheel -m user.example</code></pre>



<h2 id="edit-the-sudoers-file" >Edit the sudoers file</h2>



<p>First, you need to check the sudoers file with <strong>visudo </strong>extension</p>



<pre class="wp-block-code"><code># visudo</code></pre>



<p>Look for a wheelset. Remove comment if line is off. When you&#8217;re ready to save the file, it should look like this</p>



<pre class="wp-block-code"><code>## Allows people in group wheel to run all commands
%wheel  ALL=(ALL)       ALL</code></pre>



<p>Save and exit vi. <strong>ESC </strong>type, then : <strong>W Q</strong>, then <strong>ENTER</strong></p>



<p><strong><em>IMPORTANT</em></strong>! The visudo utility performs a syntax check before making changes to the file. The wrong sudoers file can break your system. Never edit <strong>/etc/sudoers </strong>directly. For example, if you make a mistake, you will see this when exiting <strong>visudo</strong>. </p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-create-a-sudo-user-on-freebsd/feed/</wfw:commentRss>
			<slash:comments>460</slash:comments>
		
		
			</item>
	</channel>
</rss>
