cedrozor / myrtille

A native HTML4 / HTML5 Remote Desktop Protocol and SSH client
https://www.myrtille.io
Apache License 2.0
1.78k stars 372 forks source link

Myrtille admin lost password? #352

Closed freitasm closed 1 year ago

freitasm commented 1 year ago

Hi folks

I have been running Myrtille for a while, currently on 2.92.0.

This week I tried to login to the Hosts Management and after entering the username and password (from a password manager), I get a "User not found".

Any ideas?

Cheers

cedrozor commented 1 year ago

Hi,

You can reset the admin account to its default value (admin/admin), by editing Myrtille.Services.exe.config:

  <!-- if you don't have a domain or don't want to use the enterprise mode (with group access restrictions), you can use the simplified (local admin) hosts management -->
  <!-- comment the lines below to disable it (automatically disabled if using the enterprise mode) -->
  <!-- the default password ("admin") is changed (and encrypted) upon first login; reset if needed -->
  <localAdmin>
    <add key="LocalAdminUser" value="admin" />
    <add key="LocalAdminPassword" value="admin" />
  </localAdmin>
freitasm commented 1 year ago

Thank you!