-
Notifications
You must be signed in to change notification settings - Fork 26.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@703 1a56cb94-b969-4eaa-88fa-be21384802f2
- Loading branch information
william.liangf
committed
Dec 22, 2011
1 parent
116bd37
commit 1d9f165
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
0. Install maven: | ||
|
||
wget http://www.apache.org/dist//maven/binaries/apache-maven-2.2.1-bin.tar.gz | ||
tar zxvf apache-maven-2.2.1-bin.tar.gz | ||
export PATH=$PATH:apache-maven-2.2.1/bin | ||
|
||
1. Build the dubbo binary package: | ||
|
||
mvn clean install -Dmaven.test.skip | ||
cp dubbo/target/dubbo-2.0.10.jar . | ||
|
||
2. Import the dubbo source code to eclipse project: | ||
|
||
mvn eclipse:eclipse | ||
Eclipse -> Menu -> Import -> Exsiting Projects to Workspace -> Browse -> Finish | ||
|
||
3. Install the demo provider: | ||
|
||
cd dubbo-demo-provider/target | ||
tar zxvf dubbo-demo-provider-2.0.10-assembly.tar.gz | ||
cd dubbo-demo-provider-2.0.10/bin | ||
./start.sh | ||
|
||
4. Install the demo consumer: | ||
|
||
cd dubbo-demo-consumer/target | ||
tar zxvf dubbo-demo-consumer-2.0.10-assembly.tar.gz | ||
cd dubbo-demo-consumer-2.0.10/bin | ||
./start.sh | ||
tail -f ../logs/stdout.log | ||
|
||
5. Install the simple monitor: | ||
|
||
cd dubbo-simple-monitor/target | ||
tar zxvf dubbo-simple-monitor-2.0.10-assembly.tar.gz | ||
cd dubbo-simple-monitor-2.0.10/bin | ||
./start.sh | ||
http://127.0.0.1:8080 | ||
|
||
6. Install the simple registry: | ||
|
||
cd dubbo-simple-registry/target | ||
tar zxvf dubbo-simple-registry-2.0.10-assembly.tar.gz | ||
cd dubbo-simple-registry-2.0.10/bin | ||
./start.sh |