Linux -bash: redis-server: command not found
2022/5/2 2:12:39
本文主要是介绍Linux -bash: redis-server: command not found,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Linux
安装完redis单独用命令:
redis-server
报错:
-bash: redis-server: command not found
说明redis-server不是全局命令,那么假如到全局即可:
假如我的redis安装路径是:/home/prod/redis/redis-4.0.8
ln -s /home/prod/redis/redis-4.0.8/src/redis-server /usr/bin/redis-server
将
redis-server
放到/usr/bin下即可(相当于创建一个全局快捷方式)
这篇关于Linux -bash: redis-server: command not found的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-07Redis高并发入门详解
- 2024-12-07Redis缓存入门:新手必读指南
- 2024-12-07Redis缓存入门:新手必读教程
- 2024-12-07Redis入门:新手必备的简单教程
- 2024-12-07Redis入门:新手必读的简单教程
- 2024-12-06Redis入门教程:从安装到基本操作
- 2024-12-06Redis缓存入门教程:轻松掌握缓存技巧
- 2024-12-04Redis入门:简单教程详解
- 2024-11-29Redis开发入门教程:从零开始学习Redis
- 2024-11-27Redis入门指南:快速掌握Redis基础操作