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

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 :: git Removing Files Only From the Staging Area 
Shell :: linux process 
Shell :: get large files 
Shell :: add group linux 
Shell :: how to convert back to JSON in powershell 
Shell :: start scipt at startup ubuntu 
Shell :: ssh server windows 11 
Shell :: python convert excel to html table 
Shell :: ubuntu install latest vim 
Shell :: linux add alias 
Shell :: git clone to existing folder 
Shell :: bashrc sleep command 
Shell :: what is my ip 
Shell :: remove a directory in ubuntu 
Shell :: how to install swift on ubuntu 
Shell :: install bully kali 
Shell :: install composer phar 
Shell :: how to run a command async in ubuntu 
Shell :: mac shell prompt 
Shell :: isntall gnache cli 
Shell :: rename branch in git 
Shell :: copy code from one repo to another git 
Shell :: verify hash windows 10 
Shell :: android studio git 
Shell :: curl get url https 
Shell :: git find commit id by message 
Shell :: online linux c compiler 
Shell :: aternative wget comand 
Shell :: how to pull remote changes to local branch 
Shell :: oh-my-posh autosuggestions 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =