BitShares Forum

Main => Technical Support => Topic started by: bitcoinerS on September 16, 2014, 06:25:01 am

Title: RPC server was not started, configuration error
Post by: bitcoinerS on September 16, 2014, 06:25:01 am
Having difficulties starting up rpc server on new machine..

Code: [Select]
>>> rpc_start_server 9989
rpc_server_port: 9989
RPC server was not started, configuration error

my config has:
Code: [Select]
"rpc": {
    "enable": true,
    "rpc_user": "test",
    "rpc_password": "test",
    "rpc_endpoint": "127.0.0.1:0",
    "httpd_endpoint": "127.0.0.1:0",
    "htdocs": "/home/bitcoiners/bitsharesx/programs/web_wallet/generated"
  }

Code: [Select]
>>> about
{
  "blockchain_name": "BitShares X",
  "blockchain_description": "Decentralized Autonomous Exchange",
  "client_version": "v0.4.15-a",
Title: Re: RPC server was not started, configuration error
Post by: xeroc on September 16, 2014, 07:24:22 am
configure a port in the config
Code: [Select]
    "httpd_endpoint": "127.0.0.1:XXXXX",
make sure to take the httpd_endpoint ..

start your client with parameter "--server"
then you should be good to go
Title: Re: RPC server was not started, configuration error
Post by: bitcoinerS on September 16, 2014, 08:21:11 am
that worked, thanks.