bind10_messages.mes 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
  2. #
  3. # Permission to use, copy, modify, and/or distribute this software for any
  4. # purpose with or without fee is hereby granted, provided that the above
  5. # copyright notice and this permission notice appear in all copies.
  6. #
  7. # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  8. # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  9. # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  10. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  11. # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  12. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  13. # PERFORMANCE OF THIS SOFTWARE.
  14. # No namespace declaration - these constants go in the global namespace
  15. # of the xfrin messages python module.
  16. % BIND10_CHECK_MSGQ_ALREADY_RUNNING checking if msgq is already running
  17. The boss process is starting up and will now check if the message bus
  18. daemon is already running. If so, it will not be able to start, as it
  19. needs a dedicated message bus.
  20. % BIND10_CONFIGURATION_START_AUTH start authoritative server: %1
  21. This message shows whether or not the authoritative server should be
  22. started according to the configuration.
  23. % BIND10_CONFIGURATION_START_RESOLVER start resolver: %1
  24. This message shows whether or not the resolver should be
  25. started according to the configuration.
  26. % BIND10_INVALID_USER invalid user: %1
  27. The boss process was started with the -u option, to drop root privileges
  28. and continue running as the specified user, but the user is unknown.
  29. % BIND10_KILLING_ALL_PROCESSES killing all started processes
  30. The boss module was not able to start every process it needed to start
  31. during startup, and will now kill the processes that did get started.
  32. % BIND10_KILL_PROCESS killing process %1
  33. The boss module is sending a kill signal to process with the given name,
  34. as part of the process of killing all started processes during a failed
  35. startup, as described for BIND10_KILLING_ALL_PROCESSES
  36. % BIND10_MSGQ_ALREADY_RUNNING msgq daemon already running, cannot start
  37. There already appears to be a message bus daemon running. Either an
  38. old process was not shut down correctly, and needs to be killed, or
  39. another instance of BIND10, with the same msgq domain socket, is
  40. running, which needs to be stopped.
  41. % BIND10_MSGQ_DAEMON_ENDED b10-msgq process died, shutting down
  42. The message bus daemon has died. This is a fatal error, since it may
  43. leave the system in an inconsistent state. BIND10 will now shut down.
  44. % BIND10_MSGQ_DISAPPEARED msgq channel disappeared
  45. While listening on the message bus channel for messages, it suddenly
  46. disappeared. The msgq daemon may have died. This might lead to an
  47. inconsistent state of the system, and BIND 10 will now shut down.
  48. % BIND10_PROCESS_ENDED_NO_EXIT_STATUS process %1 (PID %2) died: exit status not available
  49. The given process ended unexpectedly, but no exit status is
  50. available. See BIND10_PROCESS_ENDED_WITH_EXIT_STATUS for a longer
  51. description.
  52. % BIND10_PROCESS_ENDED_WITH_EXIT_STATUS process %1 (PID %2) terminated, exit status = %3
  53. The given process ended unexpectedly with the given exit status.
  54. Depending on which module it was, it may simply be restarted, or it
  55. may be a problem that will cause the boss module to shut down too.
  56. The latter happens if it was the message bus daemon, which, if it has
  57. died suddenly, may leave the system in an inconsistent state. BIND10
  58. will also shut down now if it has been run with --brittle.
  59. % BIND10_READING_BOSS_CONFIGURATION reading boss configuration
  60. The boss process is starting up, and will now process the initial
  61. configuration, as received from the configuration manager.
  62. % BIND10_RECEIVED_COMMAND received command: %1
  63. The boss module received a command and shall now process it. The command
  64. is printed.
  65. % BIND10_RECEIVED_NEW_CONFIGURATION received new configuration: %1
  66. The boss module received a configuration update and is going to apply
  67. it now. The new configuration is printed.
  68. % BIND10_RECEIVED_SIGNAL received signal %1
  69. The boss module received the given signal.
  70. % BIND10_RESURRECTED_PROCESS resurrected %1 (PID %2)
  71. The given process has been restarted successfully, and is now running
  72. with the given process id.
  73. % BIND10_RESURRECTING_PROCESS resurrecting dead %1 process...
  74. The given process has ended unexpectedly, and is now restarted.
  75. % BIND10_SELECT_ERROR error in select() call: %1
  76. There was a fatal error in the call to select(), used to see if a child
  77. process has ended or if there is a message on the message bus. This
  78. should not happen under normal circumstances and is considered fatal,
  79. so BIND 10 will now shut down. The specific error is printed.
  80. % BIND10_SEND_SIGKILL sending SIGKILL to %1 (PID %2)
  81. The boss module is sending a SIGKILL signal to the given process.
  82. % BIND10_SEND_SIGTERM sending SIGTERM to %1 (PID %2)
  83. The boss module is sending a SIGTERM signal to the given process.
  84. % BIND10_SHUTDOWN stopping the server
  85. The boss process received a command or signal telling it to shut down.
  86. It will send a shutdown command to each process. The processes that do
  87. not shut down will then receive a SIGTERM signal. If that doesn't work,
  88. it shall send SIGKILL signals to the processes still alive.
  89. % BIND10_SHUTDOWN_COMPLETE all processes ended, shutdown complete
  90. All child processes have been stopped, and the boss process will now
  91. stop itself.
  92. % BIND10_SOCKCREATOR_BAD_CAUSE unknown error cause from socket creator: %1
  93. The socket creator reported an error when creating a socket. But the function
  94. which failed is unknown (not one of 'S' for socket or 'B' for bind).
  95. % BIND10_SOCKCREATOR_BAD_RESPONSE unknown response for socket request: %1
  96. The boss requested a socket from the creator, but the answer is unknown. This
  97. looks like a programmer error.
  98. % BIND10_SOCKCREATOR_CRASHED the socket creator crashed
  99. The socket creator terminated unexpectedly. It is not possible to restart it
  100. (because the boss already gave up root privileges), so the system is going
  101. to terminate.
  102. % BIND10_SOCKCREATOR_EOF eof while expecting data from socket creator
  103. There should be more data from the socket creator, but it closed the socket.
  104. It probably crashed.
  105. % BIND10_SOCKCREATOR_INIT initializing socket creator parser
  106. The boss module initializes routines for parsing the socket creator
  107. protocol.
  108. % BIND10_SOCKCREATOR_KILL killing the socket creator
  109. The socket creator is being terminated the aggressive way, by sending it
  110. sigkill. This should not happen usually.
  111. % BIND10_SOCKCREATOR_TERMINATE terminating socket creator
  112. The boss module sends a request to terminate to the socket creator.
  113. % BIND10_SOCKCREATOR_TRANSPORT_ERROR transport error when talking to the socket creator: %1
  114. Either sending or receiving data from the socket creator failed with the given
  115. error. The creator probably crashed or some serious OS-level problem happened,
  116. as the communication happens only on local host.
  117. % BIND10_SOCKET_CREATED successfully created socket %1
  118. The socket creator successfully created and sent a requested socket, it has
  119. the given file number.
  120. % BIND10_SOCKET_ERROR error on %1 call in the creator: %2/%3
  121. The socket creator failed to create the requested socket. It failed on the
  122. indicated OS API function with given error.
  123. % BIND10_SOCKET_GET requesting socket [%1]:%2 of type %3 from the creator
  124. The boss forwards a request for a socket to the socket creator.
  125. % BIND10_STARTED_PROCESS started %1
  126. The given process has successfully been started.
  127. % BIND10_STARTED_PROCESS_PID started %1 (PID %2)
  128. The given process has successfully been started, and has the given PID.
  129. % BIND10_STARTING starting BIND10: %1
  130. Informational message on startup that shows the full version.
  131. % BIND10_STARTING_PROCESS starting process %1
  132. The boss module is starting the given process.
  133. % BIND10_STARTING_PROCESS_PORT starting process %1 (to listen on port %2)
  134. The boss module is starting the given process, which will listen on the
  135. given port number.
  136. % BIND10_STARTING_PROCESS_PORT_ADDRESS starting process %1 (to listen on %2#%3)
  137. The boss module is starting the given process, which will listen on the
  138. given address and port number (written as <address>#<port>).
  139. % BIND10_STARTUP_COMPLETE BIND 10 started
  140. All modules have been successfully started, and BIND 10 is now running.
  141. % BIND10_STARTUP_ERROR error during startup: %1
  142. There was a fatal error when BIND10 was trying to start. The error is
  143. shown, and BIND10 will now shut down.
  144. % BIND10_START_AS_NON_ROOT starting %1 as a user, not root. This might fail.
  145. The given module is being started or restarted without root privileges.
  146. If the module needs these privileges, it may have problems starting.
  147. Note that this issue should be resolved by the pending 'socket-creator'
  148. process; once that has been implemented, modules should not need root
  149. privileges anymore. See tickets #800 and #801 for more information.
  150. % BIND10_STOP_PROCESS asking %1 to shut down
  151. The boss module is sending a shutdown command to the given module over
  152. the message channel.
  153. % BIND10_UNKNOWN_CHILD_PROCESS_ENDED unknown child pid %1 exited
  154. An unknown child process has exited. The PID is printed, but no further
  155. action will be taken by the boss process.
  156. % BIND10_INVALID_STATISTICS_DATA invalid specification of statistics data specified
  157. An error was encountered when the boss module specified
  158. statistics data which is invalid for the boss specification file.