¿Cómo se debe eliminar el proceso del nodo tezos?
1 respuesta
- votos
Debe usar "Ctrl + c" (oeliminar -15 & lt; Process-ID >)paraterminarelnodotezos.Esto llevará algúntiempoporqueelnodointenta cancelar suavementetodas las accionesprogramadas ymantener labase de datosen unestado coherente.
"Ctrl + z" (o kill -19 & lt; Process-ID >) simplemente detieneelproceso.Puede recuperarloejecutandoel comando fg
en lamismaterminal (o con kill -18 & lt; PID >).
Tengaen cuenta quetambiénpuedeenviar una señal SIGKILL (kill -9 & lt; PID >) queterminaráelproceso deinmediato.Pero creo queestonoes recomendable,ya quepuede dañar labase de datos.
Finalmente,puede obtenerel PID de su (s)proceso (s) detezos-nodo con ps -A | grep tezos-node
.
Your should use "Ctrl+c" (or kill -15 <Process-ID>) to terminate tezos node. This will take some time because the node tries to softly cancel all scheduled actions, and to keep the database in a consistent state.
"Ctrl+z" (or kill -19 <Process-ID>) just pauses the process. You can bring it back by running fg
command in the same terminal (or with kill -18 <PID>).
Note that you can also send a SIGKILL signal (kill -9 <PID>) that will terminate the process immediately. But this is not recommended I think, as it may corrupt the database.
Finally, you can get the PID of your tezos-node process(es) with ps -A | grep tezos-node
.
Varias vecesme heencontrado sinpoder reiniciarmi nodotezosporque creo que heterminadoelproceso,pero cuandointentoiniciarlo denuevo,apareceel siguientemensaje:
Más recientemente usé Ctrl-C,luego,cuandono vielprogreso,usé Ctrl-Z.Creo queestopusoelprocesoen segundoplano y aumentó aúnmásmi confusión.
¿Quémétodo debo utilizarparafinalizar demanera confiableelproceso delnodotezos?Si accidentalmentepongoelprocesoen segundoplano,¿hay algunaforma de que vuelva aponerloen primerplano?