这里(https://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html)很遗憾,可以通过命令行更改值。
这里(https://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_ft_min_word_len)是你的格式,但是我在这个命令的地方和方式,是在shell mysql还是提示linux?
我试试:
me:/$ sudo mysql --ft-min-word-len=2
和mysql shell中的相同:
MySQL [(none)]> mysql --ft-min-word-len=2
但是两个都显示错误,我的错误是什么?
我是dbmanegement的新手。
答案 0 :(得分:0)
尝试以下方法之一:
1 - 在查询编辑器中,运行set global ft-min-word-len=2;
2 - 或者在命令行中,使用mysqld --ft-min-word-len=2
而不是mysql
3 - 编辑您的配置文件(例如:/etc/mysql/my.cnf
),在[mysqld]
部分之后插入
[mysqld]
ft-min-word-len = 2