Set variable ft_min_word_len

2003-07-22 Thread Marek Lewczuk
On our Linux server we get this error:
030722 08:09:55  mysqld started
/usr/local/mysql/bin/mysqld: ERROR: unknown variable 'ft_min_word_len =
2' 
030722 08:09:55  mysqld ended [...]

It's strange becouse I can set this variable through my.ini on my
Windows. Anyone can help me solve this problem ?


 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Set variable ft_min_word_len

2003-07-22 Thread Paul DuBois
At 8:20 +0100 7/22/03, Marek Lewczuk wrote:
On our Linux server we get this error:
030722 08:09:55  mysqld started
/usr/local/mysql/bin/mysqld: ERROR: unknown variable 'ft_min_word_len =
2'
030722 08:09:55  mysqld ended [...]
It's strange becouse I can set this variable through my.ini on my
Windows. Anyone can help me solve this problem ?
What version is MySQL on your Linux box? Older than 4.0.x?



--
Paul DuBois, Senior Technical Writer
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
Are you MySQL certified?  http://www.mysql.com/certification/

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


RE: Set variable ft_min_word_len

2003-07-22 Thread Marek Lewczuk
 
 At 8:20 +0100 7/22/03, Marek Lewczuk wrote:
 On our Linux server we get this error:
 030722 08:09:55  mysqld started
 /usr/local/mysql/bin/mysqld: ERROR: unknown variable 
 'ft_min_word_len = 
 2' 030722 08:09:55  mysqld ended [...]
 
 It's strange becouse I can set this variable through my.ini on my 
 Windows. Anyone can help me solve this problem ?
 
 What version is MySQL on your Linux box? Older than 4.0.x?

First we were using 4.0.12, but today we have made an update to 4.0.13
- but on both versions it's not working.


 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Set variable ft_min_word_len

2003-07-22 Thread Sergei Golubchik
Hi!

On Jul 22, Marek Lewczuk wrote:
 On our Linux server we get this error:
 030722 08:09:55  mysqld started
 /usr/local/mysql/bin/mysqld: ERROR: unknown variable 'ft_min_word_len = 2' 
 030722 08:09:55  mysqld ended [...]

the correct syntax is WITHOUT quotes and WITHOUT spaces.

  --ft_min_word_len=2

or 

  -O ft_min_word_len=2  -- but -O is obsolete

but not

  -O 'ft_min_word_len = 2'
 
Regards,
Sergei

-- 
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /   Sergei Golubchik [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__  MySQL AB, Senior Software Developer
/_/  /_/\_, /___/\___\_\___/  Osnabrueck, Germany
   ___/  www.mysql.com

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



RE: Set variable ft_min_word_len

2003-07-22 Thread Marek Lewczuk
 the correct syntax is WITHOUT quotes and WITHOUT spaces.
 
   --ft_min_word_len=2
 
 or 
 
   -O ft_min_word_len=2  -- but -O is obsolete
 
 but not
 
   -O 'ft_min_word_len = 2'

But we want to set this variable in my.cnf, so the syntax shouldn't be
like this:
set-variable = ft_min_word_len=2

??


 

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Set variable ft_min_word_len

2003-07-22 Thread Sergei Golubchik
Hi!

On Jul 22, Marek Lewczuk wrote:
  the correct syntax is WITHOUT quotes and WITHOUT spaces.
  
--ft_min_word_len=2
  
  or 
  
-O ft_min_word_len=2  -- but -O is obsolete
  
  but not
  
-O 'ft_min_word_len = 2'
 
 But we want to set this variable in my.cnf, so the syntax shouldn't be
 like this:
 set-variable = ft_min_word_len=2

It could be - this syntax is still supported.
But preferred one is simlpy

ft_min_word_len=2

(or with spaces, they are allowed in my.cnf)

Regards,
Sergei

-- 
   __  ___ ___   __
  /  |/  /_ __/ __/ __ \/ /   Sergei Golubchik [EMAIL PROTECTED]
 / /|_/ / // /\ \/ /_/ / /__  MySQL AB, Senior Software Developer
/_/  /_/\_, /___/\___\_\___/  Osnabrueck, Germany
   ___/  www.mysql.com

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



RE: Set variable ft_min_word_len

2003-07-22 Thread Paul DuBois
At 9:25 +0100 7/22/03, Marek Lewczuk wrote:
  the correct syntax is WITHOUT quotes and WITHOUT spaces.
   --ft_min_word_len=2

 or

   -O ft_min_word_len=2  -- but -O is obsolete

 but not

   -O 'ft_min_word_len = 2'
But we want to set this variable in my.cnf, so the syntax shouldn't be
like this:
set-variable = ft_min_word_len=2
??
Yes, that should work.  Can you copy and paste your my.cnf file
here, or at leasts the [mysqld] group from it?  Thanks.  Maybe there
is something about the surrounding context that is odd.




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


--
Paul DuBois, Senior Technical Writer
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
Are you MySQL certified?  http://www.mysql.com/certification/

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]