操作系统环境: CentOS 7.6.1810, 基本操作/数据目录, 手动创建, 没有该目录( mkdir/ data) 。
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
yum update -y && yum install docker-ce
systemctl daemon-reload && systemctl restart docker && systemctl enable docker
docker --version
docker pull julianliu/eth-explorer:latest
docker images
docker run -d -p 8000:8000 --name eth-explorer julianliu/eth-explorer
docker ps
在启动成功后打开相应服务器的8 000个端口访问权,即可看到接口,但接口上没有区块数据,因此需要修改容器中的页面配置
docker exec -it eth-explorer sh
/ app/app/app/app/app/app.js 作为容器的内部路径,将应用程序中的 GETH_HOSTNAME 修改为自己的节点ip 地址
angular.min.js:https://mituxiaogaoyang.club/eth-source/angular.min.js
jquery.min.js:https://mituxiaogaoyang.club/eth-source/jquery.min.js
animate.min.css:https://mituxiaogaoyang.club/eth-source/animate.min.css
mainController.js:https://mituxiaogaoyang.club/eth-source/mainController.js
index.html:https://mituxiaogaoyang.club/eth-source/index.html
docker cp /root/nginx/html/eth-source/angular.min.js eth-explorer:/app/app/scripts
docker cp /root/nginx/html/eth-source/jquery.min.js eth-explorer:/app/app/scripts
docker cp /root/nginx/html/eth-source/animate.min.css eth-explorer:/app/app/styles
docker cp /root/nginx/html/eth-source/mainController.js eth-explorer:/app/app/scripts/controllers
docker cp /root/nginx/html/eth-source/index.html eth-explorer:/app/app
geth --datadir "https://www.cnblogs.com/mituxiaogaoyang/articles/data" --rpc --rpcaddr=0.0.0.0 --rpcport 8545 --rpccorsdomain "*" --rpcapi "eth,net,web3,personal,admin,txpool,debug,miner" --nodiscover --maxpeers 30 --networkid 1981 --port 30303 --allow-insecure-unlock --mine --miner.etherbase "0xFfD4a30C08d9f16F095f6315e14bd034F7d04fb0" console
通过 0ffd4a30c08d9f16f095f6315e14bd034f7d04fb0向 0x1ef3c8b97c47b47b09b09d01be4a0c633d9f08f4cd1 地址转让2ETH,下面是块链浏览器的影响。
交易细节 :
注册有任何问题请添加 微信:MVIP619 拉你进入群
打开微信扫一扫
添加客服
进入交流群
发表评论