mailcow-dockerized-docs/docs/debug-reset_pw.md

65 Zeilen
1,8 KiB
Markdown

## mailcow Admin Account
2017-05-06 18:24:40 +02:00
Reset mailcow admin to `admin:moohoo`:
```
cd mailcow_path
bash mailcow-reset-admin.sh
```
2017-05-06 19:09:57 +02:00
## Reset MySQL Passwords
2017-05-06 18:24:40 +02:00
2017-05-06 19:09:57 +02:00
Stop the stack by running `docker-compose stop`.
When the containers came to a stop, run this command:
```
docker-compose run --rm --entrypoint '/bin/sh -c "gosu mysql mysqld --skip-grant-tables & sleep 10 && mysql -hlocalhost -uroot && exit 0"' mysql-mailcow
```
### 1\. Find database name
```
2017-05-06 22:32:10 +02:00
# source mailcow.conf
# docker-compose exec mysql-mailcow mysql -u${DBUSER} -p${DBPASS} ${DBNAME}
2017-05-06 19:09:57 +02:00
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mailcow_database | <=====
| mysql |
| performance_schema |
+--------------------+
4 rows in set (0.00 sec)
```
### 2\. Reset one or more users
Both "password" and "authentication_string" exist. Currently "password" is used, but better set both.
```
MariaDB [(none)]> SELECT user FROM mysql.user;
+--------------+
| user |
+--------------+
| mailcow_user | <=====
| root |
+--------------+
2 rows in set (0.00 sec)
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> UPDATE mysql.user SET authentication_string = PASSWORD('gotr00t'), password = PASSWORD('gotr00t') WHERE User = 'root' AND Host = '%';
MariaDB [(none)]> UPDATE mysql.user SET authentication_string = PASSWORD('mookuh'), password = PASSWORD('mookuh') WHERE User = 'mailcow' AND Host = '%';
MariaDB [(none)]> FLUSH PRIVILEGES;
```
2017-05-06 22:32:10 +02:00
## Remove Two-Factor Authentication
2017-05-09 17:54:50 +02:00
This works similar to resetting a MySQL password, now we do it from the host without connecting to the MySQL CLI:
2017-05-06 22:32:10 +02:00
```
source mailcow.conf
docker-compose exec mysql-mailcow mysql -u${DBUSER} -p${DBPASS} ${DBNAME} -e "DELETE FROM tfa WHERE username='YOUR_USERNAME';"
2017-05-06 22:32:10 +02:00
```