Some Common Issues

Hosting an Evernode involves setting up and maintaining a linux machine which runs the evernode software and participates in network consensus. By participating, you help maintain the network's decentralized infrastructure while potentially earning rewards. Detailed tutorials and community support are available to assist node operators.
Forum rules
Welcome to the Hosting An Evernode Forum! To ensure a positive and productive environment, please adhere to the following guidelines.

Treat all members with respect and courtesy. Post content relevant to hosting an Evernode, avoiding spamming, self-promotion, or irrelevant topics. Aim to provide clear, informative, and constructive contributions. Discussions of illegal illicit activities are strictly prohibited. Protect your privacy and that of others by not sharing personal information publicly and reporting any suspicious activity to moderators. Failure to adhere to these rules may result in warnings, post deletions, or account suspension. Let’s work together to build a supportive and knowledgeable Evernode community!
Post Reply
wroomwroom
Posts: 48
Joined: Wed Jul 31, 2024 5:59 pm

Some Common Issues

Post by wroomwroom »

When you install your server and fail, you get a log with the details. Read it and try to figure out what's wrong!

Here's some quick fixes to some common issues:

"Please use the same email or update the letsencrypt email with certbot."
Quick fix: Let's just remove the lets encrypt folder and let the installer recreate it (sudo rm -rf /etc/letsencrypt)
Mac_Donald
Posts: 1
Joined: Mon Jul 27, 2026 1:07 pm

Re: Some Common Issues

Post by Mac_Donald »

Alternative Fix – Let's Encrypt Email Error

Instead of deleting the entire /etc/letsencrypt folder, try updating the existing Certbot registration.

1. Check the existing Certbot account:

sudo certbot accounts

2. Check the configured email:

sudo grep -R "email" /etc/letsencrypt/accounts/

3. Update the Certbot email:

sudo certbot register --update-registration --email [your@email.com](mailto:your@email.com)

Replace [your@email.com](mailto:your@email.com) with the email address you want to use.

4. Run the installer again.

Avoid using:

sudo rm -rf /etc/letsencrypt

This can delete existing certificates, private keys, renewal settings, and account information.

Updating the existing Certbot registration is a safer option because it keeps your existing Let's Encrypt configuration intact.
Post Reply