How to install redis server and phpredis extension?

How to install redis server and phpredis extension?

yum install lsphp70-pecl-redis lsphp71-pecl-redis	lsphp72-pecl-redis -y
yum install redis -y
systemctl start redis
systemctl enable redis
``` `yum install lsphp70-pecl-redis lsphp71-pecl-redis lsphp72-pecl-redis -y yum install redis -y systemctl start redis systemctl enable redis ` ```

Thx