目录
环境
- 腾讯云服务器 - linux - ubuntu - 20.04
- 更新系统
- $ apt update && apt upgrade -y
- 更新系统
- 安装geth
- 查看geth版本命令:
- $ geth version
- linux / ubuntu:
- $ add-apt-repository -y ppa:ethereum/ethereum
- $ apt update
- $ apt install ethereum -y
- geth版本:1.10.15-stable
- win :
- 点击下载
- 在链接中点击win版本下载安装即可。
- 查看geth版本命令:
- go (本文暂不需要用到)
- 版本:1.17.5 linux/amd64
- 查看go版本命令:$go version
注:
- 前置"$"的命令表示是在控制台里的命令
- 前置"/>"的命令表示在geth内的命令
私链搭建
- 创建一个geth数据的存放目录
- $ mkdir rungeth
- 进入这个目录
- $ cd rungeth
- 用geth命令创建一个账户
- 在当前目录下创建文件夹data
- $ sudo mkdir data
- 创建账户
- $ sudo geth --datadir ./data account new
- 按照控制台的提示输入两次要给这个账户设置的密码
- 在当前目录下创建文件夹data
- 准备创世块文件 genesis.json 和 启动脚本文件 rungeth.sh
- genesis.json
- $ sudo vi genesis.json
- 然后把下面的内容复制进去
{
"config":{
"chainId":7,
"homesteadBlock":0,
"eip150Block":0,
"eip155Block":0,
"eip158Block":0,
"byzantiumBlock":0,
"constantinopleBlock":0,
"petersburgBlock":0,
"istanbulBlock":0,
"ethhash":{}
},
"alloc":{},
"coinbase":"0x0000000000000000000000000000000000000000",
"difficulty":"0x2",
"extraData":"",
"gasLimit":"0xffffffff",
"nonce":"0x0000000000000042",
"mixhash":"0x0000000000000000000000000000000000000000000000000000000000000000", "parentHash":"0x0000000000000000000000000000000000000000000000000000000000000000",
"timestamp":"0x00"
}
- rungeth.sh
- $ sudo vi rungeth.sh
- 然后把下面的内容复制进去
geth --datadir ./data --networkid 7 --http --http.addr 0.0.0.0 --http.vhosts "*" --http.api "admin,debug,web3,eth,txpool,personal,ethash,miner,net" --http.corsdomain "*" --snapshot --mine --miner.threads 1 --allow-insecure-unlock console 2> 1.log
- 以上两个文件的中的参数说明见
- 初始化
- $ sudo geth --datadir ./data init ./genesis.json
- 执行成功则不会有Fatal报错,例如我的执行成功后只有一个警告
INFO [01-15|10:34:55.186] Maximum peer count ETH=50 LES=0 total=50
INFO [01-15|10:34:55.186] Smartcard socket not found, disabling err="stat /run/pcscd/pcscd.comm: no such file or directory"
WARN [01-15|10:34:55.188] Sanitizing cache to Go's GC limits provided=1024 updated=611
INFO [01-15|10:34:55.188] Set global gas cap cap=50,000,000
INFO [01-15|10:34:55.188] Allocated cache and file handles database=/home/ubuntu/eth/rungeth/data/geth/chaindata cache=16.00MiB handles=16
INFO [01-15|10:34:55.213] Writing custom genesis block
INFO [01-15|10:34:55.217] Persisted trie from memory database nodes=1 size=149.00B time="45.27µs" gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
INFO [01-15|10:34:55.218] Successfully wrote genesis state database=chaindata hash=6ef04e..bd9488
INFO [01-15|10:34:55.218] Allocated cache and file handles database=/home/ubuntu/eth/rungeth/data/geth/lightchaindata cache=16.00MiB handles=16
INFO [01-15|10:34:55.231] Writing custom genesis block
INFO [01-15|10:34:55.232] Persisted trie from memory database nodes=1 size=149.00B time="40.785µs" gcnodes=0 gcsize=0.00B gctime=0s livenodes=1 livesize=0.00B
INFO [01-15|10:34:55.232] Successfully wrote genesis state database=lightchaindata hash=6ef04e..bd9488
- 启动
- $ sudo ./rungeth.sh
- 启动后可以查看日志文件1.log, 或是控制台一直死循环输出"look for..."则说明创世块文件有问题,得重新搞一个。
- 如果创世块文件内的参数和启动命令的参数有一些不兼容也会导致启动失败出现fatal错误提示。
- 初次启动后得等一段时间才会开始挖矿,挖矿后才能部署合约,执行等等的操作。如果账户余额在增加就说明已经在挖矿了。
使用remix远程连接私链并部署合约
- 注意云服务器需要防火墙放行8545端口(远程连接以太坊端口)
- 打开remix网页版(打不开请挂梯子)
- 部署合约
- 选择环境
- 选择web3提供器
- 然后在网址栏输入私链地址http//127.0.0.1:8545
- 私链在本地则输入为127.0.0.1,如果在服务器上,请输入服务器公网ip
- 后面的端口8545是geth的默认连接端口,如果没有修改过则为8545,有的话请看运行geth时的命令参数 --port
- 然后即可想使用测试网络时一样的编译部署即可。
- 选择环境
操作命令
- 列出所有账户
- />eth.accounts
- 解锁账户
- 如果要使用此账户转账或执行合约,则需要先给他解锁
- 语法1:
- />personal.unlockAccount(要解锁的账户, "密码", 解锁时间)
- 示例:
- />personal.unlockAccount(eth.accounts[0], ’123456‘, 100000)
- 语法2:
- />personal.unlockAccount(eth.accounts[0])
- 这时控制台会询问你的密码,这样解锁显然好处是密码不会外显在控制台,但不能指定解锁时间,默认解锁时间为300
- 查看余额
- />eth.getBalance(eth.accounts[0])
- 开始挖矿
- />miner.start()
- geth启动时,会自动启动挖矿,这时执行miner.start()则会返回null。
- 停止挖矿
- />miner.stop()
- 转账
- />eth.sendTransaction({from:user1, to:user2, value:web3.toWei(1, "ether")})
- 设置账户别名,方便命令输入
- />user1 = eth.accounts[0]
- 创建账户
- />personal.newAccount('密码')
- 设置挖矿账户
- />miner.setEtherbase(eth.accounts[0])
- 查看挖矿账户
- />eth.coinbase
- 查看区块高度
- />eth.blockNumber
- geth远程连接私链
- geth attach http://ip:8545
- ip即为私链所在的服务器ip,如果是本地则为localhost
- 本地:http://localhost:8545
- 远程连接(举例ip为:100.10.1.0):http://100.10.1.0:8545
常见问题
- Remix连接不了服务器的geth?
- 检查服务器的防火墙是否放行8545端口。
- 检查浏览器的地址栏Remix是不是用了https,如果是,改成http。
- 运行时错误提示:rpc未定义?
- 目前geth要用http参数代替rpc参数,故请使用前面的rungeth.sh去执行
- Returned error: authentication needed: password or unlock
- 需要先解锁账户
- 解锁命令见"操作命令"中的"解锁账户"
- Status not available at the moment
- 部署合约后,合约的status是上面的信息
- 这是由于创世块文件中没有添加拜占庭和君士坦丁堡硬分叉语句导致的
- 在创世块文件中添加下面两句,或使用"搭建私链"中的genesis.json文件
"byzantiumBlock":0,
"constantinopleBlock":0,
- Returned error: invalid opcode: SHR
- 合约执行时提示错误
- 请查看部署合约时,是否有上一个错误"Status not available at the moment",有则解决上个错误即可。
- Fatal: Failed to write genesis block: database already contains an incompatible genesis block
- 这是因为已经存在数据库了,不要重复去初始化创世块
- 解决方法
- 清空数据库
- $geth removedb
- 然后就可以执行初始化创世块了
- 如果还不行:
- 则进入我们一开始创建的data目录
- 删除里面的geth目录:# rm -rf geth
online doctor prescription canada canada drugs no prescription online pharmacy with prescription
order prescription from canada prescription drugs online canada buy prescription drugs without a prescription
discount ed meds: ed meds by mail – pills for ed online
Услуга по сносу старых зданий и утилизации отходов в Москве и Московской области. Мы предоставляем услуги по сносу старых сооружений и удалению мусора на территории Москвы и Московской области. Услуга снос дачи выполняется квалифицированными специалистами в течение 24 часов после оформления заказа. Перед началом работ наш эксперт бесплатно посещает объект для определения объёма работ и предоставления консультаций. Чтобы получить дополнительную информацию и рассчитать стоимость услуг, свяжитесь с нами по телефону или оставьте заявку на сайте компании.
https://edpill.top/# discount ed meds
Wow, amazing weblog structure! How long have you been running a blog for?
you made blogging glance easy. The total glance of your web site is great, as well as the content material!
You can see similar here najlepszy sklep
http://medicationnoprescription.pro/# prescription from canada
where can i get amoxicillin: generic amoxil 500 mg – where can you get amoxicillin
https://azithromycina.pro/# zithromax 500
http://clomida.pro/# buy clomid
amoxicillin no prescipion: amoxicillin discount coupon – amoxicillin 500 coupon
http://prednisonea.store/# order prednisone with mastercard debit
can you buy clomid without a prescription where to get clomid without dr prescription how to buy generic clomid
cheap prednisone online prednisone 20mg prices non prescription prednisone 20mg
amoxicillin 775 mg: amoxacillian without a percription – amoxicillin in india
https://prednisonea.store/# prednisone 20
amoxicillin 500mg price canada: amoxicillin tablets in india – azithromycin amoxicillin
https://azithromycina.pro/# how much is zithromax 250 mg
amoxicillin 500mg capsules: amoxicillin order online – cost of amoxicillin
can you get generic clomid tablets can you buy clomid without insurance how can i get clomid price
ivermectin oral 0 8: ivermectin new zealand – ivermectin 1 cream 45gm
ivermectin price: ivermectin over the counter uk – buy ivermectin pills
ivermectin online buy oral ivermectin stromectol nz
http://amoxicillina.top/# where can i buy amoxicillin online
Engaging via response forms is an articulate demonstration of modern business interaction, combining the finest of tact and technology. This strategy offers companies a direct line to their consumers, enabling them to understand the subtleties of user engagement, garner beneficial feedback, and, most, prove that they are continually attending. Rather than sifting through the cluttered scene of emails and advertising messages, feedback forms supply a streamlined space, clearing the path for genuine dialogue and more committed conversations.
Moreover, communicating to comment forms is a testament to a brand’s devotion to continuous improvement. Rather than of functioning in a isolation, enterprises get an invaluable perspective into their clients’ minds, unveiling chances for growth, enhancement, and forging tighter ties. As customer needs evolve, this bilateral communication channel ensures that businesses stay not only relevant but intimately connected to their audience’s continually shifting tastes and concerns. In the big plan of things, it’s not only about gathering feedback; it’s about nurturing trust and strengthening relationships that endure the challenge of time.
Telgrm: @exrumer
https://XRumer.art
Skype: XRumer.pro
Услуга по сносу старых домов и вывозу мусора в Москве и Московской области. Мы предоставляем услуги по сносу старых зданий и удалению мусора на территории Москвы и Подмосковья. Услуга http://demontazh-doma-msk5.ru выполняется опытными специалистами в течение 24 часов после оформления заказа. Перед началом работ наш эксперт бесплатно приезжает на объект для оценки объёма работ и консультации. Чтобы получить дополнительную информацию и рассчитать стоимость услуг, свяжитесь с нами по телефону или оставьте заявку на сайте компании.
Добрый день всем!
Выберите и купите диплом ВУЗа по самым низким ценам с доставкой в регионы России без предоплаты!
http://saksx-attestats.ru/
Наши услуги позволят вам купить диплом ВУЗа с доставкой по России без предоплаты и с полной уверенностью в его подлинности – просто и удобно!
Приобретите документы об образовании всех ВУЗов России с гарантированной подлинностью и доставкой по РФ без предварительной оплаты – просто, надежно, выгодно!
http://prednisonea.store/# prednisone 2.5 mg
order generic clomid tablets: can i order cheap clomid without a prescription – where to buy generic clomid no prescription
stromectol 3 mg tablets price ivermectin 0.1 uk ivermectin 90 mg
zithromax price canada how to buy zithromax online zithromax capsules price
http://azithromycina.pro/# zithromax 1000 mg online
http://womangu.ru
https://amoxicillina.top/# canadian pharmacy amoxicillin
cost for ivermectin 3mg: stromectol order online – ivermectin 3 mg
https://azithromycina.pro/# zithromax capsules 250mg
where to buy cheap clomid tablets: can you get cheap clomid price – buying generic clomid without a prescription
http://clomida.pro/# cost generic clomid no prescription
non prescription prednisone 20mg prednisone brand name india prednisone online paypal
amoxicillin generic brand generic amoxicillin cost buying amoxicillin in mexico
can you get generic clomid without insurance: can i get cheap clomid no prescription – how to buy clomid no prescription
zithromax buy online: zithromax prescription – how much is zithromax 250 mg
zithromax capsules 250mg: zithromax without prescription – zithromax online pharmacy canada
where can i get generic clomid without prescription where can i get clomid now how to buy generic clomid no prescription
10mg prednisone daily: prednisone 40 mg daily – 10 mg prednisone tablets
http://clomida.pro/# can i get clomid pills
doxycycline prices: order doxycycline online – buy doxycycline hyclate 100mg without a rx
cytotec online: Misoprostol 200 mg buy online – Cytotec 200mcg price
buy cytotec online fast delivery order cytotec online buy cytotec over the counter
buy ciprofloxacin over the counter cipro ciprofloxacin ciprofloxacin 500mg buy online