Back to Recipes
pelmered
2 recipes shared
Install ElasticSearch 7.x
Updated Elasticsearch version to 7.x and fix Java dependency
echo ">> Installing Elastic GPG Key"
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo ">> Install apt-transport-https"
6 years ago
pelmered
Install PHP Redis extension for PHP 8.0
sudo apt-get install libzstd-dev
yes | sudo pecl install redis
sudo echo "extension=redis.so" > /etc/php/8.0/mods-available/redis.ini
sudo ln -sf /etc/php/8.0/mods-available/redis.ini /etc/php/8.0/fpm/conf.d/20-redis.ini
4 years ago
pelmered