geth客户端:unlock with HTTP access is forbidden错误分析

  • 异常
    使用geth客户端,当执行personal.unlockAccount()或在程序中调用personal_unlockAccount接口时,会出现:account unlock with HTTP access is forbidden异常。
    在这里插入图片描述
  • 异常分析
    出于安全考虑,默认禁止了HTTP通道解锁账户,相关issue:https://github.com/ethereum/go-ethereum/pull/17037
  • 解决方法
    如果已经了解打开此功能的风险,可通启动命令中添加参数:
--allow-insecure-unlock

举例:

geth --datadir data0 --rpc --rpcaddr 127.0.0.1 --rpcport 8545 --allow-insecure-unlock console

geth客户端:unlock with HTTP access is forbidden错误分析_第1张图片

参考:http://www.choupangxia.com/2019/08/08/以太坊geth新版本error:account-unlock-with-http-access-is-forbidden/

你可能感兴趣的:(区块链,自己的问题自己找答案)