Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

wordpress bitnami my page colapse database

I am not a programer neither work full time in this i make a page for a client and try to change the email from [email protected] to a personal trying different methods the last one i sue was trying to use the wp_mail_smtp plugin and then the page says database error and i have 1222 lines of error and in the front page with te same problem of table don't appear, the page is mangooglamping.com and in there shows some problems too, i do not know how to restart the database and i am using the ssh of google cloud because i have everything online and in the tutorials i follow they put all in the web and do not explain how to download the page to local mac

question from:https://stackoverflow.com/questions/65831548/wordpress-bitnami-my-page-colapse-database

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Bitnami engineer here, you can easily modify the email address of the user by running these commands in the database

  • Obtain the id of the user
mysql -u root -p bitnami_wordpress -e "SELECT * FROM wp_users;"
  • Update the email address
mysql -u root -h DATABASEHOST -p bitnami_wordpress -e "UPDATE wp_users SET user_email='NEW-EMAIL' WHERE ID='ADMIN-ID';"

You can learn more about how to do this in our documentation

https://docs.bitnami.com/aws/apps/wordpress/administration/reset-wp-admin-email-address/

i do not know how to restart the database

Simply run

sudo /opt/bitnami/ctlscript.sh restart mysql

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...