В ubuntu 16 я хочу изменить пароль по умолчанию mysql (как и неделю) с помощью таких команд, как:
# mysql -uroot -p'WEEK_PASSWORD'
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3829
Server version: 5.7.31-0ubuntu0.16.04.1 (Ubuntu)
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
...
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'GOOD_PASSWORD';
ERROR 1396 (HY000): Operation ALTER USER failed for 'root'@'localhost'
mysql> exit
Bye
root@ubuntu-server:/var/www/html/app# lsb_release -d; uname -r; uname -i
Description: Ubuntu 16.04.4 LTS
4.4.0-186-generic
x86_64
apt-cache show mysql-server
Package: mysql-server
Architecture: all
Version: 5.7.31-0ubuntu0.16.04.1
Каким образом лучше обновить mysql пароль (у меня установлен phpmyadmin )?
Спасибо!