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;








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?










share|improve this question


























  • What errors do you see?

    – oshaiken
    Mar 27 at 18:00

















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?










share|improve this question


























  • What errors do you see?

    – oshaiken
    Mar 27 at 18:00













0












0








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?










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












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
);



);













draft saved

draft discarded


















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.



















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현