Re: MySQL caching_sha2_password

2018-11-15 Thread Mamadou Harouna Diallo
Are install pymysql ? If aren't you need install it Le jeu. 15 nov. 2018 18:19, Ansh Srivastava a écrit : > Hi experts, I am tryin' to connect to MySQL database and the following > error flashed! > > return Database.connect(**conn_params) > File > "C:\Users\ansh\AppData\Local\Programs\Pyth

Re: MySQL caching_sha2_password

2018-11-15 Thread Ansh Srivastava
Yes @Jason I am swamped with all those googling but nothin' found there! [image: Mailtrack] Sender notified by Mailtrack

Re: MySQL caching_sha2_password

2018-11-15 Thread Jason
did you try googling the error? a simple google query returned a number of possible avenues of investigation > > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email t

MySQL caching_sha2_password

2018-11-15 Thread Ansh Srivastava
Hi experts, I am tryin' to connect to MySQL database and the following error flashed! return Database.connect(**conn_params) File "C:\Users\ansh\AppData\Local\Programs\Python\Python36\lib\site-packages\M ySQLdb\__init__.py", line 86, in Connect return Connection(*args, **kwargs) File "

Re: MySQL caching_sha2_password

2018-08-24 Thread Gagan Kalia
For me below solved the issue. The oracle MYSql connector was refusing to install. The installer was just disappearing and doing nothing. https://github.com/passbolt/passbolt_docker/issues/103 Command that worked: ALTER USER 'username'@'ip_address' IDENTIFIED WITH mysql_native_password BY 'p

Re: MySQL caching_sha2_password

2018-05-19 Thread Fidel Leon
You my want to check: https://stackoverflow.com/questions/50416391/caching-sha2-password-plugin-failing-on-windows Basically, you’d need to install Oracle MySQL’s official Python connector. Besides, you have posted a server database configuration, including an IP and a port that are 100% *reachab

MySQL caching_sha2_password

2018-05-18 Thread Kadir Guloglu
Hi I am connect to MySQL database and I am getting this exception Thanks for help DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'host': '78.135.79.26', 'database': 'otomabakdb', 'user': 'otomabakus', 'password': 'password1',