user1400915
user1400915

Reputation: 1943

Redis in Ubuntu

I am running Redis on Ubuntu. When I run the Redis commands, I get a error saying "redis server not found in "redis/src". I have copy pasted the redis-server.exe files on to the Ubuntu machine. What could be the reason for this?

Upvotes: 0

Views: 1731

Answers (3)

abhaygarg12493
abhaygarg12493

Reputation: 1605

.exe runs in windows. You need to install redis as per ubuntu server.

Download stable release of redis from here. Just follow these simple steps to install redis.

Upvotes: 0

user1907849
user1907849

Reputation: 980

Copy-pasting doesn't work. Just follow this link http://redis.io/download and install the Redis. Later just change the redis-2.8.9 folder name to redis. Should be simple and should work in your case.

Upvotes: 2

sir4ju1
sir4ju1

Reputation: 543

Why dont you just run apt command

apt-get install redis-server

for details you can visit this page:

https://library.linode.com/databases/redis/ubuntu-12.04-precise-pangolin

Upvotes: 1

Related Questions