강의

멘토링

커뮤니티

Inflearn Community Q&A

qkrnl03183887's profile image
qkrnl03183887

asked

Creating a Blockchain Ethereum Real Estate Dapp - Basic

Building a Private Node with Geth I (Genesis Block, Account Creation)

HTTP access 문제

Written on

·

348

0

./nodestart.cmd를 powershell에서 사용하면 http endpoint를 여는 도중에 Fatal: Account unlock with HTTP access is forbidden!와 같은 문제가 발생합니다.

blockchaindappEthereum

Answer 2

0

./nodestart.cmd --allow-insecure-unlock

똑같이 입력해도 똑같은 오류가 발생합니다ㅠ

0

SEJONG IT EDU님의 프로필 이미지
SEJONG IT EDU
Instructor

https://github.com/ethereum/go-ethereum/issues/19422

geth에서 보안상 디폴트로 계정 언락하는걸 해제시켰네요. 테스트환경에서는 상관없는 문제이기 때문에 --allow-insecure-unlock 추가시키면 된다고 합니다.

 

./nodestart.cmd --allow-insecure-unlock

qkrnl03183887's profile image
qkrnl03183887

asked

Ask a question