MariaDB 아카이브 엔진 설치
MariaDB를 Debian에 설치했는데 Archive Engine이 없습니다.Archive Engine을 설치하는 방법이 있습니까?
/usr/lib/mysql/plugin 디렉토리에 ha_archive 파일이 없습니다.
SQL 쉘을 사용하여 플러그인을 설치해 보십시오.
MariaDB> INSTALL PLING 아카이브 SONAME 'ha_archive.so';
플러그인 표시
MariaDB > show engines \G
편집:
ubuntu에 mariadb-10.x를 설치하고,ARCHIVE
는 디폴트로 유효하게 되어 있습니다.
MariaDB > show engines \G
*************************** 7. row ***************************
Engine: ARCHIVE
Support: YES
Comment: Archive storage engine
Transactions: NO
XA: NO
Savepoints: NO
root 사용자로 로그인하여 MariaDB에 다음 명령을 입력하여 이 문제를 해결했습니다.
MariaDB [(none)]> INSTALL SONAME 'ha_archive';
Query OK, 0 rows affected (0.33 sec)
설치되어 있는지 확인합니다.
MariaDB [(none)]> SHOW ENGINES;
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
| Engine | Support | Comment | Transactions | XA | Savepoints |
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
| MRG_MyISAM | YES | Collection of identical MyISAM tables | NO | NO | NO |
| CSV | YES | CSV storage engine | NO | NO | NO |
| MEMORY | YES | Hash based, stored in memory, useful for temporary tables | NO | NO | NO |
| MyISAM | YES | MyISAM storage engine | NO | NO | NO |
| SEQUENCE | YES | Generated tables filled with sequential values | YES | NO | YES |
| ARCHIVE | YES | Archive storage engine | NO | NO | NO |
| PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO |
| InnoDB | DEFAULT | Percona-XtraDB, Supports transactions, row-level locking, foreign keys and encryption for tables | YES | YES | YES |
| Aria | YES | Crash-safe tables with MyISAM heritage | NO | NO | NO |
+--------------------+---------+--------------------------------------------------------------------------------------------------+--------------+------+------------+
9 rows in set (0.00 sec)
언급URL : https://stackoverflow.com/questions/26996618/install-mariadb-archive-engine
'programing' 카테고리의 다른 글
MySQL 오류 1153 - 'max_allowed_packet' 바이트보다 큰 패킷을 받았습니다. (0) | 2022.09.27 |
---|---|
'for' 루프의 마지막 요소를 감지하는 피토닉 방법은 무엇입니까? (0) | 2022.09.27 |
Moment.js를 최신 개체로 변환 (0) | 2022.09.27 |
mysql 워크벤치를 통해 mysql 데이터베이스로 데이터를 Import하려면 어떻게 해야 합니까? (0) | 2022.09.27 |
Ajax 성공 이벤트가 작동하지 않음 (0) | 2022.09.26 |