PHP - mysqli connect from localhost(my local PC) to amazon EC2 hosted databaseCan I mix MySQL APIs in PHP?Connect to MySQL on AWS from local machineHow to safely upgrade an Amazon EC2 instance from t1.micro to large?1130 Host 'amazon-ec2-ip' is not allowed to connect to this MySQL serverupgraded Amazon EC2 instance and phpmyadmin cannot connect to mysqlAmazon EC2 Instance connectivityCannot connect remotely to EC2 MySQL installationConnecting with PuTTY to Amazon EC2 Windows instance running freeSSHdPHP mySQLi connection to AWS RDS in AWS EC2 InstancephpMyAdmin Remote AccessPHP connecting to AWS EC2 errorUnable to login into phpmyadmin
Ethiopian Airlines tickets seem to always have the same price regardless of the proximity of the date?
What is the simplest instruction set that has a C++/C compiler to write an emulator for?
Redirection operator, standard input and command parameters
Why would word of Princess Leia's capture generate sympathy for the Rebellion in the Senate?
What does Windows' "Tuning up Application Start" do?
why neutral does not shock. how can a neutral be neutral in ac current?
Will a ThunderBolt 3 (USB-C?) to ThunderBolt 2 cable allow me to use a MacBook Pro as second monitor?
Should I work for free if client's requirement changed
BIP-23 criticism: Is bitcoin PoW actually sha256+merkleGeneration? Or have I misunderstood coinbase/append?
Is it possible to have a career in SciComp without contributing to arms research?
Book about an amphibian race at the centre of the Earth
What's a German word for »Sandbagger«?
Found old paper shares of Motorola Inc that has since been broken up
Host telling me to cancel my booking in exchange for a discount?
Why is this guy handcuffed censored?
Manager is asking me to eat breakfast from now on
Why does airflow separate from the wing during stall?
How does the Gameboy's memory bank switching work?
You have no, but can try for yes
Counting multiples of 3 up to a given number
Do Indians need a separate Hong Kong visa if we already have a Chinese visa?
Weight functions in graph algorithms
Does unblocking power bar outlets through short extension cords increase fire risk?
Why does a tetrahedral molecule like methane have a dipole moment of zero?
PHP - mysqli connect from localhost(my local PC) to amazon EC2 hosted database
Can I mix MySQL APIs in PHP?Connect to MySQL on AWS from local machineHow to safely upgrade an Amazon EC2 instance from t1.micro to large?1130 Host 'amazon-ec2-ip' is not allowed to connect to this MySQL serverupgraded Amazon EC2 instance and phpmyadmin cannot connect to mysqlAmazon EC2 Instance connectivityCannot connect remotely to EC2 MySQL installationConnecting with PuTTY to Amazon EC2 Windows instance running freeSSHdPHP mySQLi connection to AWS RDS in AWS EC2 InstancephpMyAdmin Remote AccessPHP connecting to AWS EC2 errorUnable to login into phpmyadmin
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have tried to connect to Amazon EC2 instance MySql from localhost.
Tried:
Granting privilege for user for remote connect
Made domain ping-able from outside.
Able to login through phpmyadmin with same credentials
Gone through lot of Stackoverflow answers.
$link = mysqli_connect('ec2-12-223-36-172.compute-1.amazonaws.com', 'myuser', 'xxxxxxxxxxx');
// mysqli_connect('domain', 'myuser', 'pasword', 'dbname', 3306);
if (!$link)
die('Could not connect');
echo 'Connected successfully';
exit;
Warning: mysqli_connect(): (HY000/2002): Connection refused
php mysql mysqli amazon-ec2
|
show 5 more comments
I have tried to connect to Amazon EC2 instance MySql from localhost.
Tried:
Granting privilege for user for remote connect
Made domain ping-able from outside.
Able to login through phpmyadmin with same credentials
Gone through lot of Stackoverflow answers.
$link = mysqli_connect('ec2-12-223-36-172.compute-1.amazonaws.com', 'myuser', 'xxxxxxxxxxx');
// mysqli_connect('domain', 'myuser', 'pasword', 'dbname', 3306);
if (!$link)
die('Could not connect');
echo 'Connected successfully';
exit;
Warning: mysqli_connect(): (HY000/2002): Connection refused
php mysql mysqli amazon-ec2
Bylocalhost, do you actually mean you are trying to connect from your local PC to the Amazon cloud
– RiggsFolly
Mar 26 at 12:09
@RiggsFolly Yes exactly
– mujuonly
Mar 26 at 12:12
Are you sure that your ec2 port 3306 is open to public?
– Alex
Mar 26 at 12:17
2
This would require your database on EC2 to be exposed to the public internet. 1) You'd need to set it up this way, and 2) this is a terrible idea security wise. You typically tunnel into your EC2 machine using SSH and connect to the database through the tunnel.
– deceze♦
Mar 26 at 12:18
2
Make your question about exactly that.
– deceze♦
Mar 26 at 12:23
|
show 5 more comments
I have tried to connect to Amazon EC2 instance MySql from localhost.
Tried:
Granting privilege for user for remote connect
Made domain ping-able from outside.
Able to login through phpmyadmin with same credentials
Gone through lot of Stackoverflow answers.
$link = mysqli_connect('ec2-12-223-36-172.compute-1.amazonaws.com', 'myuser', 'xxxxxxxxxxx');
// mysqli_connect('domain', 'myuser', 'pasword', 'dbname', 3306);
if (!$link)
die('Could not connect');
echo 'Connected successfully';
exit;
Warning: mysqli_connect(): (HY000/2002): Connection refused
php mysql mysqli amazon-ec2
I have tried to connect to Amazon EC2 instance MySql from localhost.
Tried:
Granting privilege for user for remote connect
Made domain ping-able from outside.
Able to login through phpmyadmin with same credentials
Gone through lot of Stackoverflow answers.
$link = mysqli_connect('ec2-12-223-36-172.compute-1.amazonaws.com', 'myuser', 'xxxxxxxxxxx');
// mysqli_connect('domain', 'myuser', 'pasword', 'dbname', 3306);
if (!$link)
die('Could not connect');
echo 'Connected successfully';
exit;
Warning: mysqli_connect(): (HY000/2002): Connection refused
php mysql mysqli amazon-ec2
php mysql mysqli amazon-ec2
edited Mar 29 at 4:42
mujuonly
asked Mar 26 at 12:01
mujuonlymujuonly
3,0891 gold badge17 silver badges38 bronze badges
3,0891 gold badge17 silver badges38 bronze badges
Bylocalhost, do you actually mean you are trying to connect from your local PC to the Amazon cloud
– RiggsFolly
Mar 26 at 12:09
@RiggsFolly Yes exactly
– mujuonly
Mar 26 at 12:12
Are you sure that your ec2 port 3306 is open to public?
– Alex
Mar 26 at 12:17
2
This would require your database on EC2 to be exposed to the public internet. 1) You'd need to set it up this way, and 2) this is a terrible idea security wise. You typically tunnel into your EC2 machine using SSH and connect to the database through the tunnel.
– deceze♦
Mar 26 at 12:18
2
Make your question about exactly that.
– deceze♦
Mar 26 at 12:23
|
show 5 more comments
Bylocalhost, do you actually mean you are trying to connect from your local PC to the Amazon cloud
– RiggsFolly
Mar 26 at 12:09
@RiggsFolly Yes exactly
– mujuonly
Mar 26 at 12:12
Are you sure that your ec2 port 3306 is open to public?
– Alex
Mar 26 at 12:17
2
This would require your database on EC2 to be exposed to the public internet. 1) You'd need to set it up this way, and 2) this is a terrible idea security wise. You typically tunnel into your EC2 machine using SSH and connect to the database through the tunnel.
– deceze♦
Mar 26 at 12:18
2
Make your question about exactly that.
– deceze♦
Mar 26 at 12:23
By
localhost, do you actually mean you are trying to connect from your local PC to the Amazon cloud– RiggsFolly
Mar 26 at 12:09
By
localhost, do you actually mean you are trying to connect from your local PC to the Amazon cloud– RiggsFolly
Mar 26 at 12:09
@RiggsFolly Yes exactly
– mujuonly
Mar 26 at 12:12
@RiggsFolly Yes exactly
– mujuonly
Mar 26 at 12:12
Are you sure that your ec2 port 3306 is open to public?
– Alex
Mar 26 at 12:17
Are you sure that your ec2 port 3306 is open to public?
– Alex
Mar 26 at 12:17
2
2
This would require your database on EC2 to be exposed to the public internet. 1) You'd need to set it up this way, and 2) this is a terrible idea security wise. You typically tunnel into your EC2 machine using SSH and connect to the database through the tunnel.
– deceze♦
Mar 26 at 12:18
This would require your database on EC2 to be exposed to the public internet. 1) You'd need to set it up this way, and 2) this is a terrible idea security wise. You typically tunnel into your EC2 machine using SSH and connect to the database through the tunnel.
– deceze♦
Mar 26 at 12:18
2
2
Make your question about exactly that.
– deceze♦
Mar 26 at 12:23
Make your question about exactly that.
– deceze♦
Mar 26 at 12:23
|
show 5 more comments
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%2f55356684%2fphp-mysqli-connect-from-localhostmy-local-pc-to-amazon-ec2-hosted-database%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%2f55356684%2fphp-mysqli-connect-from-localhostmy-local-pc-to-amazon-ec2-hosted-database%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
By
localhost, do you actually mean you are trying to connect from your local PC to the Amazon cloud– RiggsFolly
Mar 26 at 12:09
@RiggsFolly Yes exactly
– mujuonly
Mar 26 at 12:12
Are you sure that your ec2 port 3306 is open to public?
– Alex
Mar 26 at 12:17
2
This would require your database on EC2 to be exposed to the public internet. 1) You'd need to set it up this way, and 2) this is a terrible idea security wise. You typically tunnel into your EC2 machine using SSH and connect to the database through the tunnel.
– deceze♦
Mar 26 at 12:18
2
Make your question about exactly that.
– deceze♦
Mar 26 at 12:23