воскресенье, 29 июня 2008 г.

Предварительная настройка MySQL - подготовка к работе в openSuSe Linux

Обычно после установки mysql через Yast в OpenSuse, до непосредственного администрирования через графические утилиты, необходимо совершить ряд телодвижений в консоле (так нелюбимой многими), тут уж ничего не поделаешь.

Итак,

  1. Запускаем консоль.
  2. Набираем su и вводим пароль администратора
    genmed@linux-8161:~> su
    Пароль:
  3. Затем набираем уже в сеансе администратора: /etc/init.d/mysql start
    linux-8161:/home/genmed # /etc/init.d/mysql start
    Updating MySQL privilege database...
    Looking for 'mysql' in: /usr/bin/mysql
    Looking for 'mysqlcheck' in: /usr/bin/mysqlcheck
    Running 'mysqlcheck'...
    mysql.columns_priv OK
    mysql.db OK
    mysql.func OK
    mysql.help_category OK
    mysql.help_keyword OK
    mysql.help_relation OK
    mysql.help_topic OK
    mysql.host OK
    mysql.proc OK
    mysql.procs_priv OK
    mysql.tables_priv OK
    mysql.time_zone OK
    mysql.time_zone_leap_second OK
    mysql.time_zone_name OK
    mysql.time_zone_transition OK
    mysql.time_zone_transition_type OK
    mysql.user OK
    Running 'mysql_fix_privilege_tables'...
    OK
    Starting service MySQL

  4. Если всё хорошо, то переходим к конфигурированию mysql, для этого набираем: mysql_secure_installation
  5. На первом шаге жмем Enter и придумываем пароль админа mysql, который будет использоваться для авторизации пользователя root при обращении к БД:
    linux-8161:/home/genmed # mysql_secure_installation


    NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
    SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!


    In order to log into MySQL to secure it, we'll need the current
    password for the root user. If you've just installed MySQL, and
    you haven't set the root password yet, the password will be blank,
    so you should just press enter here.

    Enter current password for root (enter for none):
    OK, successfully used password, moving on...

    Setting the root password ensures that nobody can log into the MySQL
    root user without the proper authorisation.

    Set root password? [Y/n] y
    New password:
    Re-enter new password:
    Password updated successfully!
    Reloading privilege tables..
    ... Success!

  6. Удаляем анонимного пользовател. По умолчанию, анонимуса оставляют.
    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? [Y/n] y
    ... Success!
  7. Теперь разрешаем удаленное управление БД, а не только с данного компьютера. Иногда это полезно, чтобы рулить рабочей БД из дома. По умочнанию, рекомендуется не давать такой доступ.
    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? [Y/n] n
    ... skipping.
  8. Дальше нам предлагают удалить тестовую базу, можем отказаться, пусть будет. По умолчанию, рекомендуют удалить.
    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? [Y/n] n
    ... skipping.
  9. Соглашаемся перезагрузить таблицу превилегий, чтобы изменния вступили в силу немедленно.
    Reloading the privilege tables will ensure that all changes made so far
    will take effect immediately.

    Reload privilege tables now? [Y/n] y
    ... Success!
  10. Читаем, что настройка завершенна.
    Cleaning up...

    All done! If you've completed all of the above steps, your MySQL
    installation should now be secure.

    Thanks for using MySQL!
  11. Ну вот и всё, теперь можно запустить mysql-administrator (если он установлен) и рулить mysql как душе угодно.


Комментариев нет: