Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: preg_match(): Unknown modifier '-' in /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php on line 783

Warning: Cannot modify header information - headers already sent by (output started at /home/akl1986/public_html/support/wp-content/plugins/redux-framework/redux-core/inc/extensions/metaboxes/class-redux-extension-metaboxes.php:783) in /home/akl1986/public_html/support/wp-includes/feed-rss2.php on line 8
How-To Install Redis from Source – AKLWEB HOST LLC Support Center https://support.aklwebhost.com Fri, 27 Dec 2019 07:41:27 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.4 How-To Install Redis from Source https://support.aklwebhost.com/knowledgebase/how-to-install-redis-from-source/ https://support.aklwebhost.com/knowledgebase/how-to-install-redis-from-source/#respond Fri, 27 Dec 2019 07:41:27 +0000 https://support.aklwebhost.com/?post_type=manual_kb&p=2949 Introduction

Redis is often referred to as a data structures server. This means that Redis provides access to mutable data structures via a set of commands, which are sent by using a client/server model with TCP sockets. Different processes can query and modify the same data structures in a shared way. (from the official git repo)

Installing Redis

First, your Linux server must be equipped with git. To install git, use the following command.

For Ubuntu:

apt-get update; apt-get install -y git

For CentOS:

yum update; yum install git

After the installation of the git, download the source code of Redis.

git clone http://github.com/antirez/redis/

Before compiling the source code, you should have the build-essential package installed.

For Ubuntu:

apt-get install build-essential

For CentOS:

yum groupinstall "Development Tools"

Once this package is installed, make and install Redis.

sudo make; sudo make install

Using Redis

Congrats, you now have the Redis server installed! You can type redis-cli to query/insert data or type redis-benchmark to test out the performance of your VPS.

]]>
https://support.aklwebhost.com/knowledgebase/how-to-install-redis-from-source/feed/ 0