Fedora Install PHP Redis extended notes _php Tips

Source: Internet
Author: User
Tags install php openssl php redis redis install redis

One, install the compilation tool

Copy Code code as follows:

Yum install wget make gcc gcc-c++ zlib-devel OpenSSL openssl-devel pcre-devel kernel keyutils Patch Perl

Second, install Redis Php-redis
Copy Code code as follows:

# yum Install Redis Php-redis

This will be a successful installation.

Start Redis

Copy Code code as follows:

# sudo redis-server/etc/redis.conf

1, download Php-redis Zip installation package

Https://github.com/nicolasff/phpredis

2, find the PHP installation path

Command Whereis phpize and Whereis php-config find phpize and php-config paths

3. Generate Configure

Copy Code code as follows:
#/usr/bin/phpize

4. Compile and install

Copy Code code as follows:

#./configure--with-php-config=/usr/bin/php-config
# Make && make install

5, add the installed redis.so module

Copy Code code as follows:

# Vim/etc/php.ini

6, restart Apache or Nginx

7, testing

Copy Code code as follows:

$redis = new Redis ();
$redis->connect (' 127.0.0.1 ', 6379);
$redis->set (' Test ', ' Hello world! ');
echo $redis->get (' Test ');

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.