Okay...
I got this error, so I thought, fine, I'll change the max_allowed_pac ket variable.
So, I went to the documentation, and found this
http://dev.mysql.com/doc/refman/5.0/en/packet-too-large.html
But, the command it gives you for changing the packet size variable doesn't work.
This command:
gives me the "command not found" error.
So, I figured I would find the file (/etc/init.d) and go like this:
But that just gives me the "usage ./mysqld {star|stop|stat us|etc}" error.
But if I do this:
It won't take in the argument for max_allowed_pac ket, because I can spell the variable wrong and it doesn't give me an error.
This is getting pretty frustrating. Anyone know how I can change the server variable "max_allowed_pa cket"?
I got this error, so I thought, fine, I'll change the max_allowed_pac ket variable.
So, I went to the documentation, and found this
http://dev.mysql.com/doc/refman/5.0/en/packet-too-large.html
But, the command it gives you for changing the packet size variable doesn't work.
This command:
Code:
mysqld --max_allowed_packet=32M
So, I figured I would find the file (/etc/init.d) and go like this:
Code:
./mysqld --max_allowed_packet=32M
But if I do this:
Code:
./mysqld start --max_allowed_packet=32M
This is getting pretty frustrating. Anyone know how I can change the server variable "max_allowed_pa cket"?
Comment