Reputation: 1943
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
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
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
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