에러 코드 검색

HTTP, PostgreSQL, MySQL 에러 코드를 검색하고 해결 방법을 확인합니다

54개 결과
HTTPOK

The request succeeded.

HTTPCreated

The request succeeded and a new resource was created.

HTTPNo Content

The request succeeded but returns no content.

HTTPMoved Permanently

The URL has been permanently moved.

HTTPFound

The URL has been temporarily moved.

HTTPNot Modified

Resource not modified since last request.

HTTPBad Request

The server cannot process the request due to client error.

💡 Check request syntax, headers, and body format.

HTTPUnauthorized

Authentication is required and has failed or not been provided.

💡 Provide valid authentication credentials.

HTTPForbidden

The server understood the request but refuses to authorize it.

💡 Check user permissions and access rights.

HTTPNot Found

The requested resource could not be found.

💡 Verify the URL is correct and the resource exists.

HTTPMethod Not Allowed

The request method is not supported for this resource.

💡 Use a different HTTP method (GET, POST, PUT, DELETE).

HTTPRequest Timeout

The server timed out waiting for the request.

💡 Retry the request or increase timeout settings.

HTTPConflict

The request conflicts with the current state of the resource.

💡 Resolve the conflict and retry.

HTTPPayload Too Large

The request entity is larger than the server will process.

💡 Reduce the size of the request body.

HTTPUnsupported Media Type

The media format is not supported.

💡 Use a supported Content-Type header.

HTTPUnprocessable Entity

The request was well-formed but had semantic errors.

💡 Check the request body for validation errors.

HTTPToo Many Requests

The user has sent too many requests in a given time.

💡 Implement rate limiting and add delays between requests.

HTTPInternal Server Error

The server encountered an unexpected condition.

💡 Check server logs for the root cause.

HTTPNot Implemented

The server does not support the functionality required.

💡 Use a different endpoint or implement the feature.

HTTPBad Gateway

The server received an invalid response from an upstream server.

💡 Check the upstream server status and connectivity.

HTTPService Unavailable

The server is not ready to handle the request.

💡 Wait and retry, or check server health.

HTTPGateway Timeout

The gateway did not receive a response from the upstream server.

💡 Check upstream server performance and network.

PostgreSQLunique_violation

Duplicate key value violates unique constraint.

💡 Ensure the value is unique or use ON CONFLICT clause.

PostgreSQLforeign_key_violation

Foreign key constraint violation.

💡 Ensure referenced row exists before inserting.

PostgreSQLnot_null_violation

NOT NULL constraint violation.

💡 Provide a value for the NOT NULL column.

PostgreSQLcheck_violation

CHECK constraint violation.

💡 Ensure the value satisfies the CHECK constraint.

PostgreSQLsyntax_error

SQL syntax error.

💡 Check SQL syntax near the error position.

PostgreSQLundefined_table

Table does not exist.

💡 Verify table name and run migrations if needed.

PostgreSQLundefined_column

Column does not exist.

💡 Check column name spelling and case sensitivity.

PostgreSQLduplicate_database

Database already exists.

💡 Use a different name or drop existing database.

PostgreSQLduplicate_table

Table already exists.

💡 Use IF NOT EXISTS or drop existing table.

PostgreSQLdisk_full

Disk space is exhausted.

💡 Free up disk space or increase storage.

PostgreSQLout_of_memory

Server ran out of memory.

💡 Increase memory or optimize queries.

PostgreSQLquery_canceled

Query was cancelled by statement_timeout.

💡 Optimize query or increase timeout.

PostgreSQLinvalid_password

Invalid password for user.

💡 Check credentials for the database user.

PostgreSQLinvalid_catalog_name

Database does not exist.

💡 Create the database or check the name.

PostgreSQLconnection_failure

Connection to the server was lost.

💡 Check network and server status.

PostgreSQLserialization_failure

Transaction could not serialize access.

💡 Retry the transaction.

PostgreSQLdeadlock_detected

Deadlock detected between transactions.

💡 Restructure transactions to avoid deadlock.

MySQLER_ACCESS_DENIED_ERROR

Access denied for user.

💡 Check username, password, and host permissions.

MySQLER_BAD_DB_ERROR

Unknown database.

💡 Create the database or check spelling.

MySQLER_BAD_FIELD_ERROR

Unknown column in field list.

💡 Check column name and table structure.

MySQLER_DUP_ENTRY

Duplicate entry for key.

💡 Use INSERT IGNORE or ON DUPLICATE KEY UPDATE.

MySQLER_PARSE_ERROR

SQL syntax error.

💡 Check SQL syntax near the error position.

MySQLER_NO_SUCH_TABLE

Table does not exist.

💡 Create the table or check table name.

MySQLER_CANNOT_ADD_FOREIGN

Cannot add foreign key constraint.

💡 Check parent table structure and data types.

MySQLER_ROW_IS_REFERENCED

Cannot delete or update a parent row.

💡 Delete child rows first or use ON DELETE CASCADE.

MySQLER_ROW_IS_REFERENCED_2

Foreign key constraint fails on delete/update.

💡 Handle child records before modifying parent.

MySQLER_NO_REFERENCED_ROW_2

Foreign key constraint fails on insert/update.

💡 Ensure parent row exists first.

MySQLCR_CONNECTION_ERROR

Cannot connect to local MySQL server.

💡 Check if MySQL is running and socket is correct.

MySQLCR_CONN_HOST_ERROR

Cannot connect to MySQL server on host.

💡 Check server address, port, and firewall.

MySQLCR_SERVER_GONE_ERROR

MySQL server has gone away.

💡 Check wait_timeout and max_allowed_packet.

MySQLER_LOCK_WAIT_TIMEOUT

Lock wait timeout exceeded.

💡 Optimize queries or increase innodb_lock_wait_timeout.

MySQLER_LOCK_DEADLOCK

Deadlock found when trying to get lock.

💡 Retry transaction or restructure queries.

에러 코드 데이터베이스

  • HTTP 상태 코드 (1xx ~ 5xx)
  • PostgreSQL SQLSTATE 코드
  • MySQL 에러 번호 및 설명

Developer Tools

개발자를 위한 80가지 이상의 무료 온라인 도구를 제공합니다. Base64, JSON, JWT, 정규식 등 필수 개발 도구를 한 곳에서.

Developer Tools © 2025. All rights reserved.

대부분의 도구는 브라우저에서 동작하며, 네트워크가 필요한 도구만 실행 시에 데이터가 전송됩니다.

에러 코드 검색 | Developer Tools