Re: Inability to Connect django with MySQL database

2020-03-20 Thread Luis Zárate
This looks like your Mysql user can login without password in localhost (are you sure, your user has correct permissions?). Try to create a user with password and allow login from localhost, and change your django settings, also try to connect with your user with mysql client from localhost. El

Re: Inability to Connect django with MySQL database

2020-03-20 Thread Victor
What's the database variable in your settings.py file On Friday, March 20, 2020 at 2:54:05 PM UTC+1, Ifeanyi Chielo wrote: > > Hello, > I am new to Python django, I have been making efforts to connect a django > application to mysql without success. Bellow is the information that I got > PS C:\U

Inability to Connect django with MySQL database

2020-03-20 Thread Ifeanyi Chielo
Hello, I am new to Python django, I have been making efforts to connect a django application to mysql without success. Bellow is the information that I got PS C:\Users\IFEANYI CHIELO\divine> python manage.py migrate Traceback (most recent call last): File "C:\Users\IFEANYI CHIELO\AppData\Local

Re: Django with mysql

2019-08-23 Thread Amit Samanta
On Friday, August 23, 2019 at 8:25:47 PM UTC+5:30, Amit Samanta wrote: > Hi, > > > I am facing issue while downloading mysql client > Here i am using linux server and i do not have internet connection > Also downloaded all the packages from https://www.pypi.org > We have created user,password and

Re: Django with mysql

2019-08-23 Thread Ahlam Abdurahman
I downloaded the mysql client wheel for the version that I am using , then worked fine. But you will need internet. On 8/23/19, Khalifa Gueye wrote: > Hi, > With python 3.6, you have To install mysqlclient 1.3.14. I try with others > version of mysqlclient but no result > > Le ven. 23 août 2019 à

Re: Django with mysql

2019-08-23 Thread Khalifa Gueye
Hi, With python 3.6, you have To install mysqlclient 1.3.14. I try with others version of mysqlclient but no result Le ven. 23 août 2019 à 14:55, Amit Samanta a écrit : > Hi, > > I am facing issue while downloading *mysql client* > Here i am using linux server and i do not have internet connecti

Re: Django with mysql

2019-08-23 Thread Gabo LaTo
Hi! If you don't have internet you will have to download the package from another computer where you have internet from the original repository ( https://pypi.org/project/mysqlclient/#files) and move them with a USB or whatever you want to the offline computer. And manually install the package.

Django with mysql

2019-08-23 Thread Amit Samanta
Hi, I am facing issue while downloading *mysql client* Here i am using linux server and i do not have internet connection Also downloaded all the packages from *https://www.pypi.org* We have created user,password and database for django in a different mysql server 5.6 Things i have done: First o

Re: Connect DJANGO with mysql

2019-01-11 Thread NAveeN Kumar Reddy
""" Django settings for djangoblog project. Generated by 'django-admin startproject' using Django 2.0.6. For more information on this file, see https://docs.djangoproject.com/en/2.0/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/2.0/ref/set

Re: Connect DJANGO with mysql

2019-01-11 Thread Kasper Laudrup
://www.digitalocean.com/community/tutorials/how-to-create-a-django-app-and-connect-it-to-a-database You can probably skip most of it, but at least it seems to be pretty detailed when it comes to using Django with MySQL. Kind regards, Kasper Laudrup -- You received this message because you are subscribed

Connect DJANGO with mysql

2019-01-11 Thread ruk91
I have developed a react front-end and it has been connected t the DJANGO REST Framework. Now I need to use MySQL for data retrieving. Can anyone guide me to that? Or just send me clear documentation or example. -- You received this message because you are subscribed to the Google Groups "Djan

Re: Django with MySQL DB for multitenancy

2016-12-19 Thread Avraham Serour
You are right, you may do the routing with nginx but will you have many isntances of django this way. You are also right that you should need to create a database router yourself taking in account whatever is needed to decide which database to use. You could for example use the domain from the req

Re: Django with MySQL DB for multitenancy

2016-12-18 Thread Antonis Christofides
Hi, I'm not the expert on that, but since no-one else is replying I'll throw my ideas anyway. One solution that does get rid of the docker containers but doesn't otherwise achieve very much is to continue routing from nginx. For one client nginx can be connecting to the :8001 backend, for another

Re: Django with MySQL DB for multitenancy

2016-12-16 Thread Peter Edache
I basically want to get rid of all the docker containers for each client, and just have a single application with many client (as the tenant) and mysql databases for each tenant. Just like the way django_tenant_schemas is wor

Re: Django with MySQL DB for multitenancy

2016-12-10 Thread Antonis Christofides
Hi, I don't understand what the problem is. You have a setup that works. What exactly do you want? You want to run many distinct instances of the application on the same server? And you want to get rid of docker? Antonis Christofides http://djangodeployment.com On 2016-12-09 17:13, Peter Edache

Django with MySQL DB for multitenancy

2016-12-09 Thread Peter Edache
Hello guys, we are currently looking for a way to migrate our previous django application to a full multi-tenant application, currently the way we are handling our client is by giving each client a docker container and using nginx to do the routing, through sub-domain mapping. But after resea

PyScripter and Django with MySQL in wamp

2013-03-30 Thread Sanjay Maurya
Hello Everyone, I new to Django. I'm using portable PyScripter 2.4.1.0 (Python 3.2.1) for learning Python. Recently I downloaded Django 1.5. With help of tutorials, I could install Django on this portable PyScripter. Currently I'm able to create projects and apps in the Django. However I'm not

Re: OPTIMISING OVERHEAD IN DJANGO WITH MYSQL DATABASE

2011-03-30 Thread Brian Neal
On Mar 30, 9:36 am, Dipo Elegbede wrote: > Hi all, > > I have a django application that uses mysql database. > > Everything works just fine except that I noticed some queries do spend a lot > of time to load. > > I have about 15,000 checklists the system would have to browse through to > render my

Re: OPTIMISING OVERHEAD IN DJANGO WITH MYSQL DATABASE

2011-03-30 Thread Shawn Milochik
All-caps hurts my eyes. Did not read. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. F

OPTIMISING OVERHEAD IN DJANGO WITH MYSQL DATABASE

2011-03-30 Thread Dipo Elegbede
Hi all, I have a django application that uses mysql database. Everything works just fine except that I noticed some queries do spend a lot of time to load. I have about 15,000 checklists the system would have to browse through to render my dashboard, which indicates which checklists is totally c

Django with MySQL Connector/Python?

2010-05-11 Thread Continuation
Has anyone made Django work with myconnpy? I've checked out http://github.com/rtyler/connector-django-mysql but the author said it's very outdated and not supported. If you've managed to make Django work with myconnpy, please share your experience. Thanks. -- You received this message because

Re: Deploying django with mysql cluster?

2007-11-21 Thread James Bennett
On 11/21/07, Richard Coleman <[EMAIL PROTECTED]> wrote: > Does anyone have experience with using django and mysql cluster? Do we > need to modify django to handle this? Any words of wisdom? I haven't actually done it myself, but as far as I know it's a matter of: 1. Don't use syncdb to create

Deploying django with mysql cluster?

2007-11-21 Thread Richard Coleman
We have been developing our django app using standard mysql. But we plan to eventually migrate to a mysql cluster (engine is NDB). Does anyone have experience with using django and mysql cluster? Do we need to modify django to handle this? Any words of wisdom? Thanks for the help. Richard