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 :: clean manjaro 
Shell :: install ngrok ubuntu 20.04 
Shell :: flask restful install 
Shell :: updated gitignore not working 
Shell :: install yarn global 
Shell :: command to update vlc in ubuntu 
Shell :: how to update portainer 
Shell :: Installing graphviz in Linux 
Shell :: debian install killall 
Shell :: how to install pipenv on mac 
Shell :: setremotelogin: Turning Remote Login on or off requires Full Disk Access privileges. 
Shell :: find folder linux 
Shell :: Amazon Linux 2 AMI install docker 
Shell :: git graph 
Shell :: is not digitally signed. you cannot run this script on the current system 
Shell :: conda install librosa 
Shell :: rm is not recognized as internal command 
Shell :: Allow and Block Ports Using Port in ubuntu 
Shell :: error cannot refresh snap-store snap snap-store has running apps (ubuntu-software) 
Shell :: install firefox homebrew 
Shell :: install google chrome ubuntu 
Shell :: install firebase angular 8 
Shell :: robo 3t download for ubuntu 18.04 
Shell :: clean memory cache on linux 
Shell :: The file will have its original line endings in your working directory 
Shell :: scikit-learn install 
Shell :: run git command in different folder 
Shell :: uninstall lightdm 
Shell :: how to change git remote url 
Shell :: nginx E: Sub-process /usr/bin/dpkg returned an error code (1) 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =