python connection to a external mysql database on the cpanelCalling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?How do I connect to a MySQL Database in Python?Does Python have a ternary conditional operator?Should I use the datetime or timestamp data type in MySQL?How to get the current time in PythonDoes Python have a string 'contains' substring method?
How is the idea of "two people having a heated argument" idiomatically expressed in German?
Examples of topos that are not ordinary spaces
Is using a hyperlink to close a modal a poor design decision?
How to respectfully refuse to assist co-workers with IT issues?
Algorithms vs LP or MIP
How to make Ubuntu support single display 5120x1440 resolution?
Disambiguation of "nobis vobis" and "nobis nobis"
Would the Republic of Ireland and Northern Ireland be interested in reuniting?
Why is there so little discussion / research on the philosophy of precision?
LeetCode: Group Anagrams C#
How do I get a decreased-by-one x in a foreach loop?
Prove your innocence
Do they have Supervillain(s)?
Why do banks “park” their money at the European Central Bank?
Why in most German places is the church the tallest building?
Architectural feasibility of a tiered circular stone keep
What are some interesting features that are common cross-linguistically but don't exist in English?
Is immersion of utensils (tevila) valid before koshering (hagala)?
Immutable builder and updater
If all stars rotate, why was there a theory developed that requires non-rotating stars?
What does "set -x" do in a bash script?
Is for(( ... )) ... ; a valid shell syntax? In which shells?
Nothing like a good ol' game of ModTen
Why did they avoid parodying Martian Manhunter?
python connection to a external mysql database on the cpanel
Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?How do I connect to a MySQL Database in Python?Does Python have a ternary conditional operator?Should I use the datetime or timestamp data type in MySQL?How to get the current time in PythonDoes Python have a string 'contains' substring method?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am writing a python flask application that I want to connect to my database on a cPanel however I am running into an issue where I am unable to connect to the database and am only able to connect to a local host I already set my bind address to 0.0.0.0 however it is still unable to connect to the cPanel I am able to have my code connect to a local mysqldb but not to the database on the cPanel
cnx = mysql.connector.connect(host=xx.xx.xxx.xxx, user= root, password= password, db=database, port=3306)
I expect it to connect to the cPanel however when I run the command it is only able to connect to localhost.
Any suggestions?
python mysql cpanel
add a comment |
I am writing a python flask application that I want to connect to my database on a cPanel however I am running into an issue where I am unable to connect to the database and am only able to connect to a local host I already set my bind address to 0.0.0.0 however it is still unable to connect to the cPanel I am able to have my code connect to a local mysqldb but not to the database on the cPanel
cnx = mysql.connector.connect(host=xx.xx.xxx.xxx, user= root, password= password, db=database, port=3306)
I expect it to connect to the cPanel however when I run the command it is only able to connect to localhost.
Any suggestions?
python mysql cpanel
What errors do you see?
– oshaiken
Mar 27 at 18:00
add a comment |
I am writing a python flask application that I want to connect to my database on a cPanel however I am running into an issue where I am unable to connect to the database and am only able to connect to a local host I already set my bind address to 0.0.0.0 however it is still unable to connect to the cPanel I am able to have my code connect to a local mysqldb but not to the database on the cPanel
cnx = mysql.connector.connect(host=xx.xx.xxx.xxx, user= root, password= password, db=database, port=3306)
I expect it to connect to the cPanel however when I run the command it is only able to connect to localhost.
Any suggestions?
python mysql cpanel
I am writing a python flask application that I want to connect to my database on a cPanel however I am running into an issue where I am unable to connect to the database and am only able to connect to a local host I already set my bind address to 0.0.0.0 however it is still unable to connect to the cPanel I am able to have my code connect to a local mysqldb but not to the database on the cPanel
cnx = mysql.connector.connect(host=xx.xx.xxx.xxx, user= root, password= password, db=database, port=3306)
I expect it to connect to the cPanel however when I run the command it is only able to connect to localhost.
Any suggestions?
python mysql cpanel
python mysql cpanel
edited Mar 28 at 1:14
davidism
71.7k13 gold badges207 silver badges210 bronze badges
71.7k13 gold badges207 silver badges210 bronze badges
asked Mar 27 at 17:37
rawalterrawalter
11 bronze badge
11 bronze badge
What errors do you see?
– oshaiken
Mar 27 at 18:00
add a comment |
What errors do you see?
– oshaiken
Mar 27 at 18:00
What errors do you see?
– oshaiken
Mar 27 at 18:00
What errors do you see?
– oshaiken
Mar 27 at 18:00
add a comment |
0
active
oldest
votes
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%2f55383412%2fpython-connection-to-a-external-mysql-database-on-the-cpanel%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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%2f55383412%2fpython-connection-to-a-external-mysql-database-on-the-cpanel%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
What errors do you see?
– oshaiken
Mar 27 at 18:00