반응형
MariaDB - innodb_log_file_size를 찾을 수 없습니다.
현재 라스비안에 OTRS를 설치하고 있습니다.Ubuntu와 MySQL에서 작업했지만 Raspbian과 MariaDB에서 문제가 발생했습니다.를 찾을 수 없을 것 같습니다.innodb_log_file_size
크기를 변경할 수 있습니다.
my.cnf는 다음과 같습니다.
The MariaDB configuration file
The MariaDB/MySQL tools read configuration files in the following order:
1. "/etc/mysql/mariadb.cnf" (this file) to set global defaults,
2. "/etc/mysql/conf.d/*.cnf" to set global options.
3. "/etc/mysql/mariadb.conf.d/*.cnf" to set MariaDB-only options.
4. "~/.my.cnf" to set user-specific options.
If the same option is defined multiple times, the last one will apply.
One can use all long options that the program supports.
Run program with --help to get a list of available options and with
--print-defaults to see which it would actually understand and use.
This group is read both both by the client and the server
use it for options that affect everything
[client-server]
Import all .cnf files from configuration directory
!includedir /etc/mysql/conf.d/
!includedir /etc/mysql/mariadb.conf.d/
및 사용show variables like 'innodb_log_file_size';
mariadb에서 이런 말을 듣습니다.
MariaDB [(none)]> show variables like 'innodb_log_file_size';
+----------------------+----------+
| Variable_name | Value |
+----------------------+----------+
| innodb_log_file_size | 50331648 |
+----------------------+----------+
1 row in set (0.01 sec)
바꿀 수 있는 팁이 있나요?오류를 제거해야 하기 때문입니다.
"오류: 데이터베이스의 innodb_log_file_size 값을 256MB 이상으로 설정하십시오."
'문제'와 '오류'가 있다고 합니다.오류 텍스트 및/또는 기타 단서를 제공해주세요.
5000M은 적당한 사이즈입니다.innodb_log_file_size
. 에서 설정할 수 있습니다.[mysqld]
my.cnf 섹션입니다.
사용 빈도가 매우 높은 시스템에서는 더 높아야 합니다.TEXT
또는BLOB
5MB가 넘는 열이면 더 커야 합니다.그러나 대부분의 시스템에서 48M은 매우 큽니다.
설정은 가장 변경하기 어려운 설정 중 하나이므로, 정당한 이유 없이 변경하지 마십시오.
일정 시간 동안 실행한 후에는
( Uptime / 60 * innodb_log_file_size / Innodb_os_log_written )
통나무 회전 간격이 몇 분인지 알 수 있습니다.1시간이 적당한 목표입니다.
언급URL : https://stackoverflow.com/questions/47054878/mariadb-cant-find-innodb-log-file-size
반응형
'programing' 카테고리의 다른 글
클래스 이름과 함께 "this" 사용 (0) | 2023.02.06 |
---|---|
도커에 동일한 영속 스토리지를 사용하는 2개의 mariadb 인스턴스 (0) | 2023.02.06 |
skikit 학습 선형 회귀 분석에서 p-값(중요도) 찾기 (0) | 2023.02.06 |
PHP에서 헤더("Location: " )가 있는 이전 페이지로 돌아갑니다. (0) | 2023.02.06 |
Vuetify 진행률 막대 계산에서 null 값을 제거하는 방법 (0) | 2023.02.06 |