<?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>Web Service Installing &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-categories/web-service-installing/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>Wed, 25 Aug 2021 06:54:20 +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>Web Service Installing &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How To Install Apache Maven on Ubuntu 20.04</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-apache-maven-on-ubuntu-20-04/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-apache-maven-on-ubuntu-20-04/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Fri, 05 Feb 2021 10:41:12 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3132</guid>

					<description><![CDATA[Apache Maven is a framework for automating the assembly of projects based on the description of their structure in files in the POM language, which is a subset of XML. The Maven project is published by the Apache Software Foundation community, where it is formally part of the Jakarta Project. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><a href="https://maven.apache.org/">Apache Maven</a></strong> is a framework for automating the assembly of projects based on the description of their structure in files in the POM language, which is a subset of XML. The Maven project is published by the Apache Software Foundation community, where it is formally part of the Jakarta Project. Apache Maven is a dedicated open-source project management tool that is used for Java projects. You can easily manage project builds, reporting, and documentation from a central piece of information using Apache Maven. </p>



<h2 id="recommended-updates-of-your-server" >Recommended Updates of Your Server</h2>



<p>The first step to complete the installation is to update your system to the latest stable version:</p>



<pre class="wp-block-code"><code>sudo apt-get update -y
sudo apt-get upgrade -y</code></pre>



<h2 id="java-installation" >Java Installation</h2>



<p><strong>Maven 3.6.3</strong> or higher requires JDK 1.7 or higher installed. We will install OpenJDK, which is the default Java development and runtime environment on Ubuntu 20.04. First, install OpenJDK:</p>



<pre class="wp-block-code"><code>sudo apt-get install -y default-jdk</code></pre>



<p>After that, you should check the <strong>Java </strong>version</p>



<pre class="wp-block-code"><code>java -version</code></pre>



<p>The output will be similar to the following:</p>



<pre class="wp-block-code"><code>openjdk version "11.0.9.1" 2020-11-04
OpenJDK Runtime Environment (build 11.0.9.1+1-Ubuntu-Oubuntu1.20.04)
OpenJDK 64-Bit Server VM (build 11.0.9.1+1-Ubuntu-Oubuntu0.20.04, mixed mode, sharing)</code></pre>



<h2 id="apache-maven-installation" >Apache Maven Installation</h2>



<p>The next step will be followed by the actual installation of Apache Maven. The first step is to change your working directory to <strong>/opt/</strong> directory:</p>



<pre class="wp-block-code"><code>cd /opt/</code></pre>



<p>Install <strong>Apache Maven </strong>can be installed from the official website. Installation is described in the command below:</p>



<pre class="wp-block-code"><code>sudo wget https://www-us.apache.org/list/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz</code></pre>



<p>After successful completion of the download, you can unpack the downloaded archive using the command below:</p>



<pre class="wp-block-code"><code>sudo tar -xvzf apache-maven-3.6.3-bin.tar.gz</code></pre>



<p>Then <em>rename</em> the extracted directory:</p>



<pre class="wp-block-code"><code>sudo mv apache-maven-3.6.3 maven</code></pre>



<h2 id="installation-environment-variables" >Installation environment variables</h2>



<p>After the given resource has been successfully installed, you need to set up environment variables such as<strong> PATH, M2_HOME, JAVA_HOME</strong>. You can do this by creating a <strong>mavenenv.sh </strong>file inside the <strong>/etc/profile.d/ </strong>directory:</p>



<pre class="wp-block-code"><code>sudo vi /etc/profile.d/mavenenv.sh</code></pre>



<p>Then, you should add what is described below:</p>



<pre class="wp-block-code"><code>export JAVA_HOME = / usr / lib / jvm / default-java
export M2_HOME = / opt / maven
export PATH = $ {M2_HOME} / bin: $ {PATH}</code></pre>



<p>Then you need to save and close the file and make it executable:</p>



<pre class="wp-block-code"><code>sudo chmod + x /etc/profile.d/mavenenv.sh</code></pre>



<p>Now you can load the environment variables:</p>



<pre class="wp-block-code"><code>source /etc/profile.d/mavenenv.sh</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-apache-maven-on-ubuntu-20-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install DirectAdmin on Debian 10</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-directadmin-on-debian-10/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-directadmin-on-debian-10/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 02 Sep 2020 08:26:30 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1957</guid>

					<description><![CDATA[DirectAdmin is a graphical user interface (GUI) and also a control panel that helps you install and manage a full stack of web servers. This is possible on a wide variety of modern distributions and operating systems. Purchase a valid license for DirectAdmin A valid license is required to run [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><span style="text-decoration: underline;"><em><a href="https://www.directadmin.com/"><strong>DirectAdmin</strong></a></em></span> is a graphical user interface (GUI) and also a control panel that helps you install and manage a full stack of web servers. This is possible on a wide variety of modern distributions and operating systems.</p>



<h2 id="purchase-a-valid-license-for-directadmin" >Purchase a valid license for DirectAdmin</h2>



<p>A valid license is required to run the GUI. You can also get acquainted with the 60-year trial version and choose the license that will suit you based on your requirements on this <strong><em><a href="https://www.directadmin.com/pricing.php">page</a></em></strong></p>



<h2 id="installing-directadmin" >Installing DirectAdmin</h2>



<p>At this step you need to install the required packages (as <strong>root</strong> user)</p>



<pre class="wp-block-code"><code># apt install wget gcc g++ make flex bison openssl libssl-dev \
perl perl-base perl-modules libperl-dev libperl4-corelibs-perl \
libwww-perl libaio1 libaio-dev zlib1g zlib1g-dev libcap-dev cron \
bzip2 zip automake autoconf libtool cmake pkg-config python \
libdb-dev libsasl2-dev libncurses5 libncurses5-dev libsystemd-dev \
bind9 dnsutils quota patch logrotate rsyslog libc6-dev libexpat1-dev \
libcrypt-openssl-rsa-perl curl libnuma-dev libnuma1</code></pre>



<p>Next, download and run the <strong>DirectAdmin</strong> installation script:</p>



<pre class="wp-block-code"><code># bash &lt;(curl -Ss https://www.directadmin.com/setup.sh) auto</code></pre>



<h2 id="further-actions-after-installing" >Further actions after installing</h2>



<p>Navigate to the new DirectAdmin server on port <strong>2222</strong> to start the configuration. Replace the example IP address <strong>(192.0.1.111)</strong> with your own</p>



<pre class="wp-block-code"><code>http://192.0.1.111:2222</code></pre>



<p>Turn on Let&#8217;s Encrypt SSL for secure internet, mail and FTP access</p>



<pre class="wp-block-code"><code>$ /usr/local/directadmin/scripts/letsencrypt.sh request_single your_server.example.com 4096</code></pre>



<p>Redirect non-SSL requests to the newly created SSL-protected hostname:</p>



<pre class="wp-block-code"><code>$ /usr/local/directadmin/directadmin set ssl_redirect_host yourserver.example.com
$ service directadmin restart</code></pre>



<p>Add following PHP functions to the disable_functions list:</p>



<pre class="wp-block-code"><code>$ cd /usr/local/directadmin/custombuild
$ ./build update
$ ./build secure_php</code></pre>



<p>Ensure that complex passwords are respected in your directadmin.conf file:</p>



<pre class="wp-block-code"><code>$ echo 'enforce_difficult_passwords=1' >> /usr/local/directadmin/conf/directadmin.conf</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-directadmin-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>487</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Dotclear on Debian 10</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-dotclear-on-debian-10/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-dotclear-on-debian-10/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Fri, 25 Jun 2021 08:39:59 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3919</guid>

					<description><![CDATA[Dotclear&#160;is very popular today. It is a simple blogging engine built around PHP. It contains: Automatic installation Multi-blog and multi-user Static Pages Media manager Custom layout For a successful installation, you need a&#160;VPS&#160;server with a LAMP stack in Ubuntu 16.04. On most stacks, files for the entire website (usually) are [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://dotclear.org/">Dotclear&nbsp;</a></em></strong>is very popular today. It is a simple blogging engine built around PHP. It contains:</p>



<ul><li><strong>Automatic installation</strong></li><li><strong>Multi-blog and multi-user</strong></li><li><strong>Static Pages</strong></li><li><strong>Media manager</strong></li><li><strong>Custom layout</strong></li></ul>



<p>For a successful installation, you need a&nbsp;<strong><em><a href="https://hostry.com/services/vps/">VPS&nbsp;</a></em></strong>server with a LAMP stack in Ubuntu 16.04. On most stacks, files for the entire website (usually) are stored in the&nbsp;<strong>/var/www/html/</strong>&nbsp;directory. You must go to this folder and delete all the placeholder files that are contained in it.</p>



<pre class="wp-block-code"><code>cd /var/www/html
rm * -rf</code></pre>



<p>Then, please make sure that Apache owns in following directory:</p>



<pre class="wp-block-code"><code>chown www-data:www-data . -R</code></pre>



<h2 id="database-setup" >Database Setup</h2>



<p>For this step, you need to go to your MySLQ with the following command:</p>



<pre class="wp-block-code"><code>mysql -u root -p</code></pre>



<p>Then you need to create the database and user (replace with &lt; your password&gt;)</p>



<pre class="wp-block-code"><code>CREATE DATABASE dotclear;
GRANT ALL PRIVILEGES ON dotclear.* TO dotclearuser@localhost IDENTIFIED BY '&lt;your_password&gt;';
FLUSH PRIVILEGES;
\q</code></pre>



<h2 id="install-dotclear" >Install Dotclear</h2>



<p>Please make sure that your session is still in the&nbsp;<code><strong>var/www/html</strong></code>&nbsp;folder</p>



<pre class="wp-block-code"><code>cd /var/www/html</code></pre>



<p>Then you need to download the <strong>Dotclear </strong>loader <strong>PHP</strong> script:</p>



<pre class="wp-block-code"><code>wget https://download.dotclear.org/loader/dotclear-loader.php</code></pre>



<p>Open a web browser and go to http:&nbsp;<strong><em>//YOUR_IP_ADDRESS/dotclear-loader.php</em></strong>. You will be presented with the installer page. Follow the onscreen instructions. On the second screen, you will be prompted to enter the database data. Use the following details:</p>



<pre class="wp-block-code"><code>Database type: MySQLi
Database Host Name: localhost
Database Name: dotclear
Database User Name: dotclearuser
Database Password: password</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-dotclear-on-debian-10/feed/</wfw:commentRss>
			<slash:comments>642</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Dotclear on Ubuntu 16.04</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-dotclear-on-ubuntu-16-04/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-dotclear-on-ubuntu-16-04/#comments</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 21 Apr 2020 09:43:59 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1624</guid>

					<description><![CDATA[Dotclear is very popular today. It is a simple blogging engine built around PHP. It contains: Automatic installation Multi-blog and multi-user Static Pages Media manager Custom layout For a successful installation, you need a VPS server with a LAMP stack in Ubuntu 16.04. On most stacks, files for the entire [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://dotclear.org/">Dotclear </a></em></strong>is very popular today. It is a simple blogging engine built around PHP. It contains:</p>



<ul><li><strong>Automatic installation</strong></li><li><strong>Multi-blog and multi-user</strong></li><li><strong>Static Pages</strong></li><li><strong>Media manager</strong></li><li><strong>Custom layout</strong></li></ul>



<p>For a successful installation, you need a <strong><em><a href="https://hostry.com/services/vps/">VPS </a></em></strong>server with a LAMP stack in Ubuntu 16.04. On most stacks, files for the entire website (usually) are stored in the <strong>/var/www/html/</strong> directory. You must go to this folder and delete all the placeholder files that are contained in it.</p>



<pre class="wp-block-code"><code>cd /var/www/html/
rm -rf index.php logo.png</code></pre>



<h2 id="database-setup" >Database setup </h2>



<p>For this step, you need to go to your MySLQ with the following command:</p>



<pre class="wp-block-code"><code>mysql -u root -p</code></pre>



<p>Then you need to create the database and user (replace  with &lt; your password&gt;)</p>



<pre class="wp-block-code"><code>CREATE DATABASE dotclear;
GRANT ALL PRIVILEGES ON dotclear.* TO dotclearuser@localhost IDENTIFIED BY '&lt;your_password&gt;';
FLUSH PRIVILEGES;
\q</code></pre>



<h2 id="install-dotclear" >Install Dotclear</h2>



<p>A simple installer provided by Dotclear will be used. Make sure you are still in the / var / www / html / folder. If not, run <strong>cd/var/www/html/</strong>. Download the bootloader script.</p>



<pre class="wp-block-code"><code>wget https://download.dotclear.org/loader/dotclear-loader.php</code></pre>



<p>Make sure our Apache user owns this folder.</p>



<pre class="wp-block-code"><code>chown www-data:www-data ./</code></pre>



<p>Open a web browser and go to http: <strong><em>//YOUR_IP_ADDRESS/dotclear-loader.php</em></strong>. You will be presented with the installer page. Follow the onscreen instructions. On the second screen, you will be prompted to enter the database data. Use the following details:</p>



<pre class="wp-block-code"><code>Database type: MySQLi
Database Host Name: localhost
Database Name: dotclear
Database User Name: dotclearuser
Database Password: &lt;your_password&gt;</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-dotclear-on-ubuntu-16-04/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install FFmpeg on Debian</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-ffmpeg-on-debian/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-ffmpeg-on-debian/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 10 Sep 2020 09:33:16 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=2012</guid>

					<description><![CDATA[This guide is described how to install FFmpeg for the following Debian versions: 8, 9, 10. FFmpeg is a free utility for decoding and encoding video or audio. Converting audio and video becomes very easy with this FFmpeg utility. It also provides a cross-platform solution for recording, converting and streaming [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>This guide is described how to install <strong><em><a href="https://ffmpeg.org/">FFmpeg</a></em></strong> for the following <strong>Debian versions: 8, 9, 10.</strong> FFmpeg is a free utility for decoding and encoding video or audio. Converting audio and video becomes very easy with this FFmpeg utility. It also provides a cross-platform solution for recording, converting and streaming audio and video. Before starting the installation, we recommend that you update Debian to the latest packages and connect to the server</p>



<h2 id="using-with-debian-9-and-10" >Using with Debian 9 and 10</h2>



<p>Install FFmpeg</p>



<pre class="wp-block-code"><code>$ sudo apt-get install ffmpeg</code></pre>



<p>Check your installation</p>



<pre class="wp-block-code"><code>ffmpeg -version</code></pre>



<p>After entering this code, you should see information about installing FFmpeg. This completes your setup correctly.</p>



<h2 id="using-debian-8" >Using Debian 8</h2>



<p>Editing the original list</p>



<pre class="wp-block-code"><code>$ sudo nano /etc/apt/sources.list</code></pre>



<p>Then you need to add to the end of the file</p>



<pre class="wp-block-code"><code># deb-multimedia
deb http://www.deb-multimedia.org jessie main non-free
deb-src http://www.deb-multimedia.org jessie main non-free

# jessie-backports
deb http://httpredir.debian.org/debian/ jessie-backports main</code></pre>



<p>After that, you need to save and close the file. Next, update the package list and install the <strong>deb-multimedia</strong> keychain</p>



<pre class="wp-block-code"><code>$ sudo apt-get update
$ sudo apt-get install deb-multimedia-keyring
$ sudo apt-get update</code></pre>



<p>Install FFmpeg</p>



<pre class="wp-block-code"><code>$ sudo apt-get install ffmpeg</code></pre>



<p>You can finally check the installation using the following command:</p>



<pre class="wp-block-code"><code>ffmpeg -version</code></pre>



<p>If everything is completed correctly, then you should be able to see information about the successful installation of FFmpeg. At this stage, the configuration is complete.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-ffmpeg-on-debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install FFmpeg on Fedora</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-ffmpeg-on-fedora/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-ffmpeg-on-fedora/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Fri, 04 Sep 2020 07:41:32 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1971</guid>

					<description><![CDATA[FFmpeg is a free utility for decoding and encoding video or audio. Converting audio and video becomes very easy with this FFmpeg utility. It also provides a cross-platform solution for recording, converting and streaming audio and video. This article will focus on installing FFmpeg for the following Fedora Linux versions: [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><a href="https://ffmpeg.org/">FFmpeg </a></strong> is a free utility for decoding and encoding video or audio. Converting audio and video becomes very easy with this FFmpeg utility. It also provides a cross-platform solution for recording, converting and streaming audio and video. This article will focus on installing FFmpeg for the following Fedora Linux versions: <strong>Fedora 31 </strong>and<strong> Fedora 32</strong></p>



<h2 id="mounting" >Mounting</h2>



<p>First you need to add the <em>RPM </em><strong>Fusion</strong> repository</p>



<pre class="wp-block-code"><code>$ sudo dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
$ sudo dnf -y install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm</code></pre>



<p>Then you need to update the system to the latest packages</p>



<pre class="wp-block-code"><code>$ sudo dnf update</code></pre>



<p>After that, go directly to installing <strong>FFmpeg</strong></p>



<pre class="wp-block-code"><code>$ sudo dnf install -y ffmpeg</code></pre>



<p>Finally, you need to make sure that <strong>FFmpeg</strong> is working properly. To do this, run the following command:</p>



<pre class="wp-block-code"><code>$ ffmpeg --help</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-ffmpeg-on-fedora/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install Foreman on Ubuntu 18.04</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-foreman-on-ubuntu-18-04/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-foreman-on-ubuntu-18-04/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Tue, 17 Mar 2020 10:06:22 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1507</guid>

					<description><![CDATA[Foreman is a special tool to help you configure virtual and dedicated servers. This tool is free and it has an open source code. He is also ready to help you configure and control the server. It is a kind of a complete lifecycle management tool for physical and virtual [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://theforeman.org/">Foreman </a></em></strong>is a special tool to help you configure <strong><em><a href="https://hostry.com/products/vps/">virtual</a></em></strong><a href="https://hostry.com/products/vps/"> </a>and <strong><em><a href="https://hostry.com/products/dedicated-servers/">dedicated</a></em></strong> servers. This tool is free and it has an open source code. He is also ready to help you configure and control the server. It is a kind of a complete lifecycle management tool for physical and virtual servers.</p>



<h2 id="system-update" >System update</h2>



<p>To get started, you need to upgrade your system before you install Foreman </p>



<pre class="wp-block-code"><code>apt-get update &amp;&amp; apt-get upgrade </code></pre>



<h2 id="hostname-setting" >Hostname setting </h2>



<p>At this point, you need to edit the <strong>\etc\hosts</strong> file. You can edit from any text editor. </p>



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



<p>Add your server </p>



<pre class="wp-block-code"><code>Your IP address vps.hostry.com</code></pre>



<p>Then, save your file and exit the text editor. After that, you need to configure the host name. On Ubuntu, you can use <strong><em>hostnamectl </em></strong></p>



<pre class="wp-block-code"><code>hostnamectl set-hostname vps.hostry.com</code></pre>



<h2 id="install-foreman" >Install Foreman </h2>



<p>The Foreman Installer is a set of Puppet modules that installs everything you need for a fully functional Foreman installation. Now let&#8217;s set up the <strong>EPEL</strong>, <strong>Puppet</strong>, and <strong>Foreman</strong> repositories.</p>



<pre class="wp-block-code"><code>echo "deb http://deb.theforeman.org/ xenial 1.12" > /etc/apt/sources.list.d/foreman.list
echo "deb http://deb.theforeman.org/ plugins 1.12" >> /etc/apt/sources.list.d/foreman.list
apt-get -y install ca-certificates
wget -q https://deb.theforeman.org/pubkey.gpg -O- | apt-key add -</code></pre>



<p>Install the Foreman installer so that it can install Foreman and all the necessary packages.</p>



<pre class="wp-block-code"><code>apt-get update &amp;&amp; apt-get -y install foreman-installer</code></pre>



<p>Execute the Foreman installer.</p>



<pre class="wp-block-code"><code>foreman-installer --foreman-admin-password=mysupersecretpassword</code></pre>



<p>After you have completed, and if you have completed the correct steps, you will see &#8220;<strong>SUCCESS</strong>&#8221; </p>



<h2 id="firewall-configuration" >Firewall configuration </h2>



<p>You need to execute the following commands, one at a time </p>



<pre class="wp-block-code"><code>ufw allow 53/tcp
ufw allow 67-69/udp
ufw allow 80/tcp
ufw allow 443/tcp
ufw allow 3000/tcp
ufw allow 3306/tcp
ufw allow 5910-5930/tcp
ufw allow 5432/tcp
ufw allow 8140/tcp
ufw allow 8443/tcp</code></pre>



<p>Then enable the firewall service </p>



<pre class="wp-block-code"><code>ufw enable</code></pre>



<p>Next, you will be presented with a window for accepting changes, press <strong><em>Y</em></strong> </p>



<pre class="wp-block-code"><code>Command may disrupt existing ssh connections. Proceed with operation (y|n)?</code></pre>



<h2 id="web-interface" >Web Interface </h2>



<p>Open a web browser and go to http://YourServerIP or http://FQDN to access the Foreman web interface. You will see the login page, so enter your Foreman username and password that we created earlier with mysupersecretpassword, and then click the Login button.</p>



<h2 id="install-ntp-module" >Install NTP Module</h2>



<pre class="wp-block-code"><code>puppet module install -i /etc/puppet/environments/production/modules saz/ntp</code></pre>



<p>In the Foreman web console, go to Configure&gt; Puppet&gt; Classes and click Import from hostname (server.vultr.local) to read the available Puppet classes from the Puppet wizard and populate the Foreman database. Select the NTP module and click on the Update button. </p>



<p>Done! From now on, you can control the NTP module and Foreman from its control panel.

</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-foreman-on-ubuntu-18-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install Netdata on CentOS 7</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-centos-7/</link>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Fri, 03 Jul 2020 11:17:49 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1838</guid>

					<description><![CDATA[Netdata is a performance monitoring system that allocates resources and availability in real time. Install dependencies To install Netdata, you first need to install the following: Install netdata Installation using an official script. Make sure you run bash for your shell After, Install Netdata directly from GitHub source If no [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><em><a href="https://github.com/netdata/netdata/wiki">Netdata</a></em></strong> is a performance monitoring system that allocates resources and availability in real time.</p>



<h2 id="install-dependencies" >Install dependencies</h2>



<p>To install <strong>Netdata</strong>, you first need to install the following:</p>



<pre class="wp-block-code"><code>$ sudo yum install zlib-devel libuuid-devel libmnl-devel gcc make git autoconf autogen automake pkgconfig
$ sudo yum install curl jq nodejs</code></pre>



<h2 id="install-netdata" >Install netdata</h2>



<p>Installation using an official script. Make sure you run bash for your shell</p>



<pre class="wp-block-code"><code>$ bash</code></pre>



<p>After, Install <strong>Netdata</strong> directly from GitHub source</p>



<pre class="wp-block-code"><code>$ bash &lt;(curl -Ss https://my-netdata.io/kickstart.sh)</code></pre>



<p>If no errors occur during installation, the Netdata daemon will start.</p>



<h2 id="change-firewall-rules" >Change firewall rules</h2>



<p>Before you can access Netdata, you need to change your firewall rules. This is necessary to allow traffic through port 19999 (this port is set by default for Netdata)</p>



<pre class="wp-block-code"><code>$ sudo firewall-cmd --permanent --zone=public --add-port=19999/tcp
$ sudo firewall-cmd --reload</code></pre>



<h2 id="view-monitoring-interface" >View monitoring interface</h2>



<p>After successfully changing the firewall rules, it is mandatory to confirm the installation by opening a web browser and visiting the monitoring interface at <strong><em>http://192.0.2.123:19999</em></strong></p>



<h2 id="setup-systemd-service-unit" >Setup Systemd Service Unit</h2>



<p>For your comfort, put Netdatd under systemd control</p>



<pre class="wp-block-code"><code>$ sudo yum install psmisc
$ sudo killall netdata
$ sudo cp ~/netdata/system/netdata.service /etc/systemd/system/
$ sudo systemctl daemon-reload
$ sudo systemctl start netdata.service
$ sudo systemctl enable netdata.service</code></pre>



<p>To further configure Netdata, you must edit the configuration file</p>



<pre class="wp-block-code"><code>$ sudo vi /etc/netdata/netdata.conf</code></pre>



<p>To view the current configuration, you can visit the page <strong>http://192.0.2.123:19999/netdata.conf</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How To Install Netdata on Debian 9</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-debian-9/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 01 Oct 2020 09:36:33 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=2299</guid>

					<description><![CDATA[Netdata is a distributed real-time monitoring system for server uptime and performance. This guide focuses on operating systems such as Debian 9 Installing dependencies First of all, in order to install Netdata, you need to install the following dependencies. You must enter the following into the command line: Installing Netdata [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><a href="https://github.com/netdata/netdata/wiki">Netdata</a></strong> is a distributed real-time monitoring system for server uptime and performance. This guide focuses on operating systems such as Debian 9</p>



<h2 id="installing-dependencies" >Installing dependencies</h2>



<p>First of all, in order to install Netdata, you need to install the following dependencies. You must enter the following into the command line:</p>



<pre class="wp-block-code"><code>sudo apt-get install zlib1g-dev uuid-dev libmnl-dev gcc make git autoconf autoconf-archive autogen automake pkg-config curl</code></pre>



<h2 id="installing-netdata" >Installing Netdata</h2>



<p>With the following installation script, you will be able to install Netdata. Make sure you are using <strong>bash</strong></p>



<pre class="wp-block-code"><code>$ bash</code></pre>



<p>Install Netdata directly from the <strong>GitHub</strong> source</p>



<pre class="wp-block-code"><code>$ bash &lt;(curl -Ss https://my-netdata.io/kickstart.sh)</code></pre>



<p>If everything was done correctly, then the Netdata daemon will be started after that. To check the status of Netdata services, you can run the following commands:</p>



<pre class="wp-block-code"><code>$ sudo systemctl start netdata
$ sudo systemctl stop netdata
$ sudo systemctl status netdata</code></pre>



<h2 id="change-firewall-status" >Change firewall status</h2>



<p>Before you can access the Netdata web interface, you need to change the firewall rules to allow traffic on port <strong>19999</strong>, this is the default communication port for Netdata</p>



<pre class="wp-block-code"><code>$ sudo firewall-cmd --permanent --zone=public --add-port=19999/tcp
$ sudo firewall-cmd --reload</code></pre>



<p>After the changes, you need to <strong>restart</strong> the firewall. To do this, you can use the following command:</p>



<pre class="wp-block-code"><code>$ service firewalld restart</code></pre>



<h2 id="view-the-monitoring-interface" >View The Monitoring Interface</h2>



<p>In this step, you need to confirm the installation. To do this, open the interface in a web browser and visit the monitoring interface for Netdata. <strong>http://your_server_IP:19999</strong></p>



<p>As for further configuring Netdata, you need to edit its configuration file:</p>



<pre class="wp-block-code"><code>$ sudo vi /etc/netdata/netdata.conf</code></pre>



<p>To view the current configuration: </p>



<p><strong>http://your_server_IP:19999/netdata.conf</strong></p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-netdata-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Nginx, WordPress, and Let&#8217;s Encrypt with EasyEngine on Debian 8 or Ubuntu 18.04</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-nginx-wordpress-and-lets-encrypt-with-easyengine-on-debian-8-or-ubuntu-18-04/</link>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Mon, 18 Jan 2021 10:37:02 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=2948</guid>

					<description><![CDATA[EasyEngines a tool that is written in Python. It allows you to easily manage your WordPress sites using an Nginx web server. With EasyEngine, you don&#8217;t have to deal with complex web server configurations. In this simple tutorial, we will see how to install EasyEngine and set up a single [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong><a href="https://easyengine.io/">EasyEngine</a></strong>s a tool that is written in Python. It allows you to easily manage your WordPress sites using an Nginx web server. With EasyEngine, you don&#8217;t have to deal with complex web server configurations. In this simple tutorial, we will see how to install EasyEngine and set up a single WordPress site that uses the Let&#8217;s Encrypt HTTPS certificate.</p>



<h2 id="installation" >Installation</h2>



<p>EasyEngine is installed on a new server that does not yet have Apache or MySQL. First, you need to update the system using the following simple command:</p>



<pre class="wp-block-code"><code>sudo apt-get update</code></pre>



<p>Then proceed to install <strong>EasyEngine</strong></p>



<pre class="wp-block-code"><code>wget -qO ee rt.cx/ee &amp;&amp; sudo bash ee</code></pre>



<p>You will be prompted for a username and email address. Once the installation is complete, verify that it works by entering the command:</p>



<pre class="wp-block-code"><code>sudo ee</code></pre>



<p>After that, if everything was successful, you will receive a list of available arguments</p>



<h2 id="easyengine-launching" >EasyEngine Launching</h2>



<p>EasyEngine has the amazing property of making WordPress simpler, and you can do this with one simple command:</p>



<pre class="wp-block-code"><code>sudo ee site create yourdomain.com --wp --letsencrypt</code></pre>



<p>This command will automatically install Nginx for you, Let&#8217;s Encrypt certificate, PHP and MariaDB, and then WordPress. Also, you can add additional arguments after <strong>-wp</strong>. The list of available commands is available on the EasyEngine website</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
