LogoLogo
HomeGet TezBuild on Tezos
French
French
  • Pour commencer
  • Introduction
    • Qu'est-ce que Tezos?
    • Gouvernance
  • Démarrage rapide
    • Les Bases
      • Comment obtenir des Tez (XTZ)
        • Échanges & Swaps
          • Conseils de sécurité
        • Robinet
      • Comment choisir un Baker
      • Comment créer un portefeuille
        • Web
          • Kukai
        • Bureau
          • Galleon
        • Mobile
          • Cortez
        • Hardware
          • Ledger
      • Comment Déléguer
      • FAQ
      • Dépannage
    • Explorer les données
      • Comment vérifier les paiements d'un baker
      • Comment vérifier une transaction
  • Ecosystème Tezos
  • Médias éducatifs
    • Coinbase Earn
  • Développer sur Tezos
  • Infrastructure
  • Guides
    • Guide Utilisateur (A TRADUIRE)
      • Principes de base de portefeuille CLI
      • Créer des noeuds rapidement avec TezTool
      • Création de Noeuds: Source GitLab
      • Création de Noeuds: Docker
      • Création de Noeuds: Kiln GUI
      • Noeuds Kiln: Mise à jour en mode complet à partir du Snapshot
      • Snapshots
        • Dépannage
          • Problèmes avec les Portefeuilles
            • Migration depuis Tezbox
    • Guides Développeurs
      • Example Dev Guide
  • À propos
    • Apprendre sur le Projet Agora
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Guides
  2. Guide Utilisateur (A TRADUIRE)

Créer des noeuds rapidement avec TezTool

Obtenir des Super Pouvoirs

Devenir un super héros est un processus assez simple.

<script src="https://asciinema.org/a/14.js" id="asciicast-14" async></script>

$ teztool create <name> --network mainnet --rpc-port 8732 --history-mode archive
# you can also pass arguments and flags to the tezos-node run command, like:
$ teztool create <name> --network mainnet --rpc-port 8732 --history-mode archive --extra-flags "--singleproccess"

# or just run this and teztool will ask for all input:
$ teztool create

$ teztool <name> start 

sudo chown -R $USER:staff ~
$ teztool <name> snapshot import  <file>
$ teztool <name> start




# Building a Node w/teztool
    git clone https://gitlab.com/nomadic-labs/teztool.git
    cd ./teztool
    go build -o teztool *.go 
    mv teztool /usr/local/bin/teztool

# Past to .bash_profile
    echo >> export  > .bash_profile 
    #alias teztool='docker run -it --rm -v $PWD:/mnt/pwd --network host -e DIND_PWD=$PWD -v /var/run/docker.sock:/var/run/docker.sock registry.gitlab.com/nomadic-labs/teztool:latest'
    #alias teztool-update='docker pull registry.gitlab.com/nomadic-labs/teztool:latest'


asciinema rec --title="Build a Tezos Rolling Storage Node in < 2 min" --yes

Les super-pouvoirs sont accordés au hasard, veuillez donc soumettre un problème si vous n'êtes pas satisfait du vôtre.

Une fois que vous êtes assez fort, sauvez le monde:

hello.sh
# Ain't no code for that yet, sorry
echo 'You got to trust me on this, I saved the world'
PreviousPrincipes de base de portefeuille CLINextCréation de Noeuds: Source GitLab

Last updated 4 years ago

Was this helpful?