Экспорт файлов из GCE на мою локальную машину

Есть ли обратная команда для gcutil push в основном, что я хочу сделать - это скопировать мои файлы python на мою локальную машину, поэтому я ищу способ импортировать файлы на мою локальную машину, экспортируя их из моего экземпляра Google Compute Engine без использования GIT или любого другого источника управления инструмент

2 ответа

Решение

Да, есть Gcutil тянуть. Вот файл справки:

Local:~ mark$ gcutil help pull

Command line tool for interacting with Google Compute Engine.

Please refer to http://developers.google.com/compute/docs/gcutil/tips for more
information about gcutil usage.


USAGE: gcutil [--global_flags] <command> [--command_flags] [args]


pull                         Pull one or more files from a VM instance.

                         Usage: gcutil [--global_flags] pull
                         [--command_flags] <instance-name> <file-1> ...
                         <file-n> <destination>

                         Flags for pull:

gcutil_lib.instance_cmds:
  --ssh_arg: Additional arguments to pass to ssh;
repeat this option to specify a list of values
(default: '[]')
  --ssh_key_push_wait_time: Number of seconds to wait for updates to
project-wide ssh keys to cascade to the instances within the project
(default: '120')
(an integer)
  --ssh_port: TCP port to connect to
(default: '22')
(an integer)
  --zone: [Required] The zone for this request.

gflags:
--flagfile: Insert flag definitions from the given file into the command line.
(default: '')
--undefok: comma-separated list of flag names that it is okay to specify on
the command line even if the program does not define a flag with that name.
IMPORTANT: flags in this list that have arguments MUST use the --flag=value
format.
(default: '')


Run 'gcutil --help' to get help for global flags.
Run 'gcutil help' to see the list of available commands.

Синтаксис выгрузки файлов в GCE с вашего локального компьютера:

gcutil push --zone=us-central1-a \ my_instance \ ~/local/path /remote/file1 \ /remote/file2 \

например в макинтоше

пример

gcutil push --zone=us-central1-a \your-instance\  ~/Desktop/Gcloud /home/munish/

Синтаксис загрузки файлов из GCE на ваш локальный компьютер:

gcutil pull --zone=us-central1-a \ my_instance \ /remote/file1 \ /remote/file2 \ ~/local/path

например в макинтоше

пример

gcutil pull --zone=us-central1-a \your-instance \ /home/munish/source-folder ~/Desktop/destination-folder
Другие вопросы по тегам