<?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>ArangoDB Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/arangodb/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Wed, 18 Dec 2019 19:59:53 +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 deploy ArangoDB using Docker Compose?</title>
		<link>https://www.osradar.com/arangodb-using-docker-compose/</link>
					<comments>https://www.osradar.com/arangodb-using-docker-compose/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 20 Dec 2019 23:30:00 +0000</pubDate>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ArangoDB]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Docker compose]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=16642</guid>

					<description><![CDATA[<p>Hello. In this post, I will teach you how to deploy ArangoDB using Docker compose. It will be brief but explained step by step. Briefly, I will tell you that Docker compose is more thought of production environments where compatibility should be as high as possible. This is precisely the great advantage of Docker images [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/arangodb-using-docker-compose/">How to deploy ArangoDB using Docker Compose?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p><strong>Hello. In this post, I will teach you how to deploy ArangoDB using Docker compose. It will be brief but explained step by step.</strong></p>



<p>Briefly, I will tell you that Docker compose is more thought of production environments where compatibility should be as high as possible. This is precisely the great advantage of Docker images that we will be able to use in any supported system thanks to the technology of containers. Then,<strong> these steps can be done from any Linux distribution that has installed </strong><a rel="noreferrer noopener" href="https://www.osradar.com/tag/docker/" target="_blank"><strong>Docker </strong></a><strong>and Docker Compose.</strong></p>



<p><a rel="noreferrer noopener" aria-label="ArangoDB (opens in a new tab)" href="https://www.arangodb.com/" target="_blank">ArangoDB</a> is a native multi-model, open-source database with flexible data models for documents, graphs, and key-values. Build high-performance applications using a convenient SQL-like query language or JavaScript extensions. Use ACID transactions if you require them. Scale horizontally and vertically with a few mouse clicks.</p>



<p>So, let us start.</p>



<h2>Install Docker and Docker Compose on Linux</h2>



<p>The first step is to have Docker installed in the system, obviously.</p>



<ul><li>If you are using Ubuntu: <a href="https://www.osradar.com/how-to-install-docker-on-ubuntu-18-04/" target="_blank" rel="noreferrer noopener">How to install Docker on Ubuntu 18.04?</a></li><li>For CentOS 8: <a href="https://www.osradar.com/install-docker-centos-8/" target="_blank" rel="noreferrer noopener">How to install Docker on CentOS 8?</a></li><li>For CentOS 7: <a href="https://www.osradar.com/how-to-install-docker-ce-on-centos-7/" target="_blank" rel="noreferrer noopener">How to install Docker CE on CentOS 7?</a></li><li>If you use Windows: <a href="https://www.osradar.com/how-to-install-docker-in-windows-10/" target="_blank" rel="noreferrer noopener">How to install Docker in Windows 10?</a></li><li>Or, if you are using Debian 10: <a href="https://www.osradar.com/install-docker-on-debian-10/" target="_blank" rel="noreferrer noopener">How to install Docker on Debian 10?</a></li></ul>



<p>And using your distribution’s package manager, you can install Docker Compose. For example:</p>



<pre class="wp-block-preformatted">:~$ sudo apt docker-compose</pre>



<p>For Debian, Ubuntu, and derivatives.</p>



<pre class="wp-block-preformatted">:~$ sudo dnf install docker-compose</pre>



<p>Or, for RHEL, CentOS and derivatives.</p>



<h2>Deploy ArangoDB using Docker Compose</h2>



<p>First, I will create a folder called <code>arangodb</code> and within it a file called <code>docker-compose.yml</code> which is where we will add the instructions.</p>



<pre class="wp-block-preformatted">:~$ mkdir arangodb
:~$ cd arangodb</pre>



<p>Now we&#8217;ll create the docker-compose file and add the following:</p>



<pre class="wp-block-preformatted">:~$ nano docker-compose.yml</pre>



<pre class="wp-block-preformatted">version: '3.1'
 services:
 arangodb:
     image: arangodb:latest
     restart: always
     ports:
       - 1234:8529
     environment:
       ARANGO_ROOT_PASSWORD: angelo123osradar
     volumes:
       - /home/angelo/arangodb_data:/var/lib/arangodb3</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="849" height="323" src="https://www.osradar.com/wp-content/uploads/2019/12/1-7.png" alt="1.- The docker compose file" class="wp-image-16643" srcset="https://www.osradar.com/wp-content/uploads/2019/12/1-7.png 849w, https://www.osradar.com/wp-content/uploads/2019/12/1-7-300x114.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/1-7-768x292.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/1-7-696x265.png 696w" sizes="(max-width: 849px) 100vw, 849px" /><figcaption>1.- The docker-compose file</figcaption></figure>



<p>Now we proceed to explain. First, I&#8217;m using the latest version of ArangoDB. Then, I expose port 8529 which is the image port to 1234 of our host system.  You can use another port if you want.</p>



<p>On the other hand, in the environment section, I define an initial password for the root user. And a volume to access the container data. I have chosen <code>/home/angelo/arangodb_data</code> but you choose the one you want. Remember that before you raise the image you must create it.</p>



<p>Then, create the data folder and start the deployment.</p>



<pre class="wp-block-preformatted">:~$ mkdir<code>/home/angelo/arangodb_data</code></pre>



<pre class="wp-block-preformatted">:~$ sudo docker-compose up -d</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="733" height="281" src="https://www.osradar.com/wp-content/uploads/2019/12/2-6.png" alt="2.- Deploy ArangoDB using docker compose" class="wp-image-16644" srcset="https://www.osradar.com/wp-content/uploads/2019/12/2-6.png 733w, https://www.osradar.com/wp-content/uploads/2019/12/2-6-300x115.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/2-6-696x267.png 696w" sizes="(max-width: 733px) 100vw, 733px" /><figcaption>2.- Deploy ArangoDB using docker compose</figcaption></figure>



<p>When you finish, you can access the ArangoDB web interface. Open your browser and go to <code>http://your-server:1234</code>. You will see the following:</p>



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



<p>Then, type your credentials. Keep in mind that the default user is root. After that, you will see this:</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/4-5-1024x502.png" alt="4.- Selecting the database after the log in" class="wp-image-16646" srcset="https://www.osradar.com/wp-content/uploads/2019/12/4-5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/4-5-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/4-5.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>4.- Selecting the database</figcaption></figure>



<p>Finally, you will see the dashboard.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="502" src="https://www.osradar.com/wp-content/uploads/2019/12/5-5-1024x502.png" alt="5.- ArangoDB deployed using docker compose" class="wp-image-16647" srcset="https://www.osradar.com/wp-content/uploads/2019/12/5-5-1024x502.png 1024w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-300x147.png 300w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-768x376.png 768w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-324x160.png 324w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-696x341.png 696w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-1068x523.png 1068w, https://www.osradar.com/wp-content/uploads/2019/12/5-5-858x420.png 858w, https://www.osradar.com/wp-content/uploads/2019/12/5-5.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>5.- ArangoDB deployed using docker compose</figcaption></figure>



<p>And that is it.</p>



<h2>Conclusion</h2>



<p>ArangoDB is a NoSQL database manager quite important in the current market. Deploying ArangoDB using Docker compose is simple but with many options available.</p>



<p>If you want more information, I recommend you to visit the <a href="https://hub.docker.com/_/arangodb" target="_blank" rel="noreferrer noopener" aria-label="official documentation of the image. (opens in a new tab)">official documentation of the image.</a></p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/arangodb-using-docker-compose/">How to deploy ArangoDB using Docker Compose?</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/arangodb-using-docker-compose/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install ArangoDB on OpenSUSE 15.1?</title>
		<link>https://www.osradar.com/install-arangodb-on-opensuse-15-1/</link>
					<comments>https://www.osradar.com/install-arangodb-on-opensuse-15-1/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Wed, 29 May 2019 23:02:32 +0000</pubDate>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ArangoDB]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[HowTO how to]]></category>
		<category><![CDATA[Leap]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=12273</guid>

					<description><![CDATA[<p>The development of quality software is accompanied by quality database managers. That is to say, that they are stable, robust but to this is added the scalability. In other words, the ability to progressively increase the volume of data without losing performance. In this sense, NoSQL database managers are increasingly popular with developers. Especially in [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-arangodb-on-opensuse-15-1/">How to install ArangoDB on OpenSUSE 15.1?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The development of quality software is accompanied by quality database managers. That is to say, that they are stable, robust but to this is added the scalability. In other words, the ability to progressively increase the volume of data without losing performance. In this sense, NoSQL database managers are increasingly popular with developers. Especially in those who make applications for the web or mobile. There are many managers, but one simple, easy and very efficient to use is ArangoDB. That&#8217;s why, in this post, I will show you how to install ArangoDB on OpenSUSE 15.1 that has recently been released.</p>
<p>We have already talked about ArangoDB in <a href="https://www.osradar.com/tag/arangodb/">osradar</a> because we like it. However, I will explain briefly what it is. <a href="https://www.arangodb.com/">ArangoDB</a> is a NoSQL database manager. Actually, it uses a language implementation called AQL. It has a community license and a business license which makes it ideal for multiple projects. ArangoDB has earned the respect of the community and large companies for its scalability and replication capacity with multiple us.</p>
<p>So, let us get ArangoDB on OpenSUSE.</p>
<h2>Install ArangoDB on OpenSUSE</h2>
<p>ArangoDB does not leave many things to chance, that is why it has multiple installers for the main Linux distributions. And OpenSUSE is, so the installation will be done from the official repository of the application.</p>
<p>For this, first of all, it is necessary to update the system.</p>
<pre>:~$ sudo zypper up</pre>
<p>Then, add the ArangoDB repository.</p>
<pre>:~$ sudo zypper --no-gpg-checks --gpg-auto-import-keys addrepo https://download.arangodb.com/arangodb34/RPM/arangodb.repo</pre>
<p><figure id="attachment_12274" aria-describedby="caption-attachment-12274" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12274" src="https://www.osradar.com/wp-content/uploads/2019/05/1-11.png" alt="1.- Adding the ArangoDB repository" width="1365" height="263" srcset="https://www.osradar.com/wp-content/uploads/2019/05/1-11.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/1-11-300x58.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/1-11-768x148.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/1-11-1024x197.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/1-11-696x134.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/1-11-1068x206.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12274" class="wp-caption-text">1.- Adding the ArangoDB repository</figcaption></figure></p>
<p>Next, import the GPG key for the repository.</p>
<pre>:~$ sudo zypper --no-gpg-checks --gpg-auto-import-keys refresh</pre>
<p><figure id="attachment_12275" aria-describedby="caption-attachment-12275" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="wp-image-12275 size-full" src="https://www.osradar.com/wp-content/uploads/2019/05/2-11.png" alt="2.- Adding the GPG key for the repository" width="1365" height="507" srcset="https://www.osradar.com/wp-content/uploads/2019/05/2-11.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/2-11-300x111.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/2-11-768x285.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/2-11-1024x380.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/2-11-696x259.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/2-11-1068x397.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/2-11-1131x420.png 1131w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12275" class="wp-caption-text">2.- Adding the GPG key for the repository</figcaption></figure></p>
<p>Then, install ArangoDB.</p>
<pre>:~$ sudo zypper -n install arangodb3=3.4.5</pre>
<p><figure id="attachment_12276" aria-describedby="caption-attachment-12276" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12276" src="https://www.osradar.com/wp-content/uploads/2019/05/3-9.png" alt="3.- Install ArangoDB on OpenSUSE" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/05/3-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/3-9-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/3-9-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/3-9-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/3-9-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/3-9-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/3-9-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12276" class="wp-caption-text">3.- Install ArangoDB on OpenSUSE</figcaption></figure></p>
<p>And that&#8217;s it. So, it is necessary to configure ArangoDB before using it.</p>
<h2>Configure ArangoDB on OpenSUSE</h2>
<h3>Set a root password and access to the shell</h3>
<p>First, we must define a root password. To do this, run the following command:</p>
<pre>:~$ sudo arango-secure-installation</pre>
<p><figure id="attachment_12277" aria-describedby="caption-attachment-12277" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12277" src="https://www.osradar.com/wp-content/uploads/2019/05/4-8.png" alt="4.- Set a root password for ArangoDB" width="1365" height="204" srcset="https://www.osradar.com/wp-content/uploads/2019/05/4-8.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/4-8-300x45.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/4-8-768x115.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/4-8-1024x153.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/4-8-696x104.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/4-8-1068x160.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12277" class="wp-caption-text">4.- Set a root password for ArangoDB</figcaption></figure></p>
<p>After that, you can start ArangoDB and use the shell.</p>
<pre>:~$ sudo systemctl start arangodb3
:~$ arangosh</pre>
<p><figure id="attachment_12278" aria-describedby="caption-attachment-12278" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12278" src="https://www.osradar.com/wp-content/uploads/2019/05/5-3.png" alt="5.- ArangoDB shell running" width="1365" height="442" srcset="https://www.osradar.com/wp-content/uploads/2019/05/5-3.png 1365w, https://www.osradar.com/wp-content/uploads/2019/05/5-3-300x97.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/5-3-768x249.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/5-3-1024x332.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/5-3-696x225.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/5-3-1068x346.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/5-3-1297x420.png 1297w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-12278" class="wp-caption-text">5.- ArangoDB shell running</figcaption></figure></p>
<p>However, it is possible to enable the ArangoDB web interface.</p>
<h3>Enabling the ArangoDB Web interface on OpenSUSE</h3>
<p>ArangoDB&#8217;s web interface is quite friendly. Not only will it allow a better manipulation of the data but it will give us access to other functions. So it is a good idea to enable it.</p>
<p>To do this, you need to edit some configuration files:</p>
<pre>:~$ sudo nano /etc/arangodb3/arangod.conf</pre>
<p>Inside the file, locate the [server] section and in endpoint place the IP address of the server where ArangoDB is installed. There are several examples of confirmation. You can add a domain or if you are running it locally use localhost or 127.0.0.1. Also, there will be shown the default port of the application.</p>
<p><figure id="attachment_12279" aria-describedby="caption-attachment-12279" style="width: 771px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12279" src="https://www.osradar.com/wp-content/uploads/2019/05/6-2.png" alt="6.- Enabling the web interface" width="771" height="392" srcset="https://www.osradar.com/wp-content/uploads/2019/05/6-2.png 771w, https://www.osradar.com/wp-content/uploads/2019/05/6-2-300x153.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/6-2-768x390.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/6-2-696x354.png 696w" sizes="(max-width: 771px) 100vw, 771px" /><figcaption id="caption-attachment-12279" class="wp-caption-text">6.- Enabling the web interface</figcaption></figure></p>
<p>Press CTRL + O to save the changes and CTRL + X to close the file.</p>
<p>We have to do the same with this other file:</p>
<pre>:~$ sudo nano /etc/arangodb3/arangosh.conf</pre>
<p><figure id="attachment_12280" aria-describedby="caption-attachment-12280" style="width: 996px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12280" src="https://www.osradar.com/wp-content/uploads/2019/05/7-2.png" alt="7.- Set up the web interface" width="996" height="333" srcset="https://www.osradar.com/wp-content/uploads/2019/05/7-2.png 996w, https://www.osradar.com/wp-content/uploads/2019/05/7-2-300x100.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/7-2-768x257.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/7-2-696x233.png 696w" sizes="(max-width: 996px) 100vw, 996px" /><figcaption id="caption-attachment-12280" class="wp-caption-text">7.- Set up the web interface</figcaption></figure></p>
<p>After that, open the ArangoDB port. And restart the ArangoDB service.</p>
<pre>:~$ sudo firewall-cmd --add-port=8529/tcp --permanent
success
:~$ sudo firewall-cmd --reload
success
:~$ sudo systemctl restart arangodb3</pre>
<p>Next, open your web browser and go to your server using the port. For example, http://192.168.250.5:8529</p>
<p><figure id="attachment_12281" aria-describedby="caption-attachment-12281" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12281" src="https://www.osradar.com/wp-content/uploads/2019/05/8-1.png" alt="8.- Log in into the ArangoDB web tool" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/8-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/8-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12281" class="wp-caption-text">8.- Login into the ArangoDB web tool</figcaption></figure></p>
<p>As you can see, you can now log in. Use the root user and the password you defined before. Next, select the database you will use.</p>
<p><figure id="attachment_12282" aria-describedby="caption-attachment-12282" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12282" src="https://www.osradar.com/wp-content/uploads/2019/05/9-1.png" alt="9.- Database to use" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/9-1.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/9-1-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12282" class="wp-caption-text">9.- Database to use</figcaption></figure></p>
<p>Finally, you will see the main screen.</p>
<p><figure id="attachment_12283" aria-describedby="caption-attachment-12283" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-12283" src="https://www.osradar.com/wp-content/uploads/2019/05/10-2.png" alt="10.- ArangoDB web interface" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/05/10-2.png 1366w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/05/10-2-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-12283" class="wp-caption-text">10.- ArangoDB web interface</figcaption></figure></p>
<p>So, enjoy it.</p>
<h2>Conclusion</h2>
<p>OpenSUSE is a fairly stable system that is used for many purposes. Among them, there is the server one. So it is possible to install and configure such a new tool as ArangoDB without many problems. With this tool, you will have a powerful and very scalable database manager.</p>
<p>Now tell us, do you use ArangoDB? Do you use OpenSUSE 15.1? Let us know in the comments.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-arangodb-on-opensuse-15-1/">How to install ArangoDB on OpenSUSE 15.1?</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-arangodb-on-opensuse-15-1/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install ArangoDB on CentOS 7</title>
		<link>https://www.osradar.com/install-arangodb-on-centos-7/</link>
					<comments>https://www.osradar.com/install-arangodb-on-centos-7/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 14 Feb 2019 12:38:57 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[ArangoDB]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[NoSQL]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=10792</guid>

					<description><![CDATA[<p>The world spins and spins, that is to say, every time technologies and alternatives to the already existing ones arise. We live in the age of data and information, and that is why it is necessary to have a database manager ready for use. Especially if we take into account that the applications are becoming [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-arangodb-on-centos-7/">Install ArangoDB on CentOS 7</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The world spins and spins, that is to say, every time technologies and alternatives to the already existing ones arise. We live in the age of data and information, and that is why it is necessary to have a database manager ready for use. Especially if we take into account that the applications are becoming more and more demanding. With this in mind, is that effective alternatives to SQL databases arise. Some of these alternatives are widely used in mobile phones and others in cloud computing applications. So, today I will show you how to install ArangoDB on CentOS7.</p>
<p>We&#8217;ve already talked about ArangoDB on <a href="https://www.osradar.com/how-to-install-arangodb-on-debian-9/" rel="noopener">this site</a>. <a href="https://www.arangodb.com/" rel="noopener">ArangoDB</a> is a NoSQL type database handler, that is, it does not use the traditional data storage system as in <a href="https://www.osradar.com/install-mysql-8-0-on-fedora-29-28-centos-rhel-7-6-6-10/" rel="noopener">MySQL</a> or <a href="https://www.osradar.com/how-to-install-postgresql-11-centos-7/" rel="noopener">PostgreSQL</a>. ArangoDB stands out for being high performance, open source and easily scalable.</p>
<p>As you can see, we are in the presence of a database manager for a fairly defined segment of the market. On the other hand, ArangoDB has community and enterprise versions for business projects.</p>
<p>So, let us start to install ArangoDB on CentOS 7.</p>
<h2>1. Upgrade the system</h2>
<p>First, you need to update the system completely. With this, you will have a faster and more agile system to perform the tasks. In addition, you will have installed the latest security patches intended to solve problems in the packages.</p>
<pre class="">:~$ su
:~# yum update</pre>
<p><figure id="attachment_10794" aria-describedby="caption-attachment-10794" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10794" src="https://www.osradar.com/wp-content/uploads/2019/02/1-10.png" alt="1.- Upgrade the system to improve the security" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/1-10.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/1-10-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/1-10-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/1-10-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/1-10-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/1-10-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/1-10-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10794" class="wp-caption-text">1.- Upgrade the system to improve the security</figcaption></figure></p>
<p>As I said before, updating the system is necessary to improve the stability and security of the system.</p>
<h2>2. Install ArangoDB on CentOS 7</h2>
<p>The most efficient way to install ArangoDB on a CentOS 7 system is to do it through YUM. For this, it is vital to add the official repository of ArangoDB. So, let us do it.</p>
<pre class="">:~# cd /etc/yum.repos.d/
:~# curl -OL https://download.arangodb.com/arangodb34/RPM/arangodb.repo</pre>
<p><figure id="attachment_10795" aria-describedby="caption-attachment-10795" style="width: 872px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10795" src="https://www.osradar.com/wp-content/uploads/2019/02/2-10.png" alt="2.- Add the ArangoDB repository" width="872" height="178" srcset="https://www.osradar.com/wp-content/uploads/2019/02/2-10.png 872w, https://www.osradar.com/wp-content/uploads/2019/02/2-10-300x61.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/2-10-768x157.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/2-10-696x142.png 696w" sizes="(max-width: 872px) 100vw, 872px" /><figcaption id="caption-attachment-10795" class="wp-caption-text">2.- Add the ArangoDB repository</figcaption></figure></p>
<p>Then, you can start with the installation of ArangoDB using YUM.</p>
<pre class="">:~# yum install arangodb3</pre>
<p><figure id="attachment_10796" aria-describedby="caption-attachment-10796" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10796" src="https://www.osradar.com/wp-content/uploads/2019/02/3-10.png" alt="3.- Install ArangoDB on CentOS" width="1365" height="588" srcset="https://www.osradar.com/wp-content/uploads/2019/02/3-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/3-10-300x129.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/3-10-768x331.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/3-10-1024x441.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/3-10-696x300.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/3-10-1068x460.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/3-10-975x420.png 975w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-10796" class="wp-caption-text">3.- Install ArangoDB on CentOS</figcaption></figure></p>
<p>After that, you have to enable and start the ArangoDB service.</p>
<pre class="">:~# systemctl enable arangodb3
:~# systemctl start arangodb3</pre>
<p>It is a good idea to check the service status to find some issue.</p>
<pre class="">:~# systemctl status arangodb3</pre>
<p><figure id="attachment_10797" aria-describedby="caption-attachment-10797" style="width: 1364px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10797" src="https://www.osradar.com/wp-content/uploads/2019/02/4-8.png" alt="4.- Check the ArangoDB status" width="1364" height="614" srcset="https://www.osradar.com/wp-content/uploads/2019/02/4-8.png 1364w, https://www.osradar.com/wp-content/uploads/2019/02/4-8-300x135.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/4-8-768x346.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/4-8-1024x461.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/4-8-696x313.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/4-8-1068x481.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/4-8-933x420.png 933w" sizes="(max-width: 1364px) 100vw, 1364px" /><figcaption id="caption-attachment-10797" class="wp-caption-text">4.- Check the ArangoDB status</figcaption></figure></p>
<p>So, ArangoDB is correctly installed and it is running properly too.</p>
<p>Finally, you can access to the ArangoDB console</p>
<pre class="">:~# arangosh</pre>
<p><figure id="attachment_10798" aria-describedby="caption-attachment-10798" style="width: 1365px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10798" src="https://www.osradar.com/wp-content/uploads/2019/02/5-10.png" alt="5.- ArangoDB shell" width="1365" height="376" srcset="https://www.osradar.com/wp-content/uploads/2019/02/5-10.png 1365w, https://www.osradar.com/wp-content/uploads/2019/02/5-10-300x83.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/5-10-768x212.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/5-10-1024x282.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/5-10-696x192.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/5-10-1068x294.png 1068w" sizes="(max-width: 1365px) 100vw, 1365px" /><figcaption id="caption-attachment-10798" class="wp-caption-text">5.- ArangoDB shell</figcaption></figure></p>
<p>Now, you can start to use it.</p>
<h2>3. Using the web interface</h2>
<p>ArangoDB has a quite friendly and useful web interface, with it you will be able to make multiple configurations and operations in a very friendly way. To enable it is necessary to edit some configuration files.</p>
<pre class="">:~# nano /etc/arangodb3/arangod.conf</pre>
<p>And add the following:</p>
<pre class="">endpoint = tcp://SERVER_IP:8529</pre>
<p>In my case, it would be something like this.</p>
<p><figure id="attachment_10799" aria-describedby="caption-attachment-10799" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10799" src="https://www.osradar.com/wp-content/uploads/2019/02/6-9.png" alt="6.-Enabling the web interface" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2019/02/6-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/6-9-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/6-9-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/6-9-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/6-9-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/6-9-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/6-9-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10799" class="wp-caption-text">6.-Enabling the web interface</figcaption></figure></p>
<p>After that, do the same with the other configuration file.</p>
<pre class="">:~# nano /etc/arangodb3/arangosh.conf</pre>
<p><figure id="attachment_10800" aria-describedby="caption-attachment-10800" style="width: 894px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10800" src="https://www.osradar.com/wp-content/uploads/2019/02/7-9.png" alt="7.- Enabling the ArangoDB web interface" width="894" height="384" srcset="https://www.osradar.com/wp-content/uploads/2019/02/7-9.png 894w, https://www.osradar.com/wp-content/uploads/2019/02/7-9-300x129.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/7-9-768x330.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/7-9-696x299.png 696w" sizes="(max-width: 894px) 100vw, 894px" /><figcaption id="caption-attachment-10800" class="wp-caption-text">7.- Enabling the ArangoDB web interface</figcaption></figure></p>
<p>Then, restart the ArangoDB service.</p>
<pre class="">:~# systemctl restart arangodb3</pre>
<p>Next, set the firewall rules to allow the use of the port 8529 by ArangoDB.</p>
<pre class="">:~# firewall-cmd --add-port=8529/tcp --permanent
:~# firewall-cmd --reload</pre>
<p><figure id="attachment_10801" aria-describedby="caption-attachment-10801" style="width: 885px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10801" src="https://www.osradar.com/wp-content/uploads/2019/02/8-10.png" alt="8.- Add the port" width="885" height="164" srcset="https://www.osradar.com/wp-content/uploads/2019/02/8-10.png 885w, https://www.osradar.com/wp-content/uploads/2019/02/8-10-300x56.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/8-10-768x142.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/8-10-696x129.png 696w" sizes="(max-width: 885px) 100vw, 885px" /><figcaption id="caption-attachment-10801" class="wp-caption-text">8.- Add the port</figcaption></figure></p>
<p>After that, open the web browser and go to <code>http://SERVER_IP:8529</code> and you will see this:</p>
<p><figure id="attachment_10803" aria-describedby="caption-attachment-10803" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10803" src="https://www.osradar.com/wp-content/uploads/2019/02/10-9.png" alt="10.- ArangoDB web interface" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/10-9.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/10-9-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10803" class="wp-caption-text">10.- ArangoDB web interface</figcaption></figure></p>
<p>Now, we have to change the root password. Just type:</p>
<pre class="">:~# systemctl stop arangodb3
:~# ARANGODB_DEFAULT_ROOT_PASSWORD=your_password arango-secure-installation</pre>
<p><figure id="attachment_10804" aria-describedby="caption-attachment-10804" style="width: 1201px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10804" src="https://www.osradar.com/wp-content/uploads/2019/02/9-99.png" alt="9.- Change the root password" width="1201" height="203" srcset="https://www.osradar.com/wp-content/uploads/2019/02/9-99.png 1201w, https://www.osradar.com/wp-content/uploads/2019/02/9-99-300x51.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/9-99-768x130.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/9-99-1024x173.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/9-99-696x118.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/9-99-1068x181.png 1068w" sizes="(max-width: 1201px) 100vw, 1201px" /><figcaption id="caption-attachment-10804" class="wp-caption-text">9.- Change the root password</figcaption></figure></p>
<p>You can also run the command to change the root password:</p>
<pre class="">:~# arangodb_secure_installation</pre>
<p>Go back to the web browser and log in.</p>
<p><figure id="attachment_10805" aria-describedby="caption-attachment-10805" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10805" src="https://www.osradar.com/wp-content/uploads/2019/02/11-6.png" alt="11.- Log in" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/11-6.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/11-6-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10805" class="wp-caption-text">11.- Log in</figcaption></figure></p>
<p>Next, select the database.</p>
<p><figure id="attachment_10806" aria-describedby="caption-attachment-10806" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10806" src="https://www.osradar.com/wp-content/uploads/2019/02/12-5.png" alt="12.- Select the database" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/12-5.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/12-5-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10806" class="wp-caption-text">12.- Select the database</figcaption></figure></p>
<p>And you will see the main screen.</p>
<p><figure id="attachment_10807" aria-describedby="caption-attachment-10807" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-10807" src="https://www.osradar.com/wp-content/uploads/2019/02/13-5.png" alt="13. ArangoDB interface" width="1366" height="666" srcset="https://www.osradar.com/wp-content/uploads/2019/02/13-5.png 1366w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-300x146.png 300w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-768x374.png 768w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-1024x499.png 1024w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-533x261.png 533w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-696x339.png 696w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-1068x521.png 1068w, https://www.osradar.com/wp-content/uploads/2019/02/13-5-861x420.png 861w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-10807" class="wp-caption-text">13. ArangoDB interface</figcaption></figure></p>
<h2>Conclusion</h2>
<p>As you can notice, ArangoDB has a fairly simple installation process, taking into account its potential. For it, it has a repository for CentOS 7 that facilitates the process of installation and update.</p>
<p>Please share this post with your friends.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-arangodb-on-centos-7/">Install ArangoDB on CentOS 7</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-arangodb-on-centos-7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install ArangoDB on Debian 9?</title>
		<link>https://www.osradar.com/how-to-install-arangodb-on-debian-9/</link>
					<comments>https://www.osradar.com/how-to-install-arangodb-on-debian-9/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 07 Sep 2018 09:24:55 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ArangoDB]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[howto]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=5594</guid>

					<description><![CDATA[<p>We have already talked about Debian on several occasions on this site, it is well known that is a stable, robust and almost infallible system. For this reason, it has become a safe bet for Database administrators and Developers. Today, I will talk about a database manager that has been gaining a good reputation among [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-arangodb-on-debian-9/">How to install ArangoDB on Debian 9?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>We have already talked about <a href="https://www.debian.org/index.html">Debian</a> on<a href="https://www.osradar.com/how-to-install-lastest-version-of-netbeans-in-debian-9/"> several occasions</a> on this site, it is well known that is a stable, robust and almost infallible system. For this reason, it has become a safe bet for Database administrators and Developers. Today, I will talk about a database manager that has been gaining a good reputation among database administrators worldwide for being powerful and versatile, today I will talk about, How to install <strong>ArangoDB</strong> on Debian 9?</p>
<h2>What is ArangoDB?</h2>
<p>ArangoDB is a native multi-model, open-source database with flexible data models for documents, graphs, and key-values. Build high-performance applications using a convenient SQL-like query language or JavaScript extensions. Use ACID transactions if you require them. Scale horizontally and vertically with a few mouse clicks.</p>
<p>On the other hand, to offer graph functionalities, they make use of<strong> _from</strong> and <strong>_to</strong> attributes that allow connecting the information. This, in conjunction with edge indexes, allows the processing of graph queries with a great performance.</p>
<h2>Let&#8217;s install it on Debian 9</h2>
<p>In its website <a href="https://www.arangodb.com/download/">download section</a> ArangoDb has two versions: an Enterprise version dedicated to companies and large projects; and another community version that is ideal for small projects or to learn. In this tutorial, I will use the last one.</p>
<p>I&#8217;ll use the command line interface and a user with sudo privileges, so let&#8217;s get started. Open a terminal and run:</p>
<pre class="">:~$ sudo -i</pre>
<p>After entering your password, you will be the root user.</p>
<p><figure id="attachment_5596" aria-describedby="caption-attachment-5596" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5596" src="https://www.osradar.com/wp-content/uploads/2018/09/1-1.png" alt="1.- Getting root access" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/1-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/1-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/1-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/1-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/1-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/1-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/1-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5596" class="wp-caption-text">1.- Getting root access</figcaption></figure></p>
<p>Now you must add the repository so that ArangoDB packages can be installed via APT. Run:</p>
<pre class="">:~# curl -OL https://download.arangodb.com/arangodb33/Debian_9.0/Release.key</pre>
<p><em>Note: If you don&#8217;t have curl installed, you&#8217;ll need to do it with <code>apt install curl.</code></em></p>
<p><figure id="attachment_5597" aria-describedby="caption-attachment-5597" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5597" src="https://www.osradar.com/wp-content/uploads/2018/09/2-1.png" alt="2.- Installing curl and adding ArangoDB repository" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/2-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/2-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/2-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/2-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/2-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/2-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/2-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5597" class="wp-caption-text">2.- Installing curl and adding ArangoDB repository</figcaption></figure></p>
<p>After that, you must run:</p>
<pre class="">:~# apt-key add - &lt; Release.key</pre>
<p><figure id="attachment_5598" aria-describedby="caption-attachment-5598" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5598" src="https://www.osradar.com/wp-content/uploads/2018/09/3-1.png" alt="3.- Adding the repository" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/3-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/3-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/3-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/3-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/3-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/3-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/3-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5598" class="wp-caption-text">3.- Adding the repository</figcaption></figure></p>
<p>Next:</p>
<pre class="">:~# echo 'deb https://download.arangodb.com/arangodb33/Debian_9.0/ /' | sudo tee /etc/apt/sources.list.d/arangodb.list</pre>
<p><figure id="attachment_5599" aria-describedby="caption-attachment-5599" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5599" src="https://www.osradar.com/wp-content/uploads/2018/09/4-2.png" alt="4.- Adding the repository" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/4-2.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/4-2-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/4-2-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/4-2-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/4-2-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/4-2-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/4-2-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5599" class="wp-caption-text">4.- Adding the repository</figcaption></figure></p>
<p>Now, you must install a necessary package and then refresh the repositories.</p>
<pre class="">:~# apt install apt-transport-https
:~# apt update</pre>
<p><figure id="attachment_5600" aria-describedby="caption-attachment-5600" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5600" src="https://www.osradar.com/wp-content/uploads/2018/09/5-1.png" alt="5.- Refreshing the repositories cache" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/5-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/5-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/5-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/5-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/5-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/5-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/5-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5600" class="wp-caption-text">5.- Refreshing the repositories cache</figcaption></figure></p>
<p>And finally, proceed to install ArangoDB:</p>
<pre class="">:~# apt install arangodb3=3.3.14</pre>
<p>At the end of the installation, you must define the administrator password of the ArangoDB instance.</p>
<p><figure id="attachment_5601" aria-describedby="caption-attachment-5601" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5601" src="https://www.osradar.com/wp-content/uploads/2018/09/6-1.png" alt="6.- Setting a root paswword for ArangoDB" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/6-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/6-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/6-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/6-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/6-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/6-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/6-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5601" class="wp-caption-text">6.- Setting a root password for ArangoDB</figcaption></figure></p>
<p>After entering the password, you will have to repeat it and then you will be asked if you want the program to update automatically.</p>
<p><figure id="attachment_5602" aria-describedby="caption-attachment-5602" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5602" src="https://www.osradar.com/wp-content/uploads/2018/09/7-2.png" alt="7.- Installing ArangoDB" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/7-2.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/7-2-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/7-2-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/7-2-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/7-2-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/7-2-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/7-2-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5602" class="wp-caption-text">7.- Installing ArangoDB</figcaption></figure></p>
<p>On the next screen, you will be asked about the storage engine. Choose the auto option.</p>
<p><figure id="attachment_5603" aria-describedby="caption-attachment-5603" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5603" src="https://www.osradar.com/wp-content/uploads/2018/09/8-1.png" alt="8.- Choosing the engine for the instance" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/8-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/8-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/8-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/8-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/8-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/8-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/8-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5603" class="wp-caption-text">8.- Choosing the engine for the instance</figcaption></figure></p>
<p>Finally, it will ask you if you want to make a backup of your database every time the package is updated.</p>
<p><figure id="attachment_5604" aria-describedby="caption-attachment-5604" style="width: 1368px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5604" src="https://www.osradar.com/wp-content/uploads/2018/09/9-1.png" alt="9.- Backup your DB whe the package will be updated" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/9-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/9-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/9-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/9-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/9-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/9-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/9-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5604" class="wp-caption-text">9.- Backup your DB when the package will be updated</figcaption></figure></p>
<p>And finally, the installation will continue automatically.</p>
<h2>Verifying the installation</h2>
<p>At this point in the tutorial, the installation went smoothly, however, to make sure everything is working, run:</p>
<pre class="">:~# systemctl status arangodb3.service</pre>
<p><figure id="attachment_5606" aria-describedby="caption-attachment-5606" style="width: 1368px" class="wp-caption aligncenter"><img loading="lazy" class="size-full wp-image-5606" src="https://www.osradar.com/wp-content/uploads/2018/09/10-1.png" alt="10.- Showing service status" width="1368" height="710" srcset="https://www.osradar.com/wp-content/uploads/2018/09/10-1.png 1368w, https://www.osradar.com/wp-content/uploads/2018/09/10-1-300x156.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/10-1-768x399.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/10-1-1024x531.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/10-1-696x361.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/10-1-1068x554.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/10-1-809x420.png 809w" sizes="(max-width: 1368px) 100vw, 1368px" /><figcaption id="caption-attachment-5606" class="wp-caption-text">10.- Showing service status</figcaption></figure></p>
<p>You should get a message similar to the one shown in the image. The service is running and active.</p>
<p>The ArangoDB package comes with the following programs:</p>
<ul>
<li>arangod: The ArangoDB database daemon.</li>
<li>arangosh: The ArangoDB shell.</li>
<li>arangoimp: A bulk importer for the ArangoDB server.</li>
<li>arangodump: A tool to create backups of an ArangoDB database in JSON format.</li>
<li>arangorestore: A tool to load data of a backup back into an ArangoDB database.</li>
<li>arango-dfdb: A datafile debugger for ArangoDB</li>
<li>arangobench: A benchmark and test tool.</li>
</ul>
<p>In addition, there is also a beautiful web interface to manage our data in a friendly way. You can access from the browser, with the IP address of the server and port 8529.</p>
<p><figure id="attachment_5608" aria-describedby="caption-attachment-5608" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5608" src="https://www.osradar.com/wp-content/uploads/2018/09/11-1.png" alt="11.- Web interface" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/09/11-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/11-1-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/11-1-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/11-1-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/11-1-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/11-1-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/11-1-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-5608" class="wp-caption-text">11.- Web interface</figcaption></figure></p>
<p>Log in. The user is root and the password is the one you defined during the installation.</p>
<p>Next, you will select which database to access.</p>
<p><figure id="attachment_5609" aria-describedby="caption-attachment-5609" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-5609" src="https://www.osradar.com/wp-content/uploads/2018/09/12-1.png" alt="12.- Selecting the Database" width="1366" height="634" srcset="https://www.osradar.com/wp-content/uploads/2018/09/12-1.png 1366w, https://www.osradar.com/wp-content/uploads/2018/09/12-1-300x139.png 300w, https://www.osradar.com/wp-content/uploads/2018/09/12-1-768x356.png 768w, https://www.osradar.com/wp-content/uploads/2018/09/12-1-1024x475.png 1024w, https://www.osradar.com/wp-content/uploads/2018/09/12-1-696x323.png 696w, https://www.osradar.com/wp-content/uploads/2018/09/12-1-1068x496.png 1068w, https://www.osradar.com/wp-content/uploads/2018/09/12-1-905x420.png 905w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-5609" class="wp-caption-text">12.- Selecting the Database</figcaption></figure></p>
<p>Once you have logged in, you will see the main panel, with a lot of information about your instance.</p>
<p>And that&#8217;s it. Finally, I recommend you consult their <a href="https://docs.arangodb.com/3.3/Manual/GettingStarted/">official documentation</a>, where you can expand this and other knowledge.</p>
<p>ArangoDB is a program that is having a lot of recent success due to its easy handling and robustness, in addition to its flexibility which makes it ideal for complex tasks.</p>
<p>Tell us your experience in the comments.</p>
<p>Please share this article through social networks.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/how-to-install-arangodb-on-debian-9/">How to install ArangoDB on Debian 9?</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/how-to-install-arangodb-on-debian-9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
