Obtaining the Source Code
- Obtain the Dubbo source code.
- Create a /home/Dubbo directory.
mkdir /home/Dubbo
- Download the source code from the local browser.
- Upload the source package to the /home/Dubbo directory on the server.
If the server is connected to the Internet, run the wget command to download the source code. In the following commands, x.x.x indicates the Dubbo version.1 2
cd /home/Dubbo wget https://github.com/apache/dubbo/archive/dubbo-x.x.x.tar.gz --no-check-certificate
- Create a /home/Dubbo directory.
- Decompress the source package.
1tar xvf dubbo-x.x.x.tar.gz
Parent topic: Dubbo Porting Guide