2 réponses
- Le plus récent
- Le plus de votes
- La plupart des commentaires
2
- You need to SSH into the instance
- Run the following command to see the list of login users in the database. You must enter the MySQL root password. This password is located in the /home/bitnami/bitnami_application_password file:
mysql -u root -p bitnami_wordpress -e "SELECT * FROM wp_users;"
- Note the ID of the user that you want to reset the password for. Then, run the following command. Be sure to replace NEWPASSWORD with your desired password and ADMIN-ID with the user ID obtained in step 2:
mysql -u root -p bitnami_wordpress -e "UPDATE wp_users SET user_pass=MD5('NEWPASSWORD') WHERE ID='ADMIN-ID';"
0
Hi,
Thanks for using Lightsail. This guide may help you set up your WordPress instance correctly:
https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-quick-start-guide-wordpress
Contenus pertinents
- demandé il y a 2 ans
- demandé il y a 7 mois
- demandé il y a 2 ans
- AWS OFFICIELA mis à jour il y a 2 ans
- AWS OFFICIELA mis à jour il y a 7 mois
- AWS OFFICIELA mis à jour il y a un an
- AWS OFFICIELA mis à jour il y a 2 ans
Please accept the answer if it was useful for you