>  기사  >  데이터 베이스  >  MySQL이 시작될 때 InnoDB 엔진이 비활성화되면 어떻게 해야 합니까?

MySQL이 시작될 때 InnoDB 엔진이 비활성화되면 어떻게 해야 합니까?

小云云
小云云원래의
2017-12-25 13:29:491284검색

MySQL을 시작할 때 InnoDB 엔진이 비활성화되면 어떻게 해야 하나요? 최근 직장에서 문제가 발생했는데 이제 모두가 참고하고 연구할 수 있도록 해결 방법을 공유하겠습니다. 다음 기사에서는 MySQL 시작 시 InnoDB 엔진이 비활성화되는 문제에 대한 해결 방법을 주로 소개합니다. 필요한 친구는 따라할 수 있습니다. 아래 단계를 함께 배워보세요. 그것이 모두에게 도움이 되기를 바랍니다.

문제 발견

오늘 직장에서 로컬 데이터베이스의 테이블 데이터를 가상 머신 CentOS 6.6의 데이터베이스로 복사할 때 다음 메시지가 표시되었습니다.

Unknown table engine 'InnoDB'

그래서 서버 MySQL에서 엔진을 확인했습니다.

mysql> show engines\G

*************************** 1. row ***************************
  Engine: MyISAM
  Support: DEFAULT
  Comment: MyISAM storage engine
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 2. row ***************************
  Engine: CSV
  Support: YES
  Comment: CSV storage engine
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 3. row ***************************
  Engine: MEMORY
  Support: YES
  Comment: Hash based, stored in memory, useful for temporary tables
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 4. row ***************************
  Engine: BLACKHOLE
  Support: YES
  Comment: /dev/null storage engine (anything you write to it disappears)
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 5. row ***************************
  Engine: MRG_MYISAM
  Support: YES
  Comment: Collection of identical MyISAM tables
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 6. row ***************************
  Engine: PERFORMANCE_SCHEMA
  Support: YES
  Comment: Performance Schema
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 7. row ***************************
  Engine: ARCHIVE
  Support: YES
  Comment: Archive storage engine
Transactions: NO
   XA: NO
 Savepoints: NO
*************************** 8. row ***************************
  Engine: FEDERATED
  Support: NO
  Comment: Federated MySQL storage engine
Transactions: NULL
   XA: NULL
 Savepoints: NULL
*************************** 9. row ***************************
  Engine: InnoDB
  Support: NO
  Comment: Supports transactions, row-level locking, and foreign keys
Transactions: NULL
   XA: NULL
 Savepoints: NULL
rows in set (0.00 sec)

InnoDB 지원은 NO

Solution

Edit my.cnf

[root@localhost mysql]# vim /etc/my.cnf

innodb = OFF를 innodb = ON

으로 변경하는 동시에 Skip-innodb를 주석 처리합니다.

관련 권장 사항:

MySQL 스토리지 엔진 MyISAM과 InnoDB의 비교

mysql의 innoDB 잠금 소개

MySQL InnoDB와 MyISAM 데이터 엔진의 차이점에 대한 자세한 분석

위 내용은 MySQL이 시작될 때 InnoDB 엔진이 비활성화되면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.