zhaoyongjie edited a comment on issue #11895: URL: https://github.com/apache/incubator-superset/issues/11895#issuecomment-738016588
hi @saqeria , according to your output, MySQL container startup instruction may be Incorrect, you expect to use port 3309 as an external port, while the MySQL container internal port is always 3306. try the following command to start MySQL container ``` $ docker run -p 3309:3306 -d <mysql-image-name> ``` Note that you have to stop the current MySQL container. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
