Problem migrate to new server with users auth

Hello,
I’m try migrate to new server:

Actually Server

PHP 7
Apache
MariaDB 5.5
Nextcloud V16
Centos 7

New Server

PHP 7
Apache
Mariadb 10.3
Nextcloud V16
Centos 8

I installed all service in the new server and finally a migrate the db (only nextcloud DB) from dump and migration is fine. The problem is with user auth, the login says “Wrong username or password.”

4ptpyCqA%253D","message":"Login failed: 'admin' (Remote IP: '192.168.x.x')","userAgent":"Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/80.0.3987.116 Safari\/537.

I check the password value into DB and this in both server is equal:

Actually Server

MariaDB [nextcloud]> select password from oc_users WHERE uid="admin"\G;
*************************** 1. row ***************************
password: 2|$argon2i$v=19$m=65536,t=4,p=1$QkNBVE0wWEhOWVhXay5OMg$xibeOEVb+8n81V1sMQd2PewrozBCqCxNVjTASeYXwy2
1 row in set (0.00 sec)

ERROR: No query specified

MariaDB [nextcloud]>

New Server

mysql> select password from oc_users WHERE uid="admin"\G;
*************************** 1. row ***************************
password: 2|$argon2i$v=19$m=65536,t=4,p=1$QkNBVE0wWEhOWVhXay5OMg$xibeOEVb+8n81V1sMQd2PewrozBCqCxNVjTASeYXwy2
1 row in set (0.01 sec)

ERROR:
No query specified

¿what worng?

Thanks.