Comment supprimer le réglage du mode privé de mon noeud?Mon nœud ne se connecte pas à pair
-
-
Votre commandeest-elle complète?Lafinale `--eeer` s'attend à un argument,quiest la description d'un autrenœud (" AAA.BBB.CCC.DDDD: Port` ou `Nom d'hôte: Port`)Is your command complete ? The final `--peer` expects an argument, which is the description of another node ('AAA.BBB.CCC.DDD:PORT` or `HOSTNAME:PORT`)
- 0
- 2019-02-14
- lefessan
-
Avez-vous unfichier `config.json` dans votre répertoire` ~/.Tezos-node`?Do you have a `config.json` file in your `~/.tezos-node` directory ?
- 0
- 2019-02-14
- lefessan
-
2 réponses
- votes
-
- 2019-02-14
Ceciest causépar un comportementgênant du script d'entrée du docker:ilpasse les options denœud àpartir de
tezos-node config {init,update}
à chaquefois,ce qui signifie que les optionspeuvent accumuleret devenirimpossiblessupprimer àtravers lepoint d'entrée.: (Une option serait de supprimer votre config.jsonet de démarrer:
./mainnet.sh shell
,puis dans la coquerm /var/run/tezos/node/data/config.json
,puis quittez la coqueet redémarrez lenœud avec les options souhaitées.Ou,modifiez lemêmefichier de configuration à lamain (ditesen utilisantvi
dans la coque Docker)en tant que FLFC OCP suggère.This is caused by an awkward behavior of the docker entrypoint script: it passes the node options along to
tezos-node config {init,update}
every time, which means options can accumulate and become impossible to remove through the entrypoint. :(One option would be to just delete your config.json and start over:
./mainnet.sh shell
, then in the shellrm /var/run/tezos/node/data/config.json
, then exit the shell and restart the node with the options you want. Or, edit the same config file by hand (say usingvi
in the docker shell) as FLF OCP suggests.-
Merci Tom.Oui Si vous aveztrouvé lefichier config.json,maisj'aieu accidentellement une configurationincorrecte dedanset maintenantmon conteneur Dockerne démarrepaset que si le conteneurne démarre,je nepeuxpas vous connecter à la coque du conteneur.Maintenant,je suis coincé avecmon conteneur denœud redémarrantencoreet encore.Une solutionpour cela?Thanks Tom. Yes if found the config.json file but i accidently left some incorrect configuration in it and now my docker container won't start and unless the container starts i can't login in to container shell. now i am stuck with my node container restarting again and again. Any solution for that?
- 0
- 2019-02-15
- Sachin Tomar
-
D'Oh!Jene suispasexpert Docker,maispourmoi,on dirait que lefichier de configurationpeut êtretrouvé à `/var/lib/docker/volumes/montnet_node_data/_data/data/config.json` de l'extérieur du conteneur.Peut-être que vouspourriez le supprimer ou lemodifier (avec `sudo`) à cetendroit?D'oh! I am no docker expert, but, for me, it looks like the config file can be found at `/var/lib/docker/volumes/mainnet_node_data/_data/data/config.json` from outside the container. Perhaps you could delete or modify it (with `sudo`) at that location?
- 1
- 2019-02-15
- Tom
-
Merci.Qui résoutmonproblème.J'aitrouvé le volume avecnom Mainnet_node_Data,a étémonté avec le cheminmentionnépar vous./var/lib/docker/volumes/montnet_node_data/_Data/données/MAINTENANTmon conteneurest ànouveauen cours d'exécution.Thanks. That solves my problem. I found the volume with name mainnet_node_data, was mounted with the path mentioned by you. /var/lib/docker/volumes/mainnet_node_data/_data/data/ Now my container is running again.
- 0
- 2019-02-17
- Sachin Tomar
-
- 2019-02-14
Si vous souhaitez resteren modeprivé,vous devezfournir un argument
--peer node:port
Lorsque vous démarrez votrenœud oumodifiez lefichierconfig.json
fichierdunoeud d'ajouter detelspairs (ce quiestmeilleur,commeil sera utilisé à chaquefois que vous le redémarrez).If you want to remain in private-mode, you must provide an argument
--peer node:port
when starting your node, or edit theconfig.json
file of the node to add such peers (which is better, as it will be used everytime you restart it).
J'ai utilisé ci-dessous la commandepour démarrermon conteneur denœuden modeprivé:
nœud a commencé à démarreren modeprivé,maisiln'estpas capable dene pas vous connecter aunœudpublic IPet que lorsqueje m'arrêteet queje démarremon conteneur à l'aide de la commande ci-dessous,lemodeprivéne se retirepas.
Commentpuis-jeme connecter aunœud homologuetouten modeprivé ou comment supprimer lemodeprivé de sorte quemonboulangerne cessepas defonctionnerpour l'instant?