How to know if a machine is an Google Compute Engine instance

前端 未结 4 1497
感动是毒
感动是毒 2021-02-13 09:59

Is there a way to know from a command line shell if I am currently on a Google Compute Engine machine or somewhere else (development machine)?

4条回答
  •  忘掉有多难
    2021-02-13 10:25

    Per the metadata docs:

    You can easily detect if your applications or scripts are running within a Compute Engine instance by using the metadata server. When you make a request to the server, any response from the metadata server will contain the Metadata-Flavor: Google header. You can look for this header to reliably detect if you are running in Compute Engine.

    For example, the following curl request returns a Metadata-Flavor: Google header, indicating that the request is being made from within a Compute Engine instance.

    me@my-inst:~$ curl metadata.google.internal -i
    HTTP/1.1 200 OK
    Metadata-Flavor: Google
    Content-Type: application/text
    Date: Thu, 10 Apr 2014 19:24:27 GMT
    Server: Metadata Server for VM
    Content-Length: 22
    X-XSS-Protection: 1; mode=block
    X-Frame-Options: SAMEORIGIN
    
    0.1/
    computeMetadata/
    

提交回复
热议问题