Marlon's Wiki

it's better when it's simpler

User Tools

Site Tools


start:system:monero:node

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
start:system:monero:node [2025/01/04 09:11] marlonivostart:system:monero:node [2025/01/04 09:14] (current) marlonivo
Line 1: Line 1:
-====== Node ====== +====== Monero Node ====== 
-Ein Gerät im Internet, das die Bitcoin-Software ausführtmit einer vollständigen oder gekürzten Kopie der Bitcoin-Blockchain, das aktiv das Bitcoin-Netzwerk unterstütztEin Node, der nicht auf deinem lokalen Computer ausgeführt wird, wird als Remote-Node bezeichnet. Remote-Nodes können privat seinwenn sie nur für den persönlichen Gebrauch bestimmt sindoder offenwenn sie für andere Personen zugänglich sind.+A device on the Internet running the Monero softwarewith a full copy of the Monero blockchainactively assisting the Monero networkA node that is not running on your local machine is called remote node. Remote nodes can be privateif they are for personal use onlyor openif they are accessible by other people.
  
 Systemanforderungen:  Systemanforderungen: 
     * 2 VCPUs     * 2 VCPUs
     * 4 GB RAM     * 4 GB RAM
-    * 7-550 GB SSD (abhängig von Pruned oder Full Node)+    * 200 GB SSD
  
-===== Ein neuer Bitcoin-Nutzer =====+===== A new Monero User =====
 ---- ----
-Zuerst einen neuen Bitcoin-Benutzer erstellen:+First we wanna create a new monero user
 <code> <code>
-useradd bitcoin +useradd monero 
-passwd bitcoin             <- Passwort für den Bitcoin-Benutzer setzen+passwd monero             <- give monero user a password
 </code> </code>
  
-Mit dem Bitcoin-Benutzer anmelden und notwendige Software installieren:+Login with monero and install necessary Software 
 <code> <code>
-pacman -S ufw wget+pacman -S ufw wget 
 </code> </code>
  
-Port 8333 öffnen:+Open port 18081
 <code> <code>
-sudo ufw allow 8333+sudo ufw allow 18081
 </code> </code>
  
-Bitcoin Core-Software installieren und entpacken:+Install and extract the monero full node:
 <code> <code>
-wget https://bitcoin.org/bin/bitcoin-core-27.0/bitcoin-27.0-x86_64-linux-gnu.tar.gz <- Neueste Version +wget https://downloads.getmonero.org/linux64           <- Latest stuff  
-mkdir /opt/bitcoin +tar --strip-components= -xvjf linux64                  <extract 
-sudo tar --strip-components=-xzvf bitcoin-27.0-x86_64-linux-gnu.tar.gz -C /opt/bitcoin +mv monero/monerod /usr/bin/                            <- move monerod to global 
-sudo ln -s /opt/bitcoin/bin//usr/bin/+
 </code> </code>
  
-+\
-===== Bitcoin-Konfiguration =====+===== Monerod Configurations =====
 ---- ----
-Eine neue Konfigurationsdatei erstellen mit ''%%nano /etc/bitcoin.conf%%'' und folgenden Inhalt hinzufügen:+Create a new configuration file with ''%%nano /etc/monerod.conf%%'' and add the official config file from [[https://github.com/monerodocs/md/blob/master/docs/interacting/monero-config-file.md|github/monero]] or mine:
 <code> <code>
-Konfigurationsdatei für Bitcoin Core +Configuration file for monerod 
-Siehe 'bitcoind --help' für alle verfügbaren Optionen.+See 'monerod --help' for all available options.
  
-Node-Bindung und Benutzername/Passwort setzen +Binding your node & set username and password 
-rpcuser=username +rpc-bind-ip=0.0.0.0 
-rpcpassword=password +rpc-bind-port=18081              
-rpcallowip=127.0.0.1 +confirm-external-bind=1 
-rpcbind=127.0.0.1+rpc-login=username:password
  
-Blockchain-Verzeichnis setzen +Set the blockchain directory 
-datadir=/var/lib/bitcoin +data-dir=/var/lib/monero 
-logips=1 +log-file=/var/log/monero/monero.log 
-printtoconsole=0 +log-level=0
-logtimestamps=1+
  
-# Blockchain beschneiden, um Speicherplatz zu sparen +Slow but reliable db-settings 
-prune=550+db-sync-mode=safe 
 +limit-rate-up=1048576 
 +limit-rate-down=1048576 
 + 
 +# Prune Blockchain in order to speed up the process 
 +prune-blockchain=true 
 +sync-pruned-blocks=true
 </code> </code>
  
-Notwendige Verzeichnisse erstellen und Berechtigungen setzen:+At last give the monero user the rights to execute
 <code> <code>
-sudo mkdir -/var/lib/bitcoin +chown -R monero:monero /var/lib/monero 
-sudo chown -R bitcoin:bitcoin /var/lib/bitcoin+chown -R monero:monero /var/log/monero
 </code> </code>
  
-+\
-===== Bitcoin als Service =====+===== Monerod als Service einrichten ======
 ---- ----
-Ein neues Service-Skript in ''%%/etc/init.d/bitcoind%%'' für OpenRC-Systeme erstellen:+Erstelle ein neues Service-Skript in ''%%/etc/init.d/monerod%%'':
 <code> <code>
-nano /etc/init.d/bitcoind+nano /etc/init.d/monerod
 </code> </code>
  
-Folgenden Inhalt hinzufügen:+Füge folgenden Inhalt ein:
 <code> <code>
 #!/sbin/openrc-run #!/sbin/openrc-run
-Bitcoin-Daemon automatisch starten mit Konfiguration aus bitcoin.conf+Autostart monero daemon with configuration from monero.conf
  
-command="bitcoind+command="monerod
-command_args="--daemon --conf=/etc/bitcoin.conf"+command_args="--detach --config-file=/etc/monerod.conf""
  
-pidfile="/var/run/bitcoind.pid"+pidfile="/var/run/monerod.pid"
 </code> </code>
  
-Den Bitcoin-Daemon starten und zum Autostart hinzufügen:+Starte den Monero-Daemon und adde ihn als autostart
 <code> <code>
-rc-service bitcoind start +rc-service monerod start 
-rc-update add bitcoind default+rc-update add monerod default
 </code> </code>
  
-+\
-===== Wallet-Zugriff =====+===== Wallet Login =====
 ---- ----
-Nach der Einrichtung die eigene IP sichtbar machen mit dem Befehl:+After that make your IP Visible with the command:
 <code> <code>
 ip -4 addr show | grep inet ip -4 addr show | grep inet
 </code> </code>
  
-Dann mit einer Wallet-Software oder RPC-Tools auf den Bitcoin-Node zugreifen, indem folgende Anmeldedaten genutzt werden:+Then Login in your monero-wallet-gui with your credentials
   * IP: 123.45.6.7.89   * IP: 123.45.6.7.89
-  * Port: 8332 (RPC-Port) +  * Port: 18081 
-  * Benutzernameusername+  * Usernameuser
   * Passwort: password   * Passwort: password
- 
- 
start/system/monero/node.1735981860.txt.gz · Last modified: 2025/01/04 09:11 by marlonivo

Donate Marlon Ivo's Webpage