Replies: 3 comments
-
Uploading fd-0.0.0_10084_firedancer_2025_02_11_03_42_30_747602757_GMT_08_2.log… |
Beta Was this translation helpful? Give feedback.
0 replies
-
fd-0.0.0_10084_firedancer_2025_02_11_03_42_30_747602757_GMT_08_2.log |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Catchup happens fine when script runs directly. Using Systemd file gives kill signal
`user = "firedancer"
[gossip]
entrypoints = [
"entrypoint.testnet.solana.com:8001",
"entrypoint2.testnet.solana.com:8001",
"entrypoint3.testnet.solana.com:8001",
]
[consensus]
identity_path = "/home/firedancer/keypairs/validator-keypair.json"
vote_account_path = "/home/firedancer/keypairs/vote-account-keypair.json"
[rpc]
port = 8899
full_api = true
private = true
[reporting]
solana_metrics_config = "host=https://metrics.solana.com:8086,db=tds,u=testnet_write,p=c4fa841aa918bf8274e3e2a44d77568d9861b3ea"
[log]
# Absolute file path of where to place the log file. It will be
# appended to, or created if it does not already exist. The
# shortened ephemeral log will always be written to stderr.
#
# Two substitutions will be performed on this string. If "{user}"
# is present it will be replaced with the user running Firedancer,
# as above, and "{name}" will be replaced with the name of the
`
`[Unit]
Description=Firedancer
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=5
User=firedancer
LimitNOFILE=1000000
LogRateLimitIntervalSec=0
ExecStartPre=sudo /home/firedancer/firedancer/firedancer-0.305.20111/build/native/gcc/bin/fdctl configure init all --config /home/firedancer/firedancer/config.toml
ExecStart=sudo /home/firedancer/firedancer/firedancer-0.305.20111/build/native/gcc/bin/fdctl run --config /home/firedancer/firedancer/config.toml
Logging settings
StandardOutput=append:/home/firedancer/logs/fd/firedancer.log
StandardError=append:/home/firedancer/logs/fd/firedancer.log
TimeoutSec=infinity
[Install]
WantedBy=multi-user.target
~
`
Beta Was this translation helpful? Give feedback.
All reactions