[/root/anaconda3] >>> PREFIX=/root/anaconda3 Unpacking payload ... concurrent.futures.process._RemoteTraceback: ''' Traceback (most recent call last): File "concurrent/futures/process.py", line 384, in wait_result_broken_or_wakeup File "multiprocessing/connection.py", line 256, in recv TypeError: __init__() missing 1 required positional argument: 'msg' '''
The above exception was the direct cause of the following exception:
Traceback (most recent call last): File "entry_point.py", line 69, in <module> File "concurrent/futures/process.py", line 559, in _chain_from_iterable_of_lists File "concurrent/futures/_base.py", line 608, in result_iterator File "concurrent/futures/_base.py", line 445, in result File "concurrent/futures/_base.py", line 390, in __get_result concurrent.futures.process.BrokenProcessPool: A process in the process pool was terminated abruptly while the future was running or pending. [2465] Failed to execute script entry_point
~$ mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 17 Server version: 10.3.29-MariaDB Source distribution
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> use mysql Database changed MariaDB [mysql]> update user set host = '%' where user = 'root' -> -> ; ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY' MariaDB [mysql]> update user set host = '%' where user = 'root'; ERROR 1062 (23000): Duplicate entry '%-root' for key 'PRIMARY' MariaDB [mysql]> select host,user from user; +-----------+------+ | host | user | +-----------+------+ | % | root | | 127.0.0.1 | root | | ::1 | root | +-----------+------+ 3 rows in set (0.000 sec)