установка mysql пароль root в CentOS 7

Использовать less -FX. От man less:

   -F or --quit-if-one-screen
          Causes less to automatically exit if the entire file can be dis-
          played on the first screen.

   -X or --no-init
          Disables sending the termcap initialization and deinitialization
          strings  to  the  terminal.   This is sometimes desirable if the
          deinitialization string does something unnecessary, like  clear-
          ing the screen.
5
26.11.2014, 01:36
4 ответа

Иногда можно ударить конфигурацию. По сути, легче запуститься, как будто пакет никогда не устанавливался. В вашем случае мы смотрим на MySQL.

  1. Мы используем Конфетку для MySQL Remove, как так:
    конфетка удаляет mysql mysql-сервер
  2. удаленный MySQL With, мы можем безопасно скопировать конфигурацию:
    /var/lib/mysql/var/lib/mysql_old_backup
    мВ, Если вы удалили бы его, проблема:
    комната - стабиловольт/var/lib/mysql
  3. Теперь мы можем безопасно переустановить MySQL, с помощью конфигурации по умолчанию, которая включена в пакет из репозитория MySQL Official (нам нужно wget для выборки об/мин, который обновит repos):
    вкусный wget
  4. установки Теперь загружают и устанавливают репозиторий:
    wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm && об/мин-ivh mysql-community-release-el7-5.noarch.rpm
  5. Проверяет, что репозитории установлены:
    ls-1/etc/yum.repos.d/mysql-community*
  6. Дают фактическую команду установки (Это заменит mysql-сервер в репозитории CentOS с официальным пакетом от восходящего MySQL):
    конфетка устанавливает mysql-сервер
  7. Использование сценарий, предоставленный для настройки пароля root, теперь, когда у нас есть новая установка снова: mysql_secure_installation
    , Если когда-нибудь необходимо устанавливать пароль после использования сценария, использует:
    mysql-u корень
  8. Теперь можно использовать стандартные команды от systemctl, часть systemd, чтобы Запустить и Остановить демона как так:
    systemctl запускают mysqld

Ссылки

  1. , Как к MySQL Remove Полностью от Системы Linux - CentOS
  2. , Как установить MySQL Server 5.6 на CentOS 7 / RHEL 7
4
27.01.2020, 20:32

Если вы можете попасть в MySQL при использовании команды:

mysql -u root

Тогда у вас уже есть доступ к MySQL, то вы либо не сможете установить пароль для пользователя "root" (скорее всего), либо можете установить пароль в конфигурационном файле MySQL, например, /etc/my.cnf.

Если Вы хотите сбросить пароль root для MySQL, то Вы должны быть в состоянии запустить:

$ mysql_secure_installation
2
27.01.2020, 20:32

Вероятно, это потому, что 'restart' не убивает MySQL, запущенный в режиме sos с помощью 'startsos' и порт 3306 (или где бы он ни был запущен) занят. После 4-го шага, пожалуйста, попробуйте следующее:

$ sudo service mysqld stop
$ ps -ef | grep mysql

Теперь, из вывода ps, если Вы не видите никаких mysql-процессов запущенных, то запустите MySQL с помощью команды, приведенной ниже. Если Вы видите, что запущен mysql процесс, то запустите MySQL после того, как убьете mysql процесс.

$ sudo service mysqld start
0
27.01.2020, 20:32

Для установки последней версии MySql 5.7 на RHEL/Centos 7. Есть несколько следующих шагов:

Шаг 1-: Добавьте указанный ниже репозиторий EPEL

$ sudo rpm -iUvh http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm

Шаг 2-: Установите MySql Server, используя нижеприведенный yum installer.

$ sudo yum install mysql-server 

Шаг 3-: Добавьте в системный Startup и запустите Mysql Server.

$ sudo systemctl enable mysqld
$ sudo systemctl start mysqld

Шаг 4-: Сбросьте пароль root сервера MySql.

sudo grep 'temporary password' /var/log/mysqld.log

Выведите что-то вроде:

10.744785Z 1 [Note] A temporary password is generated for root@localhost: o!5y,oJGALQa

Используйте вышеуказанный пароль в процессе сброса mysql_secure_installation.

$ sudo mysql_secure_installation
Securing the MySQL server deployment.

Enter password for user root: 
The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration
of the plugin.
Using existing password for root.

Estimated strength of the password: 100 
Change the password for root ? ((Press y|Y for Yes, any other key for No) : y

New password: 

Re-enter new password: 

Estimated strength of the password: 100 
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.


Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.


Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

All done!

Вы успешно сбросили корневой пароль сервера MySql.

Шаг 5-: Используйте следующую команду для проверки подключения или отсутствия подключения сервера mysql.

$ mysql -u root -p

Выход-:

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.7.12 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

См. мою статью: install-latest-mysql-5-7-rhelcentos-7

10
27.01.2020, 20:32

Теги

Похожие вопросы