Amazon's Aurora PostgreSQLAWS RDS: Running db dumps in to the server really slowIs this work flow suitable...
Is it safe to try charging my laptop with a USB-C PD charger that has less wattage than recommended?
Finding radius of circle
Can a person refuse a presidential pardon?
How do you funnel food off a cutting board?
Is there a better way to make this?
How would one buy a used TIE Fighter or X-Wing?
Are there any outlying considerations if I treat donning a shield as an object interaction during the first round of combat?
What's a good word to describe a public place that looks like it wouldn't be rough?
Explain the objections to these measures against human trafficking
Am I a Rude Number?
How to avoid being sexist when trying to employ someone to function in a very sexist environment?
Why did the villain in the first Men in Black movie care about Earth's Cockroaches?
Why do members of Congress in committee hearings ask witnesses the same question multiple times?
A starship is travelling at 0.9c and collides with a small rock. Will it leave a clean hole through, or will more happen?
Why did Jodrell Bank assist the Soviet Union to collect data from their spacecraft in the mid 1960's?
How to remove trailing forward slash
Do authors have to be politically correct in article-writing?
How Internet Communication Works on a Coaxial Cable
Cryptic with missing capitals
Can a hotel cancel a confirmed reservation?
What to do when being responsible for data protection in your lab, yet advice is ignored?
Why do neural networks need so many training examples to perform?
How can I deal with a significant flaw I found in my previous supervisor’s paper?
How do we succintly describe a boxing match?
Amazon's Aurora PostgreSQL
AWS RDS: Running db dumps in to the server really slowIs this work flow suitable for Amazon RDS?Random connection timeout after AWS Aurora RDS upgradeAmazon Aurora MySQL5.6 Performance Schema column datatype modified and can't be correctedSingle slave for multiple masters in AWS AuroraDBNecessity of having two instances (Reader and Writer) in Amazon AuroraWhy can I connect directly to Aurora primary instance endpoint but not cluster endpoint?Recommended innodb_file_per_table value for AWS MySQL RDS databaseError log flooding with aborted connections (Aurora 2.03 - MySQL 5.7.12)
I've created few different instances, one instance is of Amazon Aurora PostgreSQL and other instances are of PostgreSQL, MySQL etc. How do I find our the Postgres instance is running within an AWS Aurora cluster or not, from CLI? When I say from CLI this means terminal not AWS CLI.
Thanks.
aws aurora
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I've created few different instances, one instance is of Amazon Aurora PostgreSQL and other instances are of PostgreSQL, MySQL etc. How do I find our the Postgres instance is running within an AWS Aurora cluster or not, from CLI? When I say from CLI this means terminal not AWS CLI.
Thanks.
aws aurora
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
select version() ;should tell you a few things about the instance.
– ypercubeᵀᴹ
Mar 14 '18 at 18:15
add a comment |
I've created few different instances, one instance is of Amazon Aurora PostgreSQL and other instances are of PostgreSQL, MySQL etc. How do I find our the Postgres instance is running within an AWS Aurora cluster or not, from CLI? When I say from CLI this means terminal not AWS CLI.
Thanks.
aws aurora
I've created few different instances, one instance is of Amazon Aurora PostgreSQL and other instances are of PostgreSQL, MySQL etc. How do I find our the Postgres instance is running within an AWS Aurora cluster or not, from CLI? When I say from CLI this means terminal not AWS CLI.
Thanks.
aws aurora
aws aurora
asked Mar 12 '18 at 6:55
Dharmik GadhiyaDharmik Gadhiya
112
112
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 11 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
select version() ;should tell you a few things about the instance.
– ypercubeᵀᴹ
Mar 14 '18 at 18:15
add a comment |
select version() ;should tell you a few things about the instance.
– ypercubeᵀᴹ
Mar 14 '18 at 18:15
select version() ; should tell you a few things about the instance.– ypercubeᵀᴹ
Mar 14 '18 at 18:15
select version() ; should tell you a few things about the instance.– ypercubeᵀᴹ
Mar 14 '18 at 18:15
add a comment |
1 Answer
1
active
oldest
votes
I'd recommend checking for the existence of the rdsadmin database (to be precise, this database exists for any RDS instance, not just an Aurora-based one). One way to check would be to use the psql command-line tool to output a list of databases. Just replace [AuroraClusterEndpoint] and [UserName] in the following
psql -h [AuroraClusterEndpoint] -U [UserName] --password -l

Of course, this assumes you haven't created a database named rdsadmin on your non-RDS Postgres cluster.
You could also use the SHOW ALL command within psql to check for the existence of an RDS-based run-time parameter:

With both solutions, just use whatever scripting tool you're comfortable with (Powershell, Bash, etc...) if you want to programmatically parse out the results
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fdba.stackexchange.com%2fquestions%2f199959%2famazons-aurora-postgresql%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
I'd recommend checking for the existence of the rdsadmin database (to be precise, this database exists for any RDS instance, not just an Aurora-based one). One way to check would be to use the psql command-line tool to output a list of databases. Just replace [AuroraClusterEndpoint] and [UserName] in the following
psql -h [AuroraClusterEndpoint] -U [UserName] --password -l

Of course, this assumes you haven't created a database named rdsadmin on your non-RDS Postgres cluster.
You could also use the SHOW ALL command within psql to check for the existence of an RDS-based run-time parameter:

With both solutions, just use whatever scripting tool you're comfortable with (Powershell, Bash, etc...) if you want to programmatically parse out the results
add a comment |
I'd recommend checking for the existence of the rdsadmin database (to be precise, this database exists for any RDS instance, not just an Aurora-based one). One way to check would be to use the psql command-line tool to output a list of databases. Just replace [AuroraClusterEndpoint] and [UserName] in the following
psql -h [AuroraClusterEndpoint] -U [UserName] --password -l

Of course, this assumes you haven't created a database named rdsadmin on your non-RDS Postgres cluster.
You could also use the SHOW ALL command within psql to check for the existence of an RDS-based run-time parameter:

With both solutions, just use whatever scripting tool you're comfortable with (Powershell, Bash, etc...) if you want to programmatically parse out the results
add a comment |
I'd recommend checking for the existence of the rdsadmin database (to be precise, this database exists for any RDS instance, not just an Aurora-based one). One way to check would be to use the psql command-line tool to output a list of databases. Just replace [AuroraClusterEndpoint] and [UserName] in the following
psql -h [AuroraClusterEndpoint] -U [UserName] --password -l

Of course, this assumes you haven't created a database named rdsadmin on your non-RDS Postgres cluster.
You could also use the SHOW ALL command within psql to check for the existence of an RDS-based run-time parameter:

With both solutions, just use whatever scripting tool you're comfortable with (Powershell, Bash, etc...) if you want to programmatically parse out the results
I'd recommend checking for the existence of the rdsadmin database (to be precise, this database exists for any RDS instance, not just an Aurora-based one). One way to check would be to use the psql command-line tool to output a list of databases. Just replace [AuroraClusterEndpoint] and [UserName] in the following
psql -h [AuroraClusterEndpoint] -U [UserName] --password -l

Of course, this assumes you haven't created a database named rdsadmin on your non-RDS Postgres cluster.
You could also use the SHOW ALL command within psql to check for the existence of an RDS-based run-time parameter:

With both solutions, just use whatever scripting tool you're comfortable with (Powershell, Bash, etc...) if you want to programmatically parse out the results
answered Mar 14 '18 at 16:28
Brian KukowskiBrian Kukowski
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- 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%2fdba.stackexchange.com%2fquestions%2f199959%2famazons-aurora-postgresql%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
select version() ;should tell you a few things about the instance.– ypercubeᵀᴹ
Mar 14 '18 at 18:15