要启动Redis服务器,请按照以下步骤操作:
-
确保已经安装了Redis。如果没有安装,请访问Redis官方网站(https://redis.io/download)下载并安装适合您操作系统的版本。
-
打开命令行界面(在Windows上是CMD或PowerShell,在macOS和Linux上是Terminal)。
-
导航到Redis安装目录下的
bin
文件夹。例如,在Windows上,如果Redis安装在C:\Program Files\Redis
,则输入cd C:\Program Files\Redis\bin
。 -
在命令行中输入以下命令以启动Redis服务器:
- 对于Windows系统:
redis-server.exe
- 对于macOS和Linux系统:
./redis-server
如果一切正常,您将看到类似于以下的输出信息,表示Redis服务器已成功启动:
[16330] 12 Jul 2021 10:00:00.123 # oO0OoO0O0O0O Redis is starting oO0OoO0O0O0O [16330] 12 Jul 2021 10:00:00.123 # Redis version 6.2.6, commit 5f05d1b2d5b24ad17b2e8c8eaf8df02748e61d8 [16330] 12 Jul 2021 10:00:00.123 # Found in /usr/local/etc/redis.conf [16330] 12 Jul 2021 10:00:00.123 # Starting with maxmemory 0 bytes and 10000 maxmemory slots [16330] 12 Jul 2021 10:00:00.123 # Using a default maxmemory of 64mb [16330] 12 Jul 2021 10:00:00.123 # Server initialized [16330] 12 Jul 2021 10:00:00.123 # Reading configuration file /usr/local/etc/redis.conf [16330] 12 Jul 2021 10:00:00.123 # Starting server...
- 对于Windows系统:
现在,Redis服务器已经启动并运行在默认端口(6379)上。您可以使用Redis客户端(如redis-cli
)连接到服务器并开始执行命令。