You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The password of the MySQL account used for connecting to the server. The password value is optional. If not given, mysql prompts for one. If given, there must be no space between --password= or -p and the password following it.
This command causes an issue:
mysql -h $DBEndpoint -u $DBUser -p$DBPassword $DBName < a4lWordPress.sql
because the "-p$DBPassword " should be "-p $DBPassword " (need to have a blank space between the -p option and $DBPassword)
The text was updated successfully, but these errors were encountered: