programing

Xampp가 예기치 않게 종료하기 전에 SQL을 시작합니다.효과적인 해결책이 없는 것 같습니다.

magicmemo 2023. 8. 19. 10:07
반응형

Xampp가 예기치 않게 종료하기 전에 SQL을 시작합니다.효과적인 해결책이 없는 것 같습니다.

그래서 오늘 SQL을 시작하려고 했는데 시작을 누르면 다음과 같은 메시지가 표시됩니다.

13:48:29  [mysql]   Error: MySQL shutdown unexpectedly.
13:48:29  [mysql]   This may be due to a blocked port, missing dependencies, 
13:48:29  [mysql]   improper privileges, a crash, or a shutdown by another method.
13:48:29  [mysql]   Press the Logs button to view error logs and check
13:48:29  [mysql]   the Windows Event Viewer for more clues
13:48:29  [mysql]   If you need more help, copy and post this
13:48:29  [mysql]   entire log window on the forums

저는 error_log 파일과 이 파일을 확인했습니다.

InnoDB: using atomic writes.
2020-06-25 13:48:27 0 [Note] InnoDB: Mutexes and rw_locks use Windows interlocked functions
2020-06-25 13:48:27 0 [Note] InnoDB: Uses event mutexes
2020-06-25 13:48:27 0 [Note] InnoDB: Compressed tables use zlib 1.2.11
2020-06-25 13:48:27 0 [Note] InnoDB: Number of pools: 1
2020-06-25 13:48:27 0 [Note] InnoDB: Using SSE2 crc32 instructions
2020-06-25 13:48:27 0 [Note] InnoDB: Initializing buffer pool, total size = 16M, instances = 1, chunk size = 16M
2020-06-25 13:48:27 0 [Note] InnoDB: Completed initialization of buffer pool
2020-06-25 13:48:27 0 [Note] InnoDB: 128 out of 128 rollback segments are active.
2020-06-25 13:48:27 0 [Note] InnoDB: Creating shared tablespace for temporary tables
2020-06-25 13:48:27 0 [Note] InnoDB: Setting file 'C:\xampp\mysql\data\ibtmp1' size to 12 MB. Physically writing the file full; Please wait ...
2020-06-25 13:48:27 0 [Note] InnoDB: File 'C:\xampp\mysql\data\ibtmp1' size is now 12 MB.
2020-06-25 13:48:27 0 [Note] InnoDB: Waiting for purge to start
2020-06-25 13:48:27 0 [Note] InnoDB: 10.4.13 started; log sequence number 5299770; transaction id 988
2020-06-25 13:48:27 0 [Note] InnoDB: Loading buffer pool(s) from C:\xampp\mysql\data\ib_buffer_pool
2020-06-25 13:48:27 0 [Note] Plugin 'FEEDBACK' is disabled.
2020-06-25 13:48:27 0 [Note] InnoDB: Buffer pool(s) load completed at 200625 13:48:27
2020-06-25 13:48:27 0 [Note] Server socket created on IP: '::'.

문제를 해결하기 위해 이미 다음 솔루션을 시도했습니다.

  • 다른 어떤 것도 포트를 차단하지 않습니다.스카이프도 아니고 아무것도 아닙니다.
  • ibtmp1 파일을 삭제하고 ib_...파일을 로그에 기록하고 서버를 다시 시작했습니다.
  • 포트를 3306에서 3307로 변경했습니다.
  • max_allowed_packet이 1M에서 128M으로 변경됨
  • 작업 관리자에서 mysql 작업 종료(실행 중인 작업이 없으므로 이 작업은 작동하지 않음)

이것이 세 번째로 일어나는 일입니다.xampp를 다시 설치하면 다시 작동할 수 있는 유일한 방법입니다.하지만 모든 것을 다시 연결하고 테이블을 다시 가져오려면 30분 정도 걸립니다.또한 저는 항상 테이블을 내보내야 하기 때문에 변경 사항이 발생하지 않습니다.제가 해볼 수 있는 다른 것이 있나요?

언급URL : https://stackoverflow.com/questions/62574931/xampp-starts-sql-than-shuts-down-unexpectedly-no-solution-seems-to-work

반응형