PageRenderTime 55ms CodeModel.GetById 26ms RepoModel.GetById 1ms app.codeStats 0ms

/doc/admin/traffic-server-error-messages.en.rst

https://github.com/anorsich/trafficserver
ReStructuredText | 373 lines | 284 code | 89 blank | 0 comment | 0 complexity | ac9b2d6c72f276abe29acd34d80df2a0 MD5 | raw file
Possible License(s): Apache-2.0
  1. .. _traffic-server-error-messages:
  2. Error Messages
  3. **************
  4. .. Licensed to the Apache Software Foundation (ASF) under one
  5. or more contributor license agreements. See the NOTICE file
  6. distributed with this work for additional information
  7. regarding copyright ownership. The ASF licenses this file
  8. to you under the Apache License, Version 2.0 (the
  9. "License"); you may not use this file except in compliance
  10. with the License. You may obtain a copy of the License at
  11. http://www.apache.org/licenses/LICENSE-2.0
  12. Unless required by applicable law or agreed to in writing,
  13. software distributed under the License is distributed on an
  14. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. KIND, either express or implied. See the License for the
  16. specific language governing permissions and limitations
  17. under the License.
  18. .. toctree::
  19. :maxdepth: 2
  20. Traffic Server Error Messages
  21. =============================
  22. The following table lists messages that can appear in system log files.
  23. This list is not exhaustive; it simply describes common warning messages
  24. that can occur and which might require your attention.
  25. Traffic Server Process Fatal
  26. ============================
  27. ``Accept port is not between 1 and 65535. Please check configuration``
  28. The port specified in the :file:`records.config` file that accepts
  29. incoming HTTP requests is not valid.
  30. ``Self loop is detected in parent proxy configuration``
  31. The name and port of the parent proxy match that of Traffic Server.
  32. This creates a loop when Traffic Server attempts to send the request
  33. to the parent proxy.
  34. Traffic Server Warnings
  35. -----------------------
  36. ``<Logfile> error: error_number``
  37. Generic logging error.
  38. ``Bad cluster major version range <version1-version2> for node <IP address> connect failed``
  39. Incompatible software versions causing a problem.
  40. ``Connect by disallowed client <IP address>, closing``
  41. The specified client is not allowed to connect to Traffic Server;
  42. the client IP address is not listed in the ``ip_allow.config`` file.
  43. ``Could not rename log <filename> to <rolled filename>``
  44. System error when renaming log file during roll.
  45. ``Did <this amount> of backup; still to do <remaining amount>``
  46. Congestion is approaching.
  47. ``Different clustering minor versions <version1, version2> for node <IP address> continuing``
  48. Incompatible software versions are causing a problem.
  49. ``Log format symbol <symbol name> not found``
  50. Custom log format references a field symbol that does not exist.
  51. Refer to :ref:`event-logging-formats`.
  52. ``Missing field for field marker``
  53. Error reading a log buffer.
  54. ``Unable to open log file <filename>, errno=<error number>``
  55. Cannot open the log file.
  56. ``Error accessing disk <disk name>``
  57. Traffic Server might have a cache read problem. You might need to
  58. replace the disk.
  59. ``Too many errors accessing disk <disk name>: declaring disk bad``
  60. Traffic Server is not using the cache disk because it encountered
  61. too many errors. The disk might be corrupt and might have to be
  62. replaced.
  63. ``No cache disks specified in storage.config file: cache disabled``
  64. The Traffic Server ``storage.config`` file does not list any cache
  65. disks; Traffic Server is running in proxy-only mode. You must add
  66. the disks you want to use for the cache to :file:`storage.config`.
  67. Traffic Server Alarm Messages
  68. =============================
  69. ``[Rollback::Rollback] Config file is read-only: <filename>``
  70. Go to the Traffic Server ``config`` directory and check the
  71. indicated file permissions; change if necessary.
  72. ``[Rollback::Rollback] Unable to read or write config file <filename>``
  73. Go to the Traffic Server ``config`` directory and make sure the
  74. indicated file exists. Check permissions and modify if necessary.
  75. ``[Traffic Manager] Configuration File Update Failed: <error number>``
  76. Go to the Traffic Server ``config`` directory and check the
  77. indicated file permissions; change if necessary.
  78. ``[Traffic Manager] Mgmt <==>Proxy conn. closed``
  79. An informational message to inform you that the :program:`traffic_server`
  80. process is down.
  81. ``Access logging suspended - configured space allocation exhausted.``
  82. The space allocated to the event log files is full; you must either
  83. increase the space or delete some log files so that access logging
  84. to continue. To prevent this error, consider rolling log files more
  85. frequently and enabling the autodelete feature.
  86. ``Access logging suspended - no more space on the logging partition.``
  87. The entire partition containing the event logs is full; you must
  88. delete or move some log files to enable access logging to continue.
  89. To prevent this error, consider rolling log files more frequently
  90. and enabling the autodelete feature.
  91. ``Created zero length place holder for config file <filename>``
  92. Go to the Traffic Server ``config`` directory and check the
  93. indicated file. If it is indeed zero in length, then use a backup
  94. copy of the configuration file.
  95. ``Traffic Server could not open logfile <filename>``
  96. Check permissions for the indicated file and the logging directory.
  97. ``Traffic Server failed to parse line <line number> of the logging config file <filename>``
  98. Check your custom log configuration file; there could be syntax
  99. errors. Refer to :ref:`custom-logging-fields` for correct custom log format fields.
  100. ``vip_config binary is not setuid root, manager will be unable to enable virtual ip addresses``
  101. The :program:`traffic_manager` process is not able to set virtual IP
  102. addresses. You must ``setuid root`` for the ``vip_config`` file in
  103. the Traffic Server ``bin`` directory.
  104. HTML Messages Sent to Clients
  105. =============================
  106. Traffic Server returns detailed error messages to browser clients when
  107. there are problems with the HTTP transactions requested by the browser.
  108. These Traffic Server response messages correspond to standard HTTP
  109. response codes, but provide more information. A list of the more
  110. frequently-encountered HTTP response codes is provided in :ref:`standard-http-response-messages`.
  111. You can customize the Traffic Server response messages (typically in
  112. proxy/config/body_factory/default/, but set by
  113. :ts:cv:`proxy.config.body_factory.template_sets_dir`).
  114. The following table lists the hard-coded Traffic Server HTTP messages,
  115. with corresponding HTTP response codes and customizable files.
  116. ``Access Denied``
  117. ``403``
  118. You are not allowed to access the document at location ``URL``.
  119. ``access#denied``
  120. ``Cache Read Error``
  121. ``500``
  122. Error reading from cache; please retry request.
  123. ``cache#read_error``
  124. ``Connection Timed Out``
  125. ``504``
  126. Too much time has elapsed since the server has sent data.
  127. ``timeout#inactivity``
  128. ``Content Length Required``
  129. ``400``
  130. Could not process this request because ``Content-Length`` was not specified.
  131. ``request#no_content_length``
  132. ``Cycle Detected``
  133. ``400``
  134. Your request is prohibited because it would cause an HTTP proxy cycle.
  135. ``request#cycle_detected``
  136. ``Forbidden``
  137. ``403``
  138. ``<port number>`` is not an allowed port for SSL connections (you have made a request for a secure SSL connection to a forbidden port number).
  139. ``access#ssl_forbidden``
  140. ``Host Header Required``
  141. ``400``
  142. An attempt was made to transparently proxy your request, but this
  143. attempt failed because your browser did not send an HTTP ``Host``
  144. header. Manually configure your browser to use
  145. ``http://<proxy name>:<proxy port>`` as the HTTP
  146. proxy. Alternatively, end users can upgrade to a browser that
  147. supports the HTTP ``Host`` header field.
  148. ``interception#no_host``
  149. ``Host Header Required``
  150. ``400``
  151. Because your browser did not send a ``Host`` HTTP header field, the
  152. virtual host being requested could not be determined. To access the
  153. website correctly, you must upgrade to a browser that supports the
  154. HTTP ``Host`` header field.
  155. ``request#no_host``
  156. ``HTTP Version Not Supported``
  157. ``505``
  158. The origin server ``<server name>`` is using an unsupported version
  159. of the HTTP protocol.
  160. ``response#bad_version``
  161. ``Invalid Content Length``
  162. ``400``
  163. Could not process this request because the specified ``Content-Length``
  164. was invalid (less than 0)..
  165. ``request#invalid_content_length``
  166. ``Invalid HTTP Request``
  167. ``400``
  168. Could not process this ``<client request>`` HTTP method request for ``URL``.
  169. ``request#syntax_error``
  170. ``Invalid HTTP Response``
  171. ``502``
  172. The host ``<server name>`` did not return the document ``URL`` correctly.
  173. ``response#bad_response``
  174. ``Malformed Server Response``
  175. ``502``
  176. The host ``<server name>`` did not return the document ``URL`` correctly.
  177. ``response#bad_response``
  178. ``Malformed Server Response Status``
  179. ``502``
  180. The host ``<server name>`` did not return the document ``URL`` correctly.
  181. ``response#bad_response``
  182. ``Maximum Transaction Time exceeded``
  183. ``504``
  184. Too much time has elapsed while transmitting document ``URL``.
  185. ``timeout#activity``
  186. ``No Response Header From Server``
  187. ``502``
  188. The host ``<server name>`` did not return the document ``URL`` correctly.
  189. ``response#bad_response``
  190. ``Not Cached``
  191. ``504``
  192. This document was not available in the cache, and you (the client)
  193. only accept cached copies.
  194. ``cache#not_in_cache``
  195. ``Not Found on Accelerator``
  196. ``404``
  197. The request for ``URL`` on host ``<server name>`` was not found.
  198. Check the location and try again.
  199. ``urlrouting#no_mapping``
  200. ``NULL``
  201. ``502``
  202. The host ``<hostname>`` did not return the document ``URL`` correctly.
  203. ``response#bad_response``
  204. ``Proxy Authentication Required``
  205. ``407``
  206. Please log in with username and password.
  207. ``access#proxy_auth_required``
  208. ``Server Hangup``
  209. ``502``
  210. The server ``<hostname>`` closed the connection before the transaction was completed.
  211. ``connect#hangup``
  212. ``Temporarily Moved``
  213. ``302``
  214. The document you requested, ``URL``, has moved to a new location. The new location is ``<new URL>``.
  215. ``redirect#moved_temporarily``
  216. ``Transcoding Not Available``
  217. ``406``
  218. Unable to provide the document ``URL`` in the format requested by your browser.
  219. ``transcoding#unsupported``
  220. ``Tunnel Connection Failed``
  221. ``502``
  222. Could not connect to the server ``<hostname>``.
  223. ``connect#failed_connect``
  224. ``Unknown Error``
  225. ``502``
  226. The host ``<hostname>`` did not return the document ``URL`` correctly.
  227. ``response#bad_response``
  228. ``Unknown Host``
  229. ``500``
  230. Unable to locate the server named ``<hostname>``; the server does
  231. not have a DNS entry. Perhaps there is a misspelling in the server
  232. name or the server no longer exists; double-check the name and try
  233. again.
  234. ``connect#dns_failed``
  235. ``Unsupported URL Scheme``
  236. ``400``
  237. Cannot perform your request for the document ``URL`` because the
  238. protocol scheme is unknown.
  239. ``request#scheme_unsupported``
  240. .. _standard-http-response-messages:
  241. Standard HTTP Response Messages
  242. -------------------------------
  243. The following standard HTTP response messages are provided for your
  244. information.
  245. ``200``
  246. OK
  247. ``202``
  248. Accepted
  249. ``204``
  250. No Content
  251. ``206``
  252. Partial Content
  253. ``300``
  254. Multiple Choices
  255. ``301``
  256. Moved Permanently
  257. ``302``
  258. Found
  259. ``303``
  260. See Other
  261. ``304``
  262. Not Modified
  263. ``400``
  264. Bad Request
  265. ``401``
  266. Unauthorized; retry
  267. ``403``
  268. Forbidden
  269. ``404``
  270. Not Found
  271. ``405``
  272. Method Not Allowed
  273. ``406``
  274. Not acceptable
  275. ``408``
  276. Request Timeout
  277. ``500``
  278. Internal server error
  279. ``501``
  280. Not Implemented
  281. ``502``
  282. Bad Gateway
  283. ``504``
  284. Gateway Timeout