Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install redis ubuntu

sudo apt update
sudo apt install redis-server

sudo systemctl restart redis.service

sudo systemctl status redis

redis-cli
Comment

redis ubuntu install

# This explanation shows how to install the latest redis version on ubuntu

# add redis repository - as ubuntu normal repository holds an old version of redis
sudo add-apt-repository ppa:redislabs/redis
sudo apt-get update

# install redis
sudo apt-get install redis-server

# set redis to auto-strat on boot
sudo systemctl enable redis-server
sudo systemctl daemon-reload
Comment

setup redis ubuntu

1. Install pre-requisities

  `sudo apt-get install build-essential tcl`

2. Install Redis

  ```
  cd /tmp
  curl -O http://download.redis.io/redis-stable.tar.gz
  tar xzvf redis-stable.tar.gz
  cd redis-stable
  make
  make test
  sudo make install
  ```
  
3. Configure Redis

  ```
  sudo mkdir /etc/redis
  sudo cp /tmp/redis-stable/redis.conf /etc/redis
  sudo nano /etc/redis/redis.conf
  ```
  
  In the file, change the `supervised` directive`s value to `systemd`.
  
  ```
  ...
  supervised systemd
  ...
  ```
  
  Next, specify the working directory for Redis. This  is the directory that Redis will use to dump persistent data. We can use `/var/lib/redis`
  
  ```
  ...
  dir /var/lib/redis
  ...
  ```
  
  Save and close the file.
  
4. Configure systemd to start Redis on boot

  `sudo nano /etc/systemd/system/redis.service`
  
  Copy the contents of [this gist](https://gist.github.com/hackedunit/14690b6174708d3e83593ce1cdfb4ed8) to the file, save and close.

5. Create Redis user, group and directories

  ```
  sudo adduser --system --group --no-create-home redis
  sudo mkdir /var/lib/redis
  sudo chown redis:redis /var/lib/redis
  sudo chmod 770 /var/lib/redis
  ```

6. Start the Redis service and set Redis to start on boot

  ```
  sudo systemctl start redis
  sudo systemctl enable redis
  ```
 
Comment

redis install ubuntu

$ wget https://download.redis.io/releases/redis-6.2.3.tar.gz
$ tar xzf redis-6.2.3.tar.gz
$ cd redis-6.2.3
$ make
Comment

redis ubuntu install

wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
Comment

PREVIOUS NEXT
Code Example
Shell :: change user terminal 
Shell :: python code to find os version of Webserver 
Shell :: pacman corrupted package 
Shell :: zsh mac vi 
Shell :: move all files in subdirectories to current directory linux 
Shell :: run index.js 
Shell :: email client for linux 
Shell :: download sublime merge in linux 
Shell :: powershell string contains 
Shell :: how to push to git hub 
Shell :: how to install velero on ubuntu 
Shell :: remove ciso umbrella 
Shell :: change shell script to executable 
Shell :: install git on windows 10 
Shell :: how to autostart containers in ubuntu 
Shell :: crontab is not running my shell script 
Shell :: change user permission linux 
Shell :: check all background process in linux 
Shell :: count lines in bash script 
Shell :: how to install bwa in ubuntu 
Shell :: copy data from one branch to another in git 
Shell :: asdf use local nodejs 
Shell :: how to undo local commit git 
Shell :: get from match to end of file 
Shell :: convert audio to mp3 with ffmpeg 
Shell :: stash pop single file 
Shell :: windows terminal 
Shell :: kubernetes command kubectl 
Shell :: install adminlte in laravel 
Shell :: run MongoDB manually as a background process macos 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =