난 그냥 윈도우 10.이 컴퓨터에서 버그 질라를 실행하려는 오전에서 MySQL 5.7을 설치, 그래서윈도우에서 사용하는 10
max_allowed_packet=16M
ft_min_word_len=2
이다
this bugzilla mysql settings page의 설정을하고 싶습니다 내가
cmd
에서
mysql --help
을 실행하면
, 나는 내가 위에서 설정을 추가 한 경우, 이는 해당 파일의
Default options are read from the following files in the given order:
C:\WINDOWS\my.ini C:\WINDOWS\my.cnf C:\my.ini C:\my.cnf C:\Program Files\MySQL\MySQL Server 5.7\my.ini C:\Program Files\MySQL\MySQL Server 5.7\my.cnf
없음 C:\Program Files\MySQL\MySQL Server 5.7\my.ini
때까지 존재하지 않는다라는 한 줄을 얻을. 하지만 전이 같은 창에서 mysql -u username -p
을 열면, 나는
mysql> SHOW VARIABLES LIKE 'max_allowed_packet';
+--------------------+---------+
| Variable_name | Value |
+--------------------+---------+
| max_allowed_packet | 4194304 |
+--------------------+---------+
1 row in set (0.00 sec)
mysql> SHOW VARIABLES LIKE 'ft_min_word_len';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| ft_min_word_len | 4 |
+-----------------+-------+
1 row in set (0.00 sec)
을 얻을 그리고 내가 다시 mysql --help
을한다면, 나는
max-allowed-packet 16777216
그래서 난 정말 혼란 스러워요라는 한 줄을 얻을. 다른 MySQL 설치 또는 뭔가 로그인하는 건가요? 현재 전체
mysql --help
here
위와 같이'select @@ version'을 실행하면 서버의 여러 인스턴스가 실행될 수 있으며,'-P portnumber'가 없으면 cmd 라인이 잘못된 데몬을 가리킬 수도 있습니다. – Drew