https://github.com/you21979/ansible-electrumx
https://github.com/you21979/ansible-electrumx
ansible bitcoin electrumx monacoin
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/you21979/ansible-electrumx
- Owner: you21979
- Created: 2017-09-01T01:53:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-01T07:28:12.000Z (over 6 years ago)
- Last Synced: 2025-04-02T09:51:18.051Z (about 1 year ago)
- Topics: ansible, bitcoin, electrumx, monacoin
- Language: Shell
- Size: 65.4 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ansible-electrumx
[](https://travis-ci.org/you21979/ansible-electrumx)
automation build electrumx setup for centos7
## coind setup
select coin one
* bitcoin
* bitcoin
* bitcoincash
* litecoin
* dogecoin
* monacoin
* dashcoin
### remote install
```
echo "[all]" > ./hosts
echo "192.168.0.1" >> ./hosts
ansible-playbook -i ./hosts ./coind/bitcoin.yml -u centos --private-key=privatekeyfile
```
### local install
```
yum install -y epel-release
yum install -y git ansible
echo "[all]" > ./hosts
echo "localhost" >> ./hosts
ansible-playbook --connection=local -i ./hosts ./coind/bitcoin.yml
```
## electrumx setup
### remote install
```
echo "[all]" > ./hosts
echo "192.168.0.1" >> ./hosts
ansible-playbook -i ./hosts ./electrumx/bitcoin.yml -u centos --private-key=privatekeyfile
```
### local install
```
yum install -y epel-release
yum install -y git ansible
echo "[all]" > ./hosts
echo "localhost" >> ./hosts
ansible-playbook --connection=local -i ./hosts ./electrumx/bitcoin.yml
```