Hello, I asked this question in stack overflow, but haven't gotten any 
replies although it had 40 views.  I rephrased the question as simple as I 
possibly could.  I deployed an app on google app engine.  This is my 
requirement.  A user comes to the url in app spot: 
project_id.appspot.com/search_form, and types his information into the 
input boxes i created using html files.  Once this information is entered, 
a query occurs on google cloud sql that would return the required info. 
 The required info is posted into a new url: ... /search/  In my case, for 
example, the required information,  lets say is historical product demand. 
 I created python functions that successfully query the required info using 
a Django web framework.  The functions are stored in views.py.  One 
function is get_cust_info(), that takes the input given by the user when he 
enters to my website.  The error I see occurring after deploying my app is: 



OperationalError at /search/

    (20033), "Can't connect to MySQL server on 127.0.0.1 (timed out))

    Request Method:  GET
    Request URL: 
http://scovilleapp.appspot.com/search/?fname=james&mname=g&lname=stahl&street_num=1045&street_name=beck&street_type=rd&state=OH&zip=48277

    Django Version: 2.0.3
    Exception Type: OperationalError
    Exception Location: /env/lib/python3.5/site-packages/pymysql/connections.py 
in connect, line 967
    Python Path: 
    ['/home/vmagent/app',
     '/env/bin',
     '/env/lib/python35.zip',
     '/env/lib/python3.5',
     '/env/lib/python3.5/plat-linux',
     '/env/lib/python3.5/lib-dynload',
     '/opt/python3.5/lib/python3.5',
     '/opt/python3.5/lib/python3.5/plat-linux',
     '/env/lib/python3.5/site-packages']
    
    HTTP_ACCEPT 
    'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
    HTTP_ACCEPT_ENCODING 
    'br, gzip, deflate'
    HTTP_ACCEPT_LANGUAGE 
    'en-us'
    HTTP_HOST 
    'scovilleapp.appspot.com'
    HTTP_USER_AGENT 
      ('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/604.5.6 
      (KHTML, ''like Gecko) Version/11.0.3 Safari/604.5.6')
    HTTP_VIA 
    '1.1 google'
    HTTP_X_APPENGINE_CITY 
    'mount laurel'
    HTTP_X_APPENGINE_CITYLATLONG 
    '39.934002,-74.890999'
    HTTP_X_APPENGINE_COUNTRY 
    'US'
    HTTP_X_APPENGINE_REGION 
    'nj'
    HTTP_X_CLOUD_TRACE_CONTEXT 
    '9b87c05701b0b57a935ad234a137d9b3/6687249234366022806'
    HTTP_X_FORWARDED_FOR 
    '50.254.95.49, 172.217.3.116'
    HTTP_X_FORWARDED_PROTO 
    'https'
    PATH_INFO 
    '/search/'
    QUERY_STRING
    
'fname=james&mname=g&lname=stahl&street_num=1045&street_name=beck&street_type=rd&state=OH&zip=48277'
    RAW_URI 
    '/search/?

fname=james&mname=g&lname=stahl&street_num=1045&street_name=beck&street_typ 
   e=rd&state=OH&zip=48277'
    REMOTE_ADDR 
    '172.17.0.3'
    REMOTE_PORT 
    '55440'
    REQUEST_METHOD 
    'GET'
    SCRIPT_NAME 
    ''
    SERVER_NAME 
    '0.0.0.0'
    SERVER_PORT 
    '8080'
    SERVER_PROTOCOL 
    'HTTP/1.1'
    SERVER_SOFTWARE 
    'gunicorn/19.6.0'
      gunicorn.socket 
       <socket.socket fd=10, family=AddressFamily.AF_INET 
type=SocketKind.SOCK_STREAM, proto=0, laddr=('172.17.0.6', 8080), raddr= 
('172.17.0.3', 55440)>
    wsgi.errors 
    <gunicorn.http.wsgi.WSGIErrorsWrapper object at 0x7f51b0bbfcf8>
    wsgi.file_wrapper 
    ''
    wsgi.input 
    <gunicorn.http.body.Body object at 0x7f51b0bbfda0>
    wsgi.multiprocess 
    False
    wsgi.multithread 
    False
    wsgi.run_once 
    False
    wsgi.url_scheme 
    'http'
    wsgi.version 
    (1, 0)

To repeat, I deployed an app successfully following this link: 

    https://cloud.google.com/python/django/flexible-environment

After deployment, I am having trouble connecting to the cloud sql.  In my 
ipython notebook, before I deploy my app, I can use the following statement 
to connect to my cloud instance using google sdk: 

    cloud_sql_proxy.exe -instances="scoviileapp:us-east1:retail18"=tcp:3306

After entering above, i get a notification in my google cloud shell 

    "listening on 127.0.0.1:3306 for scoviileapp:us-east1:retail18 
    ready for new connections"

I then use my ipython notebook to test connection (password and user 
changed for example purposes):

    host = '127.0.0.1' also changed to 35.196.etc
    user = 'me'
    password = 'pwd'

    conn1 = pymysql.connect(host=host,
                             user=user,
                             password=password,
                             db='retail_data')
    cur1 = conn1.cursor()



Hence, I am able to connect to google cloud sql.  I ran python manage.py 
run server to make sure it works on my end, and it does.  Then i typed:

    gcloud app deploy

it successfully deploys the app.  But upon, going to my app, and typing in 
names into the input field, it takes me to a new url and i get the error


Im using windows, python 3, django framework.  Is gunicorn even needed?  I 
want to be able to query the databases in google cloud databases.  

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/83591ec2-879b-4bd5-855d-e764a92e55d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • [google-appengin... Rajan Subramanian
    • [google-app... 'Katayoon (Cloud Platform Support)' via Google App Engine

Reply via email to