Go-Ethereum

如果 Parity 使用 –geth 設置 geth 模式,則無法訪問 UI

  • July 14, 2017

--geth用來將 Parity 設置為 geth 模式。因為我想用personal.unlockAccount永久解鎖一個賬戶。(如果不設置geth模式,它不能永久解鎖……這提到的。)

但是當--geth我開始使用 Parity 時。我無法訪問我的 Parity UI…在設置之前,我可以使用localhost:8180. localhost:8180但是在我設置之後,我127.0.0.1:8180什至無法訪問它10.4.20.69:8180……我怎樣才能在geth模式下找回我的webUI?非常感謝。

這是我的配置:

[parity]
chain = "HyperAlbum-chain.json"
base_path = "node0"
[network]
port = 30300
[rpc]
port = 8540
apis = ["web3", "eth", "net", "personal", "parity", "parity_set", "traces", "rpc", "parity_accounts"]
interface = "10.4.20.69"
[ui]
port = 8180
[dapps]
port = 8080
[account]
password = ["node.pwds"]
[mining]
engine_signer = "0x00765Cc7584E3Ed11aE092b74d10AE2cE875aEAb"
reseal_on_txs = "none"
usd_per_tx = "0"

非常感謝。:)

嘗試

parity --geth --force-ui

即使在 geth 兼容模式下執行,這也應該為您啟用使用者界面。

引用自:https://ethereum.stackexchange.com/questions/20787