Hi,
You need to reset your password in the database.
Assuming you have the password for your mysql admin user (otherwise you
will need to reset it). You will need to do the following:
Connect to your mysql (please change user/password accordingly):
#mysql -uadmin -pyourpassword
once you are in, you will need to see the databases:
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| glpi |
| mysql |
| performance_schema |
+--------------------+
mysql> use glpi;
Database changed
mysql>
Now you need to see what is your password before you change it:
mysql> select password from glpi_users where name="glpi";
+-----------------------------------------------------+
| password |
+-----------------------------------------------------+
| fe08995e22fe4d98503a92fd6024bf7b |
+-----------------------------------------------------+
1 row in set (0.00 sec)
mysql>
Here I am assuming that the password is stored in the DB as an MD5
mysql> update glpi_users set password= MD5('Your_Password') where
name='glpi';
Check what we have done:
mysql> select password from glpi_users where name="glpi";
+----------------------------------+
| password |
+----------------------------------+
| 602361b61d6818197680784e1112e3ee |
+----------------------------------+
1 row in set (0.00 sec)
mysql>
Hope this healps.
Regards.
Athmane B
Sr Network Engineer
http://goo.gl/xGaTIV
On Wed, Mar 2, 2016 at 8:36 AM, <[email protected]> wrote:
> Kindly assist me on this: i want to uninstall glpi and reinstall again
> becaiuse i cant perform some tasks as i have locked myself out of critical
> admin rights.
>
> Kindly assist.
>
> Esther Mwangi
> Associate Systems Administrator
> GeoNet Communications Limited,
> Victoria Towers, 3rd Floor,
> P.O Box 49259-00100,
> Nairobi,Kenya,
> Email: [email protected],
> Mobile Number: 0715156011,
> Skype: emwangi7.
>
>
>
> _______________________________________________
> Glpi-user mailing list
> [email protected]
> https://mail.gna.org/listinfo/glpi-user
>
_______________________________________________
Glpi-user mailing list
[email protected]
https://mail.gna.org/listinfo/glpi-user