因為個人要測試消息隊列功能,需要用到 Redis,因此就在記幾個 Mac 上搭建了一下環境 ...
其實 Mac 安裝 Redis 還是很簡單,以下為個人搭建配置。
註意:文章中的“*”代表任意版本號
安裝 Redis 服務
- 安裝
brew install redis
- 使用
# 啟動
redis-server
啟動成功界面
另開一個命令視窗,可以使用 Redis 命令在 redis 服務上執行操作。
redis-cli
安裝 php-redis 擴展
下文中的配置目錄可根據記幾個的 PHP 配置自行修改。
進入php官網下載redis擴展下載擴展
- 解壓安裝包
tar -xzvf redis-4.*.tgz
- 通過phpize生成編譯configure配置文件
cd redis-4.*/
phpize
./configure --with-php-config=/usr/local/opt/php\@7.*/bin/php-config
- 編譯
make
make install
- 配置 php.ini文件
/usr/local/etc/php/7.2/php.ini
extension="redis.so"
- 測試 訪問 localhost/redis.php
<?php
//實例化redis對象
$redis = new redis();
//連接redis,第一個參數是redis服務的IP127.0.0.1是自己的,6379是埠號
$redis->connect('127.0.0.1', 6379);
echo "Server is running: " . $redis->ping();
輸出:Server is running: +PONG