Generate new password with command:
mkpasswd -m sha512crypt -s
Connect to the database and update the value:
update virtual_users set password = 'yourpassword' where id=3;
Generate new password with command:
mkpasswd -m sha512crypt -s
Connect to the database and update the value:
update virtual_users set password = 'yourpassword' where id=3;
Recent Comments