Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Reset the password of admin to admin with:
    ./next-termal --reset-password admin
  • Loading branch information
jimmysday committed Feb 18, 2024
1 parent 07864c6 commit d4aec84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/service/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func (cli Cli) ResetPassword(username string) error {
if err != nil {
return err
}
password := "next-terminal"
password := "admin"
passwd, err := utils.Encoder.Encode([]byte(password))
if err != nil {
return err
Expand Down

0 comments on commit d4aec84

Please sign in to comment.