Shell way: Adding new user(s) to MySQL Databases.

This small tip shows how to add new users to a MySQL system and keep their databases seperate from each other.

If you have a server of your own it makes a lot of sense to replicate this setup – for each database application you wish to use create a specific database to hold its data and create a dedicated user to access it.

“Shell way: Adding new user(s) to MySQL Databases.”Continue reading

ERRORS REPORTED: mysqldump: Got error: 1142: SELECT,LOCK TABL command denied to user ‘root’@’localhost’ for table ‘cond_instances’ when using LOCK TABL

  • Add –skip-add-locks(–skip-lock-tables) to your mysqldump command
  • For automysqlbackup on Debian:
    Edit the automysqlbackup executable.
    Modify the function dbdump.
    Add the –skip-lock-tables.
    “ERRORS REPORTED: mysqldump: Got error: 1142: SELECT,LOCK TABL command denied to user ‘root’@’localhost’ for table ‘cond_instances’ when using LOCK TABL”Continue reading

Redmine: Сброс пароля администратора в базе данных / Redmine: reset the administrator password in the database

Если потерялся пароль администратора от системы управления проектами Redmine. То есть возможность его сбросить через базу данных.

Т.к. у меня Redmine работает на базе данных mysql, то и процедуру буду описывать для нее. Для других баз данных процедура аналогичная, но со спецификой присущей каждой базе.
Все пользователи Redmine хранятся в базе данных в таблице users. Пароль формируется следующим принципом SHA1(SHA1+соль).

“Redmine: Сброс пароля администратора в базе данных / Redmine: reset the administrator password in the database”Continue reading

Scroll to top