Updated Run Yacy in a VPS (markdown)

tangdou1 2019-04-04 11:10:58 +08:00
parent ac2571daf5
commit a169430df9

@ -1,11 +1,11 @@
Take Debian for example.
1. enter the vps as root user using putty
1. run `apt update`
2. run `apt install default-jre` (install java)
3. run `wget https://github.com/luccioman/yacy_search_server/releases/download/Release_1.921.9828-dev/yacy_v1.921_20181121_9828.tar.gz` (the latest release version of Yacy)
4. run `tar xvpfz yacy_v1.921_20181121_9828.tar.gz`
5. run `cd yacy`
6. run `./startYACY.sh`
7. run `cd bin`
8. run `./passwd.sh newpassword`
9. open the `http://your vps's ip:8090` in your local browser, and log in as `admin` with `newpassword`.
2. run `apt install default-jre openjdk-8-jdk ant` (install java and ant)
3. run `wget https://github.com/yacy/yacy_search_server/archive/master.zip` (the latest version of Yacy)
4. run `unzip master.zip`
5. run `cd yacy_search_server-master`
6. run `ant clean all` (compile Yacy)
7. run `./startYACY.sh`
8. run `cd bin`
9. run `./passwd.sh newpassword`
10. open the `http://your vps's ip:8090` in your local browser, and log in as `admin` with `newpassword`.