Create the user normally via
http://path/to/mantis/manage_user_create_page.php
(using an existing admin account)Open a command prompt and log into MySQL (
mysql -u root -p
)use bugtracker;
(where bugtracker is the name of the mantis bd; default = bugtracker)update mantis_user_table set password=md5('password') where username='username';
The whole cmd exchange looks like this:
C:\Program Files\MySQL\MySQL Server 4.1\bin>mysql -u root -p
Enter password:*********
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7 to server version: 4.1.21-community-ntType 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use bugtracker;
Database changedmysql> update mantis_user_table set password=md5('password') where username='username';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
'기록용' 카테고리의 다른 글
삼성SSD 850PRO 256GB 성능 (0) | 2016.02.05 |
---|---|
노트북 m.2 SSD 속도가 이상하다 (0) | 2015.11.27 |
FX8120 cpu-z (0) | 2015.10.30 |
MSSQL SERVER TCPIP 접속 안될때 설정하는 방법 (0) | 2015.06.12 |
기가인터넷 개통 - LG 유플러스 광기가 (0) | 2015.05.13 |