Problem with epoch check_config

Hey all, when I run epoch check_config epoch.yaml I’m getting this error:
Configuration error ({yamerl_exception,
[{yamerl_parsing_error,error,
“Failed to open file “epoch.yaml”: no such file or directory”,
undefined,undefined,file_open_failure,undefined,
[{error,enoent}]}]})

Content of epoch.yaml

sync:
port: 3115
external_port: 3015

keys:
dir: keys
password: “secret”

http:
external:
port: 3013
internal:
port: 3113

websocket:
internal:
port: 3114
channel:
port: 3014

mining:
autostart: true

chain:
persist: true
db_path: ./my_db

Any ideas?

Hey @lcsavov,

We are forwarding this to our dev team right away.
They’ll get back to you as soon as possible.

Regards,
The AE Team

If you read carefully the output you’ll notice Failed to open file “epoch.yaml”: no such file or directory, the error message is pretty self explanatory.

That means that the epoch.yaml is really missing from your current working directory (because you refer to it relatively).

Try ls -la to see the directory contents.

2 Likes