How to auto snapshot Google cloud platform VM-instances in window server 2018
For VM-instances with linux which have SSH. I know that can using link as below
https://github.com/grugnog/google-cloud-auto-snapshot
But for Window Server which is using RDP, How can i do it auto snapshot daily ?
Or i need to using gcloud command.
google-cloud-platform backup google-compute-engine snapshot
add a comment |
For VM-instances with linux which have SSH. I know that can using link as below
https://github.com/grugnog/google-cloud-auto-snapshot
But for Window Server which is using RDP, How can i do it auto snapshot daily ?
Or i need to using gcloud command.
google-cloud-platform backup google-compute-engine snapshot
add a comment |
For VM-instances with linux which have SSH. I know that can using link as below
https://github.com/grugnog/google-cloud-auto-snapshot
But for Window Server which is using RDP, How can i do it auto snapshot daily ?
Or i need to using gcloud command.
google-cloud-platform backup google-compute-engine snapshot
For VM-instances with linux which have SSH. I know that can using link as below
https://github.com/grugnog/google-cloud-auto-snapshot
But for Window Server which is using RDP, How can i do it auto snapshot daily ?
Or i need to using gcloud command.
google-cloud-platform backup google-compute-engine snapshot
google-cloud-platform backup google-compute-engine snapshot
edited Nov 23 '18 at 1:16
Maxim
1,533210
1,533210
asked Nov 22 '18 at 9:58
jimmy chinjimmy chin
11
11
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
You can create Windows Instance Snapshots by following the steps attached to the attached article here.
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
add a comment |
I think, taking snapshot of any instance is taking snapshot of all the involved disks
And there are commands to take snapshot of any disk in gcp
And you can use Google Cloud scheduler to schedule any jobs/tasks
So using scheduler to automatically take disk snapshots can be used to take snapshot of any instance (including windows)
add a comment |
On Feb. 14, 2019, Google has finally released in beta scheduled snapshots -
https://cloud.google.com/compute/docs/disks/scheduled-snapshots
Here's how it looks like in the Google Cloud Console:
For Windows instances, you must select Enable VSS.
Image taken from Google Blog.
Hope this helps.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428292%2fhow-to-auto-snapshot-google-cloud-platform-vm-instances-in-window-server-2018%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can create Windows Instance Snapshots by following the steps attached to the attached article here.
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
add a comment |
You can create Windows Instance Snapshots by following the steps attached to the attached article here.
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
add a comment |
You can create Windows Instance Snapshots by following the steps attached to the attached article here.
You can create Windows Instance Snapshots by following the steps attached to the attached article here.
answered Nov 22 '18 at 16:57
JasonJason
4088
4088
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
add a comment |
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Improve your answer by including the steps. Include the link as a reference. Links change over time which can break your answer. An answer usually should exist without requiring following a link. There are exceptions of course. Otherwise your answer should be a comment to the question.
– John Hanley
Nov 22 '18 at 18:32
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
Does the Step provide auto instance snapshots ? And will it effect my current data inside my server ?
– jimmy chin
Nov 23 '18 at 0:30
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
If you would like to automate the backups, you will have to create a script using either the api or gcloud commands. From there, you will need to create a cron job using the script if you would like to have it done on a timely basis. Snapshots will not affect the data on the Windows Instance.
– Jason
Nov 26 '18 at 16:37
add a comment |
I think, taking snapshot of any instance is taking snapshot of all the involved disks
And there are commands to take snapshot of any disk in gcp
And you can use Google Cloud scheduler to schedule any jobs/tasks
So using scheduler to automatically take disk snapshots can be used to take snapshot of any instance (including windows)
add a comment |
I think, taking snapshot of any instance is taking snapshot of all the involved disks
And there are commands to take snapshot of any disk in gcp
And you can use Google Cloud scheduler to schedule any jobs/tasks
So using scheduler to automatically take disk snapshots can be used to take snapshot of any instance (including windows)
add a comment |
I think, taking snapshot of any instance is taking snapshot of all the involved disks
And there are commands to take snapshot of any disk in gcp
And you can use Google Cloud scheduler to schedule any jobs/tasks
So using scheduler to automatically take disk snapshots can be used to take snapshot of any instance (including windows)
I think, taking snapshot of any instance is taking snapshot of all the involved disks
And there are commands to take snapshot of any disk in gcp
And you can use Google Cloud scheduler to schedule any jobs/tasks
So using scheduler to automatically take disk snapshots can be used to take snapshot of any instance (including windows)
answered Nov 28 '18 at 11:05
amitamamitam
976
976
add a comment |
add a comment |
On Feb. 14, 2019, Google has finally released in beta scheduled snapshots -
https://cloud.google.com/compute/docs/disks/scheduled-snapshots
Here's how it looks like in the Google Cloud Console:
For Windows instances, you must select Enable VSS.
Image taken from Google Blog.
Hope this helps.
add a comment |
On Feb. 14, 2019, Google has finally released in beta scheduled snapshots -
https://cloud.google.com/compute/docs/disks/scheduled-snapshots
Here's how it looks like in the Google Cloud Console:
For Windows instances, you must select Enable VSS.
Image taken from Google Blog.
Hope this helps.
add a comment |
On Feb. 14, 2019, Google has finally released in beta scheduled snapshots -
https://cloud.google.com/compute/docs/disks/scheduled-snapshots
Here's how it looks like in the Google Cloud Console:
For Windows instances, you must select Enable VSS.
Image taken from Google Blog.
Hope this helps.
On Feb. 14, 2019, Google has finally released in beta scheduled snapshots -
https://cloud.google.com/compute/docs/disks/scheduled-snapshots
Here's how it looks like in the Google Cloud Console:
For Windows instances, you must select Enable VSS.
Image taken from Google Blog.
Hope this helps.
answered Feb 17 at 1:18
Eduardo B.Eduardo B.
1013
1013
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53428292%2fhow-to-auto-snapshot-google-cloud-platform-vm-instances-in-window-server-2018%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown