📜  gcloud - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:41:22.275000             🧑  作者: Mango

Gcloud Shell-Bash

简介

Gcloud Shell-Bash 是 Google Cloud Platform 提供的一种提供基于浏览器的 Shell(命令行界面)的工具,可以在浏览器上直接访问 Linux 命令行环境,方便用户在云端进行开发和管理操作。

特点
  • 免费使用,无需安装任何本地依赖
  • 基于 Web 的 Shell 界面,不需要任何特殊软件或插件
  • 无需繁琐的认证流程,可以直接访问 Google Cloud Console 中的任何项目
  • 支持 Google Cloud SDK 工具,可以在 Shell 环境中直接使用 gcloud 命令行工具
  • 支持快速生成 SSH 密钥和 SSH 隧道
使用示例
连接 Gcloud Shell-Bash

访问 Gcloud Shell ,页面左下方即可看到 Shell 界面。

使用 gcloud 命令行工具
# 检查已登录的 Google 账号
$ gcloud auth list

# 查看 Cloud Storage 中的文件列表
$ gsutil ls gs://bucket-name

# 部署应用到 Google App Engine
$ gcloud app deploy
生成 SSH 密钥和 SSH 隧道
# 生成 SSH 密钥对
$ ssh-keygen -t rsa

# 创建 SSH 隧道
$ gcloud compute ssh --zone us-central1-a instance-name -- -L 8080:localhost:8080
总结

Gcloud Shell-Bash 是一款方便的云端 Shell 命令行工具,可以通过浏览器远程访问云端服务器进行开发和管理。它支持 gcloud 命令行工具和 SSH 隧道功能,可以让用户更方便地进行云端操作。