Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

ऐप इंजन से क्लाउड SQL MySQL डेटाबेस से कैसे कनेक्ट करें?

एप्लिकेशन इंजन (फ्लेक्स और मानक) से टीसीपी और यूनिक्स डोमेन सॉकेट्स 2020 का उपयोग करके क्लाउड एसक्यूएल से कनेक्ट करना

1.नया प्रोजेक्ट बनाएं

gcloud projects create con-ae-to-sql
gcloud config set project con-ae-to-sql
gcloud projects describe con-ae-to-sql

2. अपने प्रोजेक्ट पर बिलिंग सक्षम करें:https://cloud.google .com/billing/docs/how-to/modify-project

3. ऐप इंजन को सक्षम करने और संबंधित एप्लिकेशन संसाधन बनाने के लिए निम्न gcloud कमांड चलाएँ

gcloud app create -region europe-west2
gcloud app describe
#Remember the location of you App Engine aplication, because we will create all our resources on the same region

4. कंप्यूट प्रोजेक्ट-जानकारी मेटाडेटा सेट करें:

 gcloud compute project-info describe --project con-ae-to-sql
 #Enable the Api, and you can check that default-region,google-compute-default-zone are not set. Set the metadata.
 gcloud compute project-info add-metadata --metadata google-compute-default-region=europe-west2,google-compute-default-zone=europe-west2-b

5.सेवा नेटवर्किंग एपीआई सक्षम करें:

gcloud services list --available
gcloud services enable servicenetworking.googleapis.com

6. 2 क्लाउड एसक्यूएल इंस्टेंस बनाएं, (एक आंतरिक आईपी के साथ और दूसरा सार्वजनिक आईपी के साथ)- https://cloud.google.com/sql/docs/mysql/create-instance :

6.a बाहरी आईपी के साथ क्लाउड एसक्यूएल इंस्टेंस:

#Create the sql instance in the same region as App Engine Application
gcloud --project=con-ae-to-sql beta sql instances create database-external --region=europe-west2
#Set the password for the "[email protected]%" MySQL user:
gcloud sql users set-password root --host=% --instance database-external --password root 
#Create a user
gcloud sql users create user_name --host=% --instance=database-external  --password=user_password
#Create a database
gcloud sql databases create user_database --instance=database-external
gcloud sql databases list --instance=database-external

6.बी आंतरिक आईपी के साथ क्लाउड एसक्यूएल इंस्टेंस:

i.#Create a private connection to Google so that the VM instances in the default VPC network can use private services access to reach Google services that support it.

gcloud compute addresses create google-managed-services-my-network     --global  --purpose=VPC_PEERING --prefix-length=16  --description="peering range for Google"  --network=default --project=con-ae-to-sql
gcloud services vpc-peerings connect --service=servicenetworking.googleapis.com --ranges=google-managed-services-my-network  --network=default  --project=con-ae-to-sql
#Check whether the operation was successful.
gcloud services vpc-peerings operations describe     --name=operations/pssn.dacc3510-ebc6-40bd-a07b-8c79c1f4fa9a
#Listing private connections
gcloud services vpc-peerings list --network=default --project=con-ae-to-sql
 
ii.Create the instance:

gcloud --project=con-ae-to-sql beta sql instances create database-ipinternal --network=default --no-assign-ip  --region=europe-west2
#Set the password for the "[email protected]%" MySQL user:
gcloud sql users set-password root --host=% --instance database-ipinternal --password root
#Create a user
gcloud sql users create user_name --host=% --instance=database-ipinternal  --password=user_password
#Create a database
gcloud sql databases create user_database --instance=database-ipinternal
gcloud sql databases list --instance=database-ipinternal 


gcloud sql instances list
gcloud sql instances describe database-external
gcloud sql instances describe database-ipinternal
#Remember the instances connectionName

ठीक है, तो हमारे पास दो mysql उदाहरण हैं, हम ऐप इंजन मानक से सर्वरलेस एक्सेस और टीसीपी का उपयोग करके डेटाबेस-आईपीइंटरनल से कनेक्ट करेंगे, ऐप इंजन मानक से डेटाबेस-बाहरी यूनिक्स डोमेन सॉकेट का उपयोग करके, ऐप इंजन फ्लेक्स से डेटाबेस-आईपीइंटरनल तक टीसीपी का उपयोग करके, और यूनिक्स डोमेन सॉकेट का उपयोग करके ऐप इंजन फ्लेक्स से डेटाबेस-बाहरी तक।

7. Cloud SQL Admin API को सक्षम करें

gcloud services list --available
gcloud services enable sqladmin.googleapis.com

8. इस समय ऐप इंजन मानक वातावरण टीसीपी का उपयोग करके क्लाउड एसक्यूएल इंस्टेंस से कनेक्ट करने का समर्थन नहीं करता है। जब तक आपने सर्वर रहित वीपीसी एक्सेस को कॉन्फ़िगर नहीं किया है, तब तक आपके कोड को आईपी पते (जैसे 127.0.0.1 या 172.17.0.1) का उपयोग करके इंस्टेंस तक पहुंचने का प्रयास नहीं करना चाहिए। तो चलिए सर्वर रहित वीपीसी एक्सेस को कॉन्फ़िगर करते हैं।

8.a सुनिश्चित करें कि आपके प्रोजेक्ट के लिए सर्वर रहित VPC एक्सेस API सक्षम है:

gcloud services enable vpcaccess.googleapis.com

8.b एक कनेक्टर बनाएं:

gcloud compute networks vpc-access connectors create serverless-connector --network default --region europe-west2 --range 10.10.0.0/28
#Verify that your connector is in the READY state before using it
gcloud compute networks vpc-access connectors describe serverless-connector --region europe-west2

9.App Engine आपके कनेक्शन को Cloud SQL से अधिकृत करने के लिए एक सेवा खाते का उपयोग करता है। सफलतापूर्वक कनेक्ट होने के लिए इस सेवा खाते में सही IAM अनुमतियाँ होनी चाहिए। Unless otherwise configured, the default service account is in the format [email protected] एनटी.कॉम. सुनिश्चित करें कि आपकी सेवा के लिए सेवा खाते में निम्नलिखित आईएएम भूमिकाएं हैं:क्लाउड एसक्यूएल क्लाइंट, और आंतरिक आईपी पर ऐप इंजन मानक से क्लाउड एसक्यूएल से कनेक्ट करने के लिए हमें कंप्यूट नेटवर्क उपयोगकर्ता की भूमिका भी चाहिए।

gcloud iam service-accounts list
gcloud projects add-iam-policy-binding con-ae-to-sql --member serviceAccount:[email protected] --role roles/cloudsql.client
gcloud projects add-iam-policy-binding con-ae-to-sql --member serviceAccount:[email protected] --role roles/compute.networkUser

अब जबकि मैंने सेट अप कॉन्फ़िगर कर लिया है

<मजबूत>1. टीसीपी और यूनिक्स डोमेनिन सॉकेट का उपयोग करके ऐप इंजन स्टैंडर्ड से क्लाउड एसक्यूएल से कनेक्ट करें

cd app-engine-standard/
ls
#app.yaml  main.py requirements.txt

cat requirements.txt
Flask==1.1.1
sqlalchemy
pymysql
uwsgi==2.0.18

cat app.yaml
runtime: python37
entrypoint: uwsgi --http-socket :8080 --wsgi-file main.py --callable app --master --processes 1 --threads 2
vpc_access_connector:
    name: "projects/con-ae-to-sql/locations/europe-west2/connectors/serverless-connector" 



cat main.py

from flask import Flask
import pymysql
from sqlalchemy import create_engine

# If `entrypoint` is not defined in app.yaml, App Engine will look for an app
# called `app` in `main.py`.
app = Flask(__name__)

@app.route('/')
def hello():
    engine_tcp = create_engine('mysql+pymysql://user_name:[email protected]:3306')
    existing_databases_tcp = engine_tcp.execute("SHOW DATABASES;")
    con_tcp = "Connecting from APP Engine Standard to Cloud SQL using TCP: databases => " + str([d[0] for d in existing_databases_tcp]).strip('[]') + "\n"
    engine_unix_socket = create_engine('mysql+pymysql://user_name:[email protected]/user_database?unix_socket=/cloudsql/con-ae-to-sql:europe-west2:database-external')
    existing_databases_unix_socket = engine_unix_socket.execute("SHOW DATABASES;")
    con_unix_socket = "Connecting from APP Engine Standard to Cloud SQL using Unix Sockets: tables in sys database:  => " + str([d[0] for d in existing_databases_unix_socket]).strip('[]') + "\n"
    return con_tcp + con_unix_socket



gcloud app deploy -q
gcloud app browse
#Go to https://con-ae-to-sql.appspot.com
#Connecting from APP Engine Standard to Cloud SQL using TCP: databases => 'information_schema', 'user_database', 'mysql', 'performance_schema', 'sys' Connecting from APP Engine Standard to Cloud SQL using Unix Sockets: tables in sys database: => 'information_schema', 'user_database', 'mysql', 'performance_schema', 'sys'

सफलता!

2. टीसीपी और यूनिक्स डोमेनिन सॉकेट का उपयोग करके ऐप इंजन फ्लेक्स से क्लाउड एसक्यूएल से कनेक्ट करें

cd app-engine-flex/
ls
#app.yaml  main.py requirements.txt

cat requirements.txt
Flask==1.1.1
gunicorn==19.9.0
sqlalchemy
pymysql

cat app.yaml
runtime: python
env: flex
entrypoint: gunicorn -b :$PORT main:app
runtime_config:
  python_version: 3
#Using TCP and unix sockets domain
beta_settings:
 cloud_sql_instances: con-ae-to-sql:europe-west2:database-ipinternal=tcp:3306,con-ae-to-sql:europe-west2:database-external
manual_scaling:
  instances: 1
resources:
  cpu: 1
  memory_gb: 0.5
  disk_size_gb: 10


cat main.py

from flask import Flask
import pymysql
from sqlalchemy import create_engine

app = Flask(__name__)

@app.route('/')
def hello():
    engine_tcp = create_engine('mysql+pymysql://user_name:[email protected]:3306')
    existing_databases_tcp = engine_tcp.execute("SHOW DATABASES;")
    con_tcp = "Connecting from APP Engine Flex to Cloud SQL using TCP: databases => " + str([d[0] for d in existing_databases_tcp]).strip('[]') + "\n"

    engine_unix_socket = create_engine('mysql+pymysql://user_name:[email protected]/user_database?unix_socket=/cloudsql/con-ae-to-sql:europe-west2:database-external')
    existing_databases_unix_socket = engine_unix_socket.execute("SHOW DATABASES;")
    con_unix_socket = "Connecting from APP Engine Flex to Cloud SQL using Unix Sockets: tables in sys database:  => " + str([d[0] for d in existing_databases_unix_socket]).strip('[]') + "\n"
    return con_tcp + con_unix_socket


gcloud app deploy -q
gcloud app browse
#Go to https://con-ae-to-sql.appspot.com
#Connecting from APP Engine Flex to Cloud SQL using TCP: databases => 'information_schema', 'marian', 'mysql', 'performance_schema', 'sys' Connecting from APP Engine Flex to Cloud SQL using Unix Sockets: tables in sys database: => 'information_schema', 'marian', 'mysql', 'performance_schema', 'sys'

सफलता!



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. पर्ल का उपयोग करके MySQL से कैसे कनेक्ट करें

  2. mysqldump जहां क्लॉज के साथ या उसके बिना कई टेबल हैं

  3. अपने खुद के ऐप पर एडमिन कैसे इनस्टॉल करें

  4. डुप्लिकेट प्रविष्टि को पकड़ें अपवाद

  5. लार्वा क्वेरी में कोलेट कैसे जोड़ें