<?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>sqlbuddy Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/sqlbuddy/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 24 Oct 2019 16:21:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>How to install SQLBuddy on CentOS 8?</title>
		<link>https://www.osradar.com/install-sqlbuddy-centos-8/</link>
					<comments>https://www.osradar.com/install-sqlbuddy-centos-8/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 30 Oct 2019 01:07:26 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sqlbuddy]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=14874</guid>

					<description><![CDATA[<p>Recently, I was telling you about Adminer, an extraordinary front end for MySQL and MariaDB. I was saying that this kind of application can be a bit misleading because they are so light that they do not seem to be powerful. However, the opposite is true. Well, today I will tell you how to install [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-sqlbuddy-centos-8/">How to install SQLBuddy on CentOS 8?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Recently, I was telling you about Adminer, an extraordinary front end for MySQL and MariaDB. I was saying that this kind of application can be a bit misleading because they are so light that they do not seem to be powerful. However, the opposite is true. Well, today I will tell you how to install SQLBuddy on CentOS 8 and instead of its special features.</p>



<p><a rel="noreferrer noopener" aria-label="SQLBuddy (opens in a new tab)" href="http://sqlbuddy.com/" target="_blank">SQLBuddy</a> is an application that provides a web interface for data in <a rel="noreferrer noopener" aria-label="MySQL (opens in a new tab)" href="https://www.osradar.com/tag/mysql/" target="_blank">MySQL</a> and <a href="https://www.osradar.com/tag/sqlite/" target="_blank" rel="noreferrer noopener" aria-label="SQLite (opens in a new tab)">SQLite</a>. It is quite light and easy to install on a server. Thanks to its lightness we can be sure that it will not consume resources unnecessarily.</p>



<p>On the other hand, it is a very complete application because not only we will be able to visualize data but also we will be able to execute all type of SQL sentences. This makes working with MySQL or SQLite much easier. In addition, S<strong>QLBuddy is created and thought to be a secure application </strong>so we can be sure that there will be no problems when using it.</p>



<p>In addition, it has quite easy to meet requirements such as <strong>PHP 4.3 or higher and MySQL 4+</strong> practically non-existent in most Linux distributions. It also supports a lot of web browsers including the proprietary Safari and <a rel="noreferrer noopener" aria-label="Opera (opens in a new tab)" href="https://www.osradar.com/install-opera-web-browser-on-ubuntu-18-04-and-ubuntu-19-04/" target="_blank">Opera</a>. So access will not be a problem.</p>



<h2>Install SQLBuddy on CentOS 8</h2>



<p>SQLBuddy is a web application made with PHP. So, we need a functional web server in our computer. So, the first step is to install LAMP on CentOS 8.</p>



<p>How to install LAMP on CentOS 8?</p>



<p>After installing LAMP and configuring our MySQL or MariaDB instance. Just make sure the wget and unzip packages are installed.</p>



<pre class="wp-block-preformatted">:~$ su<br>:~# dnf install wget unzip</pre>



<p>Next, navigate to the Apache folder and download the program.</p>



<pre class="wp-block-preformatted">:~# cd /var/www/html/
:~# wget -c https://github.com/calvinlough/sqlbuddy/raw/gh-pages/sqlbuddy.zip</pre>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="276" src="https://www.osradar.com/wp-content/uploads/2019/10/1-15-1024x276.png" alt="1.- Download SQLBuddy on CentOS 8" class="wp-image-14875" srcset="https://www.osradar.com/wp-content/uploads/2019/10/1-15-1024x276.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/1-15-300x81.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/1-15-768x207.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/1-15-696x187.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/1-15-1068x287.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/1-15.png 1349w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Download SQLBuddy on CentOS 8</figcaption></figure>



<p>Then, decompress the file.</p>



<pre class="wp-block-preformatted">:~# unzip sqlbuddy.zip</pre>



<figure class="wp-block-image"><img loading="lazy" width="885" height="665" src="https://www.osradar.com/wp-content/uploads/2019/10/2-14.png" alt="2.- Decompressing the file" class="wp-image-14876" srcset="https://www.osradar.com/wp-content/uploads/2019/10/2-14.png 885w, https://www.osradar.com/wp-content/uploads/2019/10/2-14-300x225.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/2-14-768x577.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/2-14-80x60.png 80w, https://www.osradar.com/wp-content/uploads/2019/10/2-14-265x198.png 265w, https://www.osradar.com/wp-content/uploads/2019/10/2-14-696x523.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/2-14-559x420.png 559w" sizes="(max-width: 885px) 100vw, 885px" /><figcaption>2.- Decompressing the file</figcaption></figure>



<p>It is advisable to delete the downloaded file.</p>



<pre class="wp-block-preformatted">:~# rm sqlbuddy.zip</pre>



<p>Before being able to access it is necessary to change the permissions of the folder. Also, the owner of the same one to avoid problems of execution.</p>



<pre class="wp-block-preformatted">:~# chmod 755 -R sqlbuddy/
:~# chown -R apache:apache sqlbuddy/</pre>



<p>Finally, open your web browser and log in.</p>



<figure class="wp-block-image"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/10/3-13-1024x502.png" alt="3.- SQLBuddy on CentOS 8" class="wp-image-14877" srcset="https://www.osradar.com/wp-content/uploads/2019/10/3-13-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/10/3-13-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/10/3-13.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>3.- SQLBuddy on CentOS 8</figcaption></figure>



<p>Now, enjoy it.</p>



<h2>Conclusion</h2>



<p>SQLBuddy is another great alternative to PHPMyAdmin with very good and useful features to visualize our MySQL data. Best of all, it&#8217;s easy to install.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-sqlbuddy-centos-8/">How to install SQLBuddy on CentOS 8?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-sqlbuddy-centos-8/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
