cloud sql proxy as a service on windows 7
Run "cloud_sql_proxy" as a service in "windows 7" operating system
I have the binary "cloud_sql_proxy" with which I can access the instance of the mysql server in the Google cloud platform, up there all right.
but I need to ensure that the executable provided by Google, is always running and so my application / client program does not lose the link to these services.
Any idea how I can do this?
google-cloud-platform windows-7 startup google-cloud-sql cloud-sql-proxy
add a comment |
Run "cloud_sql_proxy" as a service in "windows 7" operating system
I have the binary "cloud_sql_proxy" with which I can access the instance of the mysql server in the Google cloud platform, up there all right.
but I need to ensure that the executable provided by Google, is always running and so my application / client program does not lose the link to these services.
Any idea how I can do this?
google-cloud-platform windows-7 startup google-cloud-sql cloud-sql-proxy
add a comment |
Run "cloud_sql_proxy" as a service in "windows 7" operating system
I have the binary "cloud_sql_proxy" with which I can access the instance of the mysql server in the Google cloud platform, up there all right.
but I need to ensure that the executable provided by Google, is always running and so my application / client program does not lose the link to these services.
Any idea how I can do this?
google-cloud-platform windows-7 startup google-cloud-sql cloud-sql-proxy
Run "cloud_sql_proxy" as a service in "windows 7" operating system
I have the binary "cloud_sql_proxy" with which I can access the instance of the mysql server in the Google cloud platform, up there all right.
but I need to ensure that the executable provided by Google, is always running and so my application / client program does not lose the link to these services.
Any idea how I can do this?
google-cloud-platform windows-7 startup google-cloud-sql cloud-sql-proxy
google-cloud-platform windows-7 startup google-cloud-sql cloud-sql-proxy
edited Nov 23 '18 at 9:24
Harmit Rishi
325
325
asked Nov 20 '18 at 0:18
Marvin AguilarMarvin Aguilar
31
31
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Based on what I understand from your question, it seems you are attempting to ask “ How can I run cloud_sql_proxy_xXX.exe when I startup Windows 7 ?”. I can tell you that the proxy does not run as a service so you will have to execute it every time you boot up your machine. Luckily, running programs on startup for Windows 7 is relatively easier than later versions of Windows such as 8.X and above.
For Windows 7, You can follow the guided steps provided here. Essentially, you just have to put the .exe file you wish to run in your Startup folder under the Start menu. (I.e: Open Start menu > All Programs > Startup > Drag file in here)
This should execute ”cloud_sql_proxy_xXX.exe” every-time you boot your Windows 7 local machine.
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
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%2f53384477%2fcloud-sql-proxy-as-a-service-on-windows-7%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Based on what I understand from your question, it seems you are attempting to ask “ How can I run cloud_sql_proxy_xXX.exe when I startup Windows 7 ?”. I can tell you that the proxy does not run as a service so you will have to execute it every time you boot up your machine. Luckily, running programs on startup for Windows 7 is relatively easier than later versions of Windows such as 8.X and above.
For Windows 7, You can follow the guided steps provided here. Essentially, you just have to put the .exe file you wish to run in your Startup folder under the Start menu. (I.e: Open Start menu > All Programs > Startup > Drag file in here)
This should execute ”cloud_sql_proxy_xXX.exe” every-time you boot your Windows 7 local machine.
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
add a comment |
Based on what I understand from your question, it seems you are attempting to ask “ How can I run cloud_sql_proxy_xXX.exe when I startup Windows 7 ?”. I can tell you that the proxy does not run as a service so you will have to execute it every time you boot up your machine. Luckily, running programs on startup for Windows 7 is relatively easier than later versions of Windows such as 8.X and above.
For Windows 7, You can follow the guided steps provided here. Essentially, you just have to put the .exe file you wish to run in your Startup folder under the Start menu. (I.e: Open Start menu > All Programs > Startup > Drag file in here)
This should execute ”cloud_sql_proxy_xXX.exe” every-time you boot your Windows 7 local machine.
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
add a comment |
Based on what I understand from your question, it seems you are attempting to ask “ How can I run cloud_sql_proxy_xXX.exe when I startup Windows 7 ?”. I can tell you that the proxy does not run as a service so you will have to execute it every time you boot up your machine. Luckily, running programs on startup for Windows 7 is relatively easier than later versions of Windows such as 8.X and above.
For Windows 7, You can follow the guided steps provided here. Essentially, you just have to put the .exe file you wish to run in your Startup folder under the Start menu. (I.e: Open Start menu > All Programs > Startup > Drag file in here)
This should execute ”cloud_sql_proxy_xXX.exe” every-time you boot your Windows 7 local machine.
Based on what I understand from your question, it seems you are attempting to ask “ How can I run cloud_sql_proxy_xXX.exe when I startup Windows 7 ?”. I can tell you that the proxy does not run as a service so you will have to execute it every time you boot up your machine. Luckily, running programs on startup for Windows 7 is relatively easier than later versions of Windows such as 8.X and above.
For Windows 7, You can follow the guided steps provided here. Essentially, you just have to put the .exe file you wish to run in your Startup folder under the Start menu. (I.e: Open Start menu > All Programs > Startup > Drag file in here)
This should execute ”cloud_sql_proxy_xXX.exe” every-time you boot your Windows 7 local machine.
answered Nov 22 '18 at 19:51
Harmit RishiHarmit Rishi
325
325
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
add a comment |
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
Thanks for the solution, i can solve the problem with something like that, adding the program to the windows register. but best yet, i can run the program from my application at start up the same. thanks anythin.
– Marvin Aguilar
Nov 23 '18 at 20:07
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%2f53384477%2fcloud-sql-proxy-as-a-service-on-windows-7%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