From 7eb76628be3871855a743daa2f2ce5cd81872a00 Mon Sep 17 00:00:00 2001 From: "william.liangf" Date: Thu, 14 Jun 2012 14:47:46 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@2043 1a56cb94-b969-4eaa-88fa-be21384802f2 --- README | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README b/README index 34797ad2e..4b9efed78 100644 --- a/README +++ b/README @@ -122,3 +122,30 @@ For more, please refer to: - edit: dubbo.registry.adddress=zookeeper://127.0.0.1:2181 cd ../bin ./restart.sh + +9. Install the redis registry: + + cd ~ + wget http://redis.googlecode.com/files/redis-2.4.8.tar.gz + tar xzf redis-2.4.8.tar.gz + cd redis-2.4.8 + make + nohup ./src/redis-server redis.conf & + + cd ~/dubbo/dubbo-demo-provider/conf + vi dubbo.properties + - edit: dubbo.registry.adddress=redis://127.0.0.1:6379 + cd ../bin + ./restart.sh + + cd ~/dubbo/dubbo-demo-consumer/conf + vi dubbo.properties + - edit: dubbo.registry.adddress=redis://127.0.0.1:6379 + cd ../bin + ./restart.sh + + cd ~/dubbo/dubbo-simple-monitor/conf + vi dubbo.properties + - edit: dubbo.registry.adddress=redis://127.0.0.1:6379 + cd ../bin + ./restart.sh -- GitLab