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.

122 lines
2.5 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. ### Ubuntu
  57. Install LevelDB with snappy (optionally):
  58. ```
  59. sudo apt-get update
  60. sudo apt install build-essential
  61. sudo apt-get install libsnappy-dev
  62. wget https://github.com/google/leveldb/archive/v1.20.tar.gz && \
  63. tar -zxvf v1.20.tar.gz && \
  64. cd leveldb-1.20/ && \
  65. make && \
  66. sudo cp -r out-static/lib* out-shared/lib* /usr/local/lib/ && \
  67. cd include/ && \
  68. sudo cp -r leveldb /usr/local/include/ && \
  69. sudo ldconfig && \
  70. rm -f v1.20.tar.gz
  71. ```
  72. Set database backend to cleveldb:
  73. ```
  74. # config/config.toml
  75. db_backend = "cleveldb"
  76. ```
  77. To install Tendermint, run
  78. ```
  79. CGO_LDFLAGS="-lsnappy" make install_c
  80. ```
  81. or run
  82. ```
  83. CGO_LDFLAGS="-lsnappy" make build_c
  84. ```
  85. to put the binary in `./build`.