You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

116 lines
2.6 KiB

6 years ago
  1. # Install Tendermint
  2. The fastest and easiest way to install the `tendermint` binary
  3. is to run [this script](https://github.com/tendermint/tendermint/blob/develop/scripts/install/install_tendermint_ubuntu.sh) on
  4. a fresh Ubuntu instance,
  5. or [this script](https://github.com/tendermint/tendermint/blob/develop/scripts/install/install_tendermint_bsd.sh)
  6. on a fresh FreeBSD instance. Read the comments / instructions carefully (i.e., reset your terminal after running the script,
  7. make sure you are okay with the network connections being made).
  8. ## From Binary
  9. To download pre-built binaries, see the [releases page](https://github.com/tendermint/tendermint/releases).
  10. ## From Source
  11. You'll need `go` [installed](https://golang.org/doc/install) and the required
  12. [environment variables set](https://github.com/tendermint/tendermint/wiki/Setting-GOPATH)
  13. ### Get Source Code
  14. ```
  15. mkdir -p $GOPATH/src/github.com/tendermint
  16. cd $GOPATH/src/github.com/tendermint
  17. git clone https://github.com/tendermint/tendermint.git
  18. cd tendermint
  19. ```
  20. ### Get Tools & Dependencies
  21. ```
  22. make get_tools
  23. make get_vendor_deps
  24. ```
  25. ### Compile
  26. ```
  27. make install
  28. ```
  29. to put the binary in `$GOPATH/bin` or use:
  30. ```
  31. make build
  32. ```
  33. to put the binary in `./build`.
  34. The latest `tendermint version` is now installed.
  35. ## Run
  36. To start a one-node blockchain with a simple in-process application:
  37. ```
  38. tendermint init
  39. tendermint node --proxy_app=kvstore
  40. ```
  41. ## Reinstall
  42. If you already have Tendermint installed, and you make updates, simply
  43. ```
  44. cd $GOPATH/src/github.com/tendermint/tendermint
  45. make install
  46. ```
  47. To upgrade, run
  48. ```
  49. cd $GOPATH/src/github.com/tendermint/tendermint
  50. git pull origin master
  51. make get_vendor_deps
  52. make install
  53. ```
  54. ## Compile with CLevelDB support
  55. Install [LevelDB](https://github.com/google/leveldb) (minimum version is 1.7).
  56. Build Tendermint with C libraries: `make build_c`.
  57. ### Ubuntu
  58. Install LevelDB with snappy:
  59. ```
  60. sudo apt-get update
  61. sudo apt install build-essential
  62. sudo apt-get install libsnappy-dev
  63. wget https://github.com/google/leveldb/archive/v1.20.tar.gz && \
  64. tar -zxvf v1.20.tar.gz && \
  65. cd leveldb-1.20/ && \
  66. make && \
  67. cp -r out-static/lib* out-shared/lib* /usr/local/lib/ && \
  68. cd include/ && \
  69. cp -r leveldb /usr/local/include/ && \
  70. sudo ldconfig && \
  71. rm -f v1.20.tar.gz
  72. ```
  73. Set database backend to cleveldb:
  74. ```
  75. # config/config.toml
  76. db_backend = "cleveldb"
  77. ```
  78. To build Tendermint, run
  79. ```
  80. CGO_LDFLAGS="-lsnappy" go build -ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse --short=8 HEAD`" -tags "tendermint gcc" -o build/tendermint ./cmd/tendermint/
  81. ```