Marktkapitalisierung: $3.6909T 1.060%
Volumen (24h): $359.8104B 47.530%
  • Marktkapitalisierung: $3.6909T 1.060%
  • Volumen (24h): $359.8104B 47.530%
  • Angst- und Gier-Index:
  • Marktkapitalisierung: $3.6909T 1.060%
Cryptos
Themen
Cryptospedia
Nachricht
CryptosTopics
Videos
Top News
Cryptos
Themen
Cryptospedia
Nachricht
CryptosTopics
Videos
bitcoin
bitcoin

$108064.256573 USD

2.62%

ethereum
ethereum

$3416.451426 USD

4.04%

xrp
xrp

$3.182014 USD

-0.61%

tether
tether

$0.998286 USD

-0.06%

solana
solana

$258.371362 USD

-5.60%

bnb
bnb

$703.182066 USD

-0.59%

dogecoin
dogecoin

$0.378176 USD

-4.38%

usd-coin
usd-coin

$1.000010 USD

-0.01%

cardano
cardano

$1.062758 USD

-0.47%

tron
tron

$0.239600 USD

-1.00%

chainlink
chainlink

$25.901897 USD

10.66%

avalanche
avalanche

$38.079479 USD

-2.52%

sui
sui

$4.720134 USD

-3.00%

stellar
stellar

$0.462876 USD

-3.68%

hedera
hedera

$0.354732 USD

0.20%

Nachrichtenartikel zu Kryptowährungen

Es gibt keinen Hinweis darauf, dass die Signatur dem Eigentümer gehört.

Jul 21, 2024 at 03:05 pm

Es gibt keinen Hinweis darauf, dass die Signatur dem Eigentümer gehört.

      There is no indication that the signature belongs to the owner.

Es gibt keinen Hinweis darauf, dass die Unterschrift dem Eigentümer gehört.

 

 

 

 

Primary key fingerprint: 15E6 6D94 1F69 7E28 F493 81F4 2641 6DC3 F306 74B0

Fingerabdruck des Primärschlüssels: 15E6 6D94 1F69 7E28 F493 81F4 2641 6DC3 F306 74B0

“`

„`

If the checksum is verified, extract the files and move them into (/usr/local/bin) directory.

Wenn die Prüfsumme überprüft wurde, extrahieren Sie die Dateien und verschieben Sie sie in das Verzeichnis (/usr/local/bin).

Then clean up the working directory.

Bereinigen Sie anschließend das Arbeitsverzeichnis.

“`

„`

> tar xvf lighthouse-v5.2.1-x86_64-unknown-linux-gnu.tar.gz

> tar xvf lighthouse-v5.2.1-x86_64-unknown-linux-gnu.tar.gz

> sudo cp lighthouse /usr/local/bin

> sudo cp lighthouse /usr/local/bin

> rm -r lighthouse lighthouse-v5.2.1-x86_64-unknown-linux-gnu.tar.gz.asc lighthouse-v5.2.1-x86_64-unknown-linux-gnu.tar.gz

> rm -r Leuchtturm Leuchtturm-v5.2.1-x86_64-unknown-linux-gnu.tar.gz.asc Leuchtturm-v5.2.1-x86_64-unknown-linux-gnu.tar.gz

“`

„`

Create an account called `lighthouse` without server access for lighthouse(the consensus layer software) to run as a background service. This type of user account will not have root access so it restricts potential attackers to only the lighthouse service in the unlikely event that attackers manage to infiltrate via a compromised client update.

Erstellen Sie ein Konto mit dem Namen „Lighthouse“ ohne Serverzugriff, damit Lighthouse (die Konsensschicht-Software) als Hintergrunddienst ausgeführt werden kann. Diese Art von Benutzerkonto verfügt nicht über Root-Zugriff und beschränkt daher potenzielle Angreifer nur auf den Lighthouse-Dienst für den unwahrscheinlichen Fall, dass es Angreifern gelingt, über ein kompromittiertes Client-Update einzudringen.

> sudo useradd –no-create-home –shell /bin/false lighthouse

> sudo useradd –no-create-home –shell /bin/false Leuchtturm

 

 

 

 

Create a directory for lighthouse (the consensus layer software) to store the blockchain data of the consensus layer. Then set the owner of this directory to lighthouse (the user account) so that this user can read and write to the directory.

Erstellen Sie ein Verzeichnis für Lighthouse (die Konsensschicht-Software), um die Blockchain-Daten der Konsensschicht zu speichern. Setzen Sie dann den Besitzer dieses Verzeichnisses auf Lighthouse (das Benutzerkonto), damit dieser Benutzer in dem Verzeichnis lesen und schreiben kann.

> sudo mkdir -p /var/lib/lighthouse

> sudo mkdir -p /var/lib/lighthouse

> sudo chown -R lighthouse:lighthouse /var/lib/lighthouse

> sudo chown -R Leuchtturm:Leuchtturm /var/lib/Leuchtturm

 

 

 

 

Create a systemd configuration file for the lighthouse service to run in the background.

Erstellen Sie eine systemd-Konfigurationsdatei für die Ausführung des Lighthouse-Dienstes im Hintergrund.

 

 

 

 

> sudo vi /etc/systemd/system/lighthouse.service

> sudo vi /etc/systemd/system/lighthouse.service

 

 

 

 

Paste the configuration parameters below into the file:

Fügen Sie die folgenden Konfigurationsparameter in die Datei ein:

 

 

 

 

“`

„`

[Unit]

[Einheit]

Description=Lighthouse Consensus Client (Holesky)

Beschreibung=Lighthouse Consensus Client (Holesky)

After=network.target

After=network.target

Wants=network.target

Wants=network.target

 

 

 

 

[Service]

[Service]

User=lighthouse

Benutzer=Leuchtturm

Group=lighthouse

Gruppe=Leuchtturm

Type=simple

Typ=einfach

Restart=always

Neustart=immer

RestartSec=5

RestartSec=5

ExecStart=/usr/local/bin/lighthouse \

ExecStart=/usr/local/bin/lighthouse \

  –chain holesky \

–chain holesky \

  –datadir=/var/lib/lighthouse \

–datadir=/var/lib/lighthouse \

  –log.file.directory=/var/lib/lighthouse/logs \

–log.file.directory=/var/lib/lighthouse/logs \

  –authrpc.jwtsecret=/var/lib/jwtsecret/jwt.hex \

–authrpc.jwtsecret=/var/lib/jwtsecret/jwt.hex \

  –full \

-voll \

  –port 30303 \

–Port 30303 \

  –http \

–http \

  –http.api eth,web3,net,txpool,debug,trace \

–http.api eth,web3,net,txpool,debug,trace \

  –http.addr \

–http.addr \

  –http.port 8547 \

–http.port 8547 \

  –ws \

–ws \

  –ws.addr \

–ws.addr \

  –ws.port 8548 \

–ws.port 8548 \

  –metrics 127.0.0.1:6060

–Metriken 127.0.0.1:6060

  

  

[Install]

[Installieren]

WantedBy=default.target

WantedBy=default.target

“`

„`

Once you’re done, save with ESC → ENTER → :wq → ENTER

Wenn Sie fertig sind, speichern Sie mit ESC → ENTER → :wq → ENTER

Understand and review your configuration summary and amend if needed.

Verstehen und überprüfen Sie Ihre Konfigurationszusammenfassung und ändern Sie sie bei Bedarf.

lighthouse configuration summary:

Zusammenfassung der Leuchtturmkonfiguration:

 

 

 

 

Start lighthouse

Leuchtturm starten

Reload the systemd daemon to register the changes made, start lighthouse and check its status to make sure its running.

Laden Sie den Systemd-Daemon neu, um die vorgenommenen Änderungen zu registrieren, starten Sie Lighthouse und überprüfen Sie seinen Status, um sicherzustellen, dass er ausgeführt wird.

> sudo systemctl daemon-reload

> sudo systemctl daemon-reload

> sudo systemctl start lighthouse.service

> sudo systemctl starte lighthouse.service

> sudo systemctl status lighthouse.service

> sudo systemctl status lighthouse.service

Expected output: The output should say lighthouse is “active (running)”. Press CTRL+C to exit and lighthouse will continue to run. It should take around 6 hours for lighthouse to sync on the Holesky testnet.

Erwartete Ausgabe: Die Ausgabe sollte lauten, dass Lighthouse „aktiv (läuft)“ ist. Drücken Sie zum Beenden STRG+C und Lighthouse läuft weiter. Es sollte etwa 6 Stunden dauern, bis Lighthouse mit dem Holesky-Testnetz synchronisiert ist.

 

 

 

 

Use the following command to check the logs of lighthouse’s syncing process. Watch out for any warnings or errors.

Verwenden Sie den folgenden Befehl, um die Protokolle des Synchronisierungsprozesses von Lighthouse zu überprüfen. Achten Sie auf Warnungen oder Fehler.

> sudo apt install ccze -y

> sudo apt install ccze -y

> sudo journalctl -fu lighthouse -o cat | ccze -A

> sudo journalctl -fu lighthouse -o cat | ccze-A

 

 

 

 

Expected output

Erwartete Ausgabe

Press CTRL+C to exit.

Drücken Sie STRG+C, um den Vorgang zu beenden.

See here(https://lighthouse-book.sigmaprime.io/advanced-topics/logs.html) for more details on how to interpret and understand lighthouse journalctl logs

Weitere Informationen zum Interpretieren und Verstehen von Lighthouse-Journalctl-Protokollen finden Sie hier (https://lighthouse-book.sigmaprime.io/advanced-topics/logs.html).

 

 

 

 

If the lighthouse service is running smoothly, we can now enable it to fire up automatically when rebooting our node.

Wenn der Lighthouse-Dienst reibungslos läuft, können wir ihn jetzt so aktivieren, dass er beim Neustart unseres Knotens automatisch gestartet wird.

> sudo systemctl enable lighthouse.service

> sudo systemctl lighthouse.service aktivieren

 

 

 

 

Expected output:

Erwartete Ausgabe:

> Created symlink /etc/systemd/system/default.target.wants/lighthouse.service → /etc/systemd/system/lighthouse.service.

> Symlink /etc/systemd/system/default.target.wants/lighthouse.service erstellt → /etc/systemd/system/lighthouse.service.

 

 

 

 

Haftungsausschluss:info@kdj.com

The information provided is not trading advice. kdj.com does not assume any responsibility for any investments made based on the information provided in this article. Cryptocurrencies are highly volatile and it is highly recommended that you invest with caution after thorough research!

If you believe that the content used on this website infringes your copyright, please contact us immediately (info@kdj.com) and we will delete it promptly.

Weitere Artikel veröffentlicht am Jan 21, 2025