Monday 25 March 2024

Word Press Multisite on AWS instance cannot login with default password

 

Word Press Multisite on AWS instance cannot login with default password after setting a static IP ?

Try this

Login to the shell from AWS instance


cd  /opt/bitnami/wp-cli/bin 

sudo wp user list

you will see you admin user , example :

sudo wp user list

+----+------------+--------------+------------------+---------------------+---------------+

| ID | user_login | display_name | user_email       | user_registered     | roles         |

+----+------------+--------------+------------------+---------------------+---------------+

| 1  | user       | user         | user@example.com | 2024-03-22 10:38:41 | administrator |

+----+------------+--------------+------------------+---------------------+---------------+


update the password for the user ID using 

sudo wp user update 1 --user_pass=<newpasswordhere>

You should see : Success: Updated user 1.

Thats it, try logging in using the new password




No comments:

Post a Comment

Word Press Multisite on AWS instance cannot login with default password

  Word Press Multisite on AWS instance cannot login with default password after setting a static IP ? Try this Login to the shell from AWS i...