Mysql ssl error and auto-increment not working
-
Hi,
I have a strange behaviour with mysql in a Lamp container.
Here is the backgroud:- I want to have this project https://partkeepr.org/ on my 2 servers
- I requires php <= 7.1
- I use lamp v1.4.0 https://git.cloudron.io/cloudron/lamp-app/-/tags/v1.4.0
On one of my server (cloudron v6.0.1) it works fine.
But on the other one (cloudron v6.2.8), I have many problems :- In the terminal, when I try to connect to mysql CLI, I've got the error
ERROR 2026 (HY000): SSL connection error: unknown error number
so I have to use phpmyadmin to make database manipulation, - When I insert a line in a table, the new id (an AUTOINCREMENT field) is correctly incremented, but in the
information_schema
fields, neithertable_rows
norauto_increment
etc... fields are modified. I have a trigger on before insert which needs theauto_increment
value.
I have never seen such a behaviour and don't really know what to do.
Does anyone has any idea?
-
-
@girish @msbt Thanks! This helped greatly.
But I still have my increment issue.
In the CLI, I can doANALYZE TABLE <my_table>
after an insert and it updates theinformation_schema
fields (TABLE_ROWS
,AUTO_INCREMENT
,...).
But when I insert again, nothing changes. I have to always make theANALYZE TABLE
to update the info.
Have you ever encounter this? -
-
@carbonbee don't think it matters but I will push an update to phpMyAdmin 5.1.0 - https://www.phpmyadmin.net/news/2021/2/24/phpmyadmin-510-released/