Issue with Redis install “cc: Command not found”

前端 未结 7 2217
眼角桃花
眼角桃花 2021-02-03 22:14

Installing redis is really easy. I have done it on several VM. But on one instance, I am facing the following problem.

[root@server redis-2.4.2]# make
cd src &am         


        
7条回答
  •  我在风中等你
    2021-02-03 22:50

    You can try somthing like this :

    $ wget http://redis.googlecode.com/files/redis-2.4.2.tar.gz
    $ tar xzf redis-2.4.2.tar.gz
    $ cd redis-2.4.2
    $ make
    

    More info : ( http://redis.io/download )

提交回复
热议问题