<?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>CoreOS &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/coreos/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>Thu, 04 Jun 2020 09:03:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.13</generator>

<image>
	<url>https://help.hostry.com/wp-content/uploads/cache/2021/01/cropped-apple-icon-180x180-1/836712163.png</url>
	<title>CoreOS &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to change SSH port on CoreOS</title>
		<link>https://help.hostry.com/knowledge-base/how-to-change-ssh-port-on-coreos/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-change-ssh-port-on-coreos/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 04 Jun 2020 09:03:39 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1755</guid>

					<description><![CDATA[Change SSH port First you need to go to the settings of the /usr/lib/systemd/system/sshd.socket file and open it in a text editor Next, find the ListenStream option and change the port to the new SSH port of your choice. Then you need to save the file Restarting SSH If you [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 id="change-ssh-port" >Change SSH port</h2>



<p>First you need to go to the settings of the <strong>/usr/lib/systemd/system/sshd.socket</strong> file and open it in a text editor</p>



<pre class="wp-block-code"><code>vi /usr/lib/systemd/system/sshd.socket</code></pre>



<p>Next, find the <strong>ListenStream</strong> option and change the port to the new SSH port of your choice. Then you need to save the file</p>



<h2 id="restarting-ssh" >Restarting SSH</h2>



<p>If you use a firewall on your server, you must first allow access to the new SSH port. To do this, restart the SSH daemon while using <strong>systemctl</strong></p>



<pre class="wp-block-code"><code>systemctl restart sshd.socket</code></pre>



<p>The SSH server will restart and will now listen on the new port.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-change-ssh-port-on-coreos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Install HTMLDoc on CoreOS</title>
		<link>https://help.hostry.com/knowledge-base/how-to-install-htmldoc-on-coreos/</link>
					<comments>https://help.hostry.com/knowledge-base/how-to-install-htmldoc-on-coreos/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 28 May 2020 08:56:32 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1741</guid>

					<description><![CDATA[HTMLDoc is a special dynamic PostScript document parser (PDF 1.6). This guide is for installing HTMLDoc on CoreOS. After installing HTMLDoc, the creation of a simple one-page document will continue without any headers, footers, borders, or additional elements. Install HTMLDoc First you need to log in to root and create [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p><strong>HTMLDoc</strong> is a special dynamic PostScript document parser (<strong>PDF 1.6</strong>). This guide is for installing <em>HTMLDoc</em> on <em>CoreOS</em>. After installing <em>HTMLDoc</em>, the creation of a simple one-page document will continue without any headers, footers, borders, or additional elements.</p>



<h2 id="install-htmldoc" >Install HTMLDoc</h2>



<p>First you need to log in to <strong>root</strong> and create a <em>container</em></p>



<pre class="wp-block-code"><code># /usr/bin/toolbox</code></pre>



<p>Now install <strong><em>htmldoc</em></strong></p>



<pre class="wp-block-code"><code># yum install htmldoc -y</code></pre>



<p>Next, install <strong><em>nano</em></strong></p>



<pre class="wp-block-code"><code># yum install nano -y</code></pre>



<p>Now you can start creating</p>



<h2 id="create-your-first-pdf-from-html" >Create your first PDF from HTML</h2>



<p>You need to quickly test this feature from your command line. Go to <strong>/tpm/ </strong>directory for this test</p>



<p>Now you need to create a simple HTML file that will be used to create the PDF document. Let’s name it for example “<strong>example-doc.html</strong>“</p>



<pre class="wp-block-code"><code>nano example-doc.html</code></pre>



<p>Add the following HTML markup for it</p>



<pre class="wp-block-code"><code>&lt;html>
&lt;head>
&lt;title>My first PDF from HTML&lt;/title>
&lt;/head>
&lt;body>
This is the body of my first PDF document made from HTML.
&lt;/body>
&lt;/html></code></pre>



<p>Save the file by pressing CTRL + X then Y to save the changes. Next, you can instruct HTMLDoc by parsing the PDF from your&nbsp;<strong>example-doc.html</strong></p>



<pre class="wp-block-code"><code>htmldoc --webpage -f postscript-output.pdf  example-doc.html</code></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-to-install-htmldoc-on-coreos/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
