So I'm having a problem: I exported my DB save for the PLUGINDATA table and imported it just fine. I've been having a problem reimporting the plugins themselves..
[root@randomserver zipp]# mysql --max_allowed_packet=1024M confluence < confluence.plugindata.sql
ERROR 1153 (08S01) at line 44: Got a packet bigger than 'max_allowed_packet' bytes
Any suggestions? The dump file itself is only 48M
-rw-r--r-- 1 zipp users 48M Aug 3 14:37 confluence.plugindata.sql
Hi Thomas,
Have you set max_allowed_packet on MySQL server side too? When you set --max_allowed_packet=1024M parameter that is for MySQL client only. To change it on server change the my.cnf or my.ini file under the mysqld section and set max_allowed_packet=100M
You can also run these commands in a mysql console connected to that same server:
set global net_buffer_length=1000000;
set global max_allowed_packet=1000000000;
I opened up two consoles and had already tried those set commands and ended up getting the same error. Only thing I haven't done yet is trying to chunk the file? It's a 48M file so I see no reason it can't buffer this thing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Got it. Had to resize max_allowed_packet in my.cnf and restart mysqld.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Want to leave your mark on Confluence? One winner will have their whiteboard design added into Confluence for all users to access! This is your chance to showcase your creativity, help others, and gain recognition in the Confluence community.
Share your template today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.