<?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>Converting &#8211; Hostry Help Center</title>
	<atom:link href="https://help.hostry.com/article-tags/converting/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, 26 May 2021 08:59:41 +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>Converting &#8211; Hostry Help Center</title>
	<link>https://help.hostry.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Converting from MySQL to MariaDB on Ubuntu</title>
		<link>https://help.hostry.com/knowledge-base/converting-from-mysql-to-mariadb-to-ubuntu/</link>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Thu, 13 Feb 2020 10:27:18 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=1405</guid>

					<description><![CDATA[This guide will describe the steps for converting a MySQL server to a MariaDB server and resolving unsatisfied dependencies that may arise during the conversion process. This manual is intended only for virtual servers on which the Ubuntu operating system is installed. Uninstall MySQL server To get started, run these [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>This guide will describe the steps for converting a MySQL server to a MariaDB server and resolving unsatisfied dependencies that may arise during the conversion process. This manual is intended only for virtual servers on which the Ubuntu operating system is installed. </p>



<h2 id="uninstall-mysql-server" >Uninstall MySQL server </h2>



<p>To get started, run these commands as root or use sudo</p>



<pre class="wp-block-code"><code>
service mysql stop
apt-get remove mysql-server mysql-common libmysqlclient18</code></pre>



<h2 id="install-mariadb" >Install MariaDB </h2>



<p>Run the following command </p>



<pre class="wp-block-code"><code>apt-get install software-properties-common</code></pre>



<p>Add MariaDB Store Key </p>



<pre class="wp-block-code"><code>sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db</code></pre>



<p>Add MariaDB Repository </p>



<pre class="wp-block-code"><code>sudo add-apt-repository 'deb http://ftp.utexas.edu/mariadb/repo/10.0/ubuntu trusty main'</code></pre>



<p>Install MariaDB </p>



<pre class="wp-block-code"><code>apt-get install mariadb-server libmariadbclient18</code></pre>



<p>Handling Unsatisfied Dependencies </p>



<p>The MariaDB installer may fail (which often happens) with an error, such as this one: </p>



<pre class="wp-block-code"><code>mariadb-server : Depends: mariadb-server-10.0 (specific version) but it is not going to be installed.</code></pre>



<p>This can be frustrating and may not look right. Next, you need to install all the adjacent dependencies. Add g ++ repository to server to resolve libstdc ++ 6 dependency. </p>



<h2 id="add-g" >Add g ++ </h2>



<pre class="wp-block-code"><code>add-apt-repository ppa:ubuntu-toolchain-r/test
apt-get update
apt-get install g++-4.9</code></pre>



<p>Pin the MariaDB repository</p>



<p>This is done by creating a file with <strong>MariaDB.pref</strong> in <strong>/etc/apt/preferences.d/</strong> with the contents shown below:</p>



<p></p>



<pre class="wp-block-code"><code>Package: *
Pin: origin &lt;mirror-domain>
Pin-Priority: 1000</code></pre>



<p>Replace the <strong><em>&lt;mirror-domain&gt; </em></strong>that is displayed when accessing the MarizDB repository selection page</p>



<p>In my case, I chose the <strong>&#8220;University of Dallas&#8221;</strong>. After updating, the file now has the following contents:</p>



<pre class="wp-block-code"><code>Package: *
Pin: origin http://ftp.udallas.edu/mariadb/repo/10.0/ubuntu
Pin-Priority: 1000</code></pre>



<p>Save the file, upgrade your system.</p>



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



<p>Now, dependency problems have been resolved. If you use 12.04, then pay attention to the fact (it is important) that there were reports that g ++ was excluded from this version.</p>



<p>Install MariaDB again</p>



<pre class="wp-block-code"><code>apt-get install mariadb-server</code></pre>



<p>Check your installation of MariaDB</p>



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



<p>Now, you can see the following (or the same) output</p>



<pre class="wp-block-code"><code>Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is XXXX
Server version: 10.0.X


Copyright (c) 2000, 2014, Oracle, Monty Program Ab and others.


Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]></code></pre>



<p></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How do I convert my CER file to PEM?</title>
		<link>https://help.hostry.com/knowledge-base/how-do-i-convert-my-cer-file-to-pem/</link>
					<comments>https://help.hostry.com/knowledge-base/how-do-i-convert-my-cer-file-to-pem/#respond</comments>
		
		<dc:creator><![CDATA[Alex]]></dc:creator>
		<pubDate>Wed, 26 May 2021 08:59:40 +0000</pubDate>
				<guid isPermaLink="false">https://help.hostry.com/?post_type=ht_kb&#038;p=3809</guid>

					<description><![CDATA[Files of type CER are a security file that is used to store an X.509 certificate. It is provided by an accredited certification authority. It contains information about the owner of the certificate and the public key. PEM files are bas64 encoded ASCII files in which certification authorities issue certificates. [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Files of type <strong>CER</strong> are a security file that is used to store an <strong>X.509</strong> certificate. It is provided by an accredited certification authority. It contains information about the owner of the certificate and the public key.</p>



<p><strong>PEM</strong> files are bas64 encoded <strong>ASCII</strong> files in which certification authorities issue certificates. This format is used to store and send cryptographic keys, certificates, and other intermediate certificates.</p>



<p>In order to convert a CER file to PEM, you need the following:</p>



<p>The <strong>OpenSSL</strong> toolkit is only installed by default on Ubuntu. However, if it is not there, you can install it with the following command in Terminal:</p>



<pre class="wp-block-code"><code>apt install openssl</code></pre>



<p>Enter your sudo password. When prompted to choose the y / n option, press y to continue. This will start the installation of <strong>OpenSSL</strong> on the system. To convert a CER file to PEM use the following syntax:</p>



<pre class="wp-block-code"><code>openssl x509 -inform der -in cert.cer -outform pem -out cert.pem</code></pre>



<p>In the above syntax, cert.cer is the name of the security certificate you want to convert to PEM format, and cert.pem is the filename after the final conversion.</p>



<p>To convert a PEM file to CER use the following syntax:</p>



<pre class="wp-block-code"><code>openssl x509 -inform PEM -in cert.pem -outform DER -out cert.cer</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://help.hostry.com/knowledge-base/how-do-i-convert-my-cer-file-to-pem/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
