Skip to content

Instantly share code, notes, and snippets.

@resultakak
Forked from alexander-young/steps.md
Created February 23, 2021 20:46
Show Gist options
  • Save resultakak/669644075e4e9f3ac5627e7e2982ed04 to your computer and use it in GitHub Desktop.
Save resultakak/669644075e4e9f3ac5627e7e2982ed04 to your computer and use it in GitHub Desktop.
Install Redis for WordPress

Installing Redis

  • sudo apt update
  • sudo apt install redis-server
  • sudo nano /etc/redis/redis.conf
  • supervised systemd
  • maxmemory 128M
  • maxmemory-policy allkeys-lfu
  • sudo systemctl restart redis.service
  • sudo systemctl status redis
  • redis-cli and ping

Installing PHP Redis

  • wget https://github.com/nicolasff/phpredis/archive/master.zip
  • apt install unzip
  • sudo apt install php-dev
  • cd phpredis-master
  • phpize
  • ./configure
  • make
  • sudo make install
  • sudo echo "extension=redis.so" > /etc/php/7.x/apache2/conf.d/redis.ini create a redis.ini
  • sudo service redis-server restart
  • apache2ctl restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment