How to install PostgreSQL 9.6 and plperl on Amazon Linux 2?How to install PostgreSQL extension for PDO in Linux?How to see active connections and “current activity” in PostgreSQL 8.4How to install a PostgreSQL clientInstall PostgreSQL pgAdmin Tools on Amazon RDSUnable to connect to postgresql 9.6 server from 9.4 clientInstalling Postgres server 9.6 on Amazon LinuxUpgrade PostgreSQL 9.5 to 9.6 with PostGIS - pg_upgradePostgresql 9.6 over BTRFS. Good or bad idea?PostgreSQL and the Linux KernelHow to install nginx mod lua on Amazon Linux 2?
Applicants clearly not having the skills they advertise
California: "For quality assurance, this phone call is being recorded"
Why is Colorado so different politically from nearby states?
Benefits of employing devices that support vlan trunking
Asking bank to reduce APR instead of increasing credit limit
Working in the USA for living expenses only; allowed on VWP?
Credit card offering 0.5 miles for every cent rounded up. Too good to be true?
How is it possible for Mordenkainen to be alive during the Curse of Strahd adventure?
Alternative Uses of Bottomless Heat Sinks
The term for the person/group a political party aligns themselves with to appear concerned about the general public
Will dual-learning in a glider make my GA learning safer?
Is there a rule that prohibits us from using 2 possessives in a row?
Was the 1959 Tibetan Uprising really an uprising?
What people are called boars ("кабан") and why?
Concise way to draw this pyramid
What if you don't bring your credit card or debit for incidentals?
I made a mistake ordering ground coffee - will Expresso ground coffee work for a French Press?
How can I make 20-200 ohm variable resistor look like a 20-240 ohm resistor?
What is the right way to float a home lab?
Filling region bounded by multiple paths
Explain Ant-Man's "not it" scene from Avengers: Endgame
Homophone fills the blanks
Pros and cons of writing a book review?
Short story written from alien perspective with this line: "It's too bright to look at, so they don't"
How to install PostgreSQL 9.6 and plperl on Amazon Linux 2?
How to install PostgreSQL extension for PDO in Linux?How to see active connections and “current activity” in PostgreSQL 8.4How to install a PostgreSQL clientInstall PostgreSQL pgAdmin Tools on Amazon RDSUnable to connect to postgresql 9.6 server from 9.4 clientInstalling Postgres server 9.6 on Amazon LinuxUpgrade PostgreSQL 9.5 to 9.6 with PostGIS - pg_upgradePostgresql 9.6 over BTRFS. Good or bad idea?PostgreSQL and the Linux KernelHow to install nginx mod lua on Amazon Linux 2?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
With the official repositories, the RHEL6 packages get installed which happen to work on Amazon Linux 2 (RHEL7 clone). You might run into a dependency hell if you want to install the plperl extension later on, as it requires Perl 5.10 which is only available for RHEL6:
---> Package postgresql96-plperl.x86_64 0:9.6.11-1PGDG.rhel6 will be installed
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64
--> Finished Dependency Resolution
Error: Package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64 (pgdg96)
Requires: perl(:MODULE_COMPAT_5.10.1)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
postgresql amazon-linux-2
add a comment |
With the official repositories, the RHEL6 packages get installed which happen to work on Amazon Linux 2 (RHEL7 clone). You might run into a dependency hell if you want to install the plperl extension later on, as it requires Perl 5.10 which is only available for RHEL6:
---> Package postgresql96-plperl.x86_64 0:9.6.11-1PGDG.rhel6 will be installed
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64
--> Finished Dependency Resolution
Error: Package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64 (pgdg96)
Requires: perl(:MODULE_COMPAT_5.10.1)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
postgresql amazon-linux-2
add a comment |
With the official repositories, the RHEL6 packages get installed which happen to work on Amazon Linux 2 (RHEL7 clone). You might run into a dependency hell if you want to install the plperl extension later on, as it requires Perl 5.10 which is only available for RHEL6:
---> Package postgresql96-plperl.x86_64 0:9.6.11-1PGDG.rhel6 will be installed
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64
--> Finished Dependency Resolution
Error: Package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64 (pgdg96)
Requires: perl(:MODULE_COMPAT_5.10.1)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
postgresql amazon-linux-2
With the official repositories, the RHEL6 packages get installed which happen to work on Amazon Linux 2 (RHEL7 clone). You might run into a dependency hell if you want to install the plperl extension later on, as it requires Perl 5.10 which is only available for RHEL6:
---> Package postgresql96-plperl.x86_64 0:9.6.11-1PGDG.rhel6 will be installed
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64
--> Finished Dependency Resolution
Error: Package: postgresql96-plperl-9.6.11-1PGDG.rhel6.x86_64 (pgdg96)
Requires: perl(:MODULE_COMPAT_5.10.1)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
postgresql amazon-linux-2
postgresql amazon-linux-2
asked Feb 27 at 16:17
mrg2k8mrg2k8
6114
6114
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I would not recommend using PGDG with AL2. Not to mention, that it now refuses to install on AL2 because it can't find /etc/redhat-release. You can still setup a repo file for yum, but again, I don't recommend it.
AL2 comes with a amazon-linux-extras tool. https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras
PostgreSQL 9.6 and 10 are included, as is PL/Perl.
You may have to do a bit more work to get the server setup, but you shouldn't have dependency issues since these packages are provided by the Amazon Linux team.
add a comment |
A slightly modified version of the Amazon Linux YUM repository can be used to install the correct (el7) version of postgresql-server and thus, plperl:
[pgdg96]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
Installed packages:
$ rpm -qa | grep postgresql96
postgresql96-contrib-9.6.12-1PGDG.rhel7.x86_64
postgresql96-plperl-9.6.12-1PGDG.rhel7.x86_64
postgresql96-9.6.12-1PGDG.rhel7.x86_64
postgresql96-server-9.6.12-1PGDG.rhel7.x86_64
postgresql96-libs-9.6.12-1PGDG.rhel7.x86_64
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
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%2fserverfault.com%2fquestions%2f956000%2fhow-to-install-postgresql-9-6-and-plperl-on-amazon-linux-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would not recommend using PGDG with AL2. Not to mention, that it now refuses to install on AL2 because it can't find /etc/redhat-release. You can still setup a repo file for yum, but again, I don't recommend it.
AL2 comes with a amazon-linux-extras tool. https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras
PostgreSQL 9.6 and 10 are included, as is PL/Perl.
You may have to do a bit more work to get the server setup, but you shouldn't have dependency issues since these packages are provided by the Amazon Linux team.
add a comment |
I would not recommend using PGDG with AL2. Not to mention, that it now refuses to install on AL2 because it can't find /etc/redhat-release. You can still setup a repo file for yum, but again, I don't recommend it.
AL2 comes with a amazon-linux-extras tool. https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras
PostgreSQL 9.6 and 10 are included, as is PL/Perl.
You may have to do a bit more work to get the server setup, but you shouldn't have dependency issues since these packages are provided by the Amazon Linux team.
add a comment |
I would not recommend using PGDG with AL2. Not to mention, that it now refuses to install on AL2 because it can't find /etc/redhat-release. You can still setup a repo file for yum, but again, I don't recommend it.
AL2 comes with a amazon-linux-extras tool. https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras
PostgreSQL 9.6 and 10 are included, as is PL/Perl.
You may have to do a bit more work to get the server setup, but you shouldn't have dependency issues since these packages are provided by the Amazon Linux team.
I would not recommend using PGDG with AL2. Not to mention, that it now refuses to install on AL2 because it can't find /etc/redhat-release. You can still setup a repo file for yum, but again, I don't recommend it.
AL2 comes with a amazon-linux-extras tool. https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras
PostgreSQL 9.6 and 10 are included, as is PL/Perl.
You may have to do a bit more work to get the server setup, but you shouldn't have dependency issues since these packages are provided by the Amazon Linux team.
answered May 17 at 17:15
Jordan PickwellJordan Pickwell
112
112
add a comment |
add a comment |
A slightly modified version of the Amazon Linux YUM repository can be used to install the correct (el7) version of postgresql-server and thus, plperl:
[pgdg96]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
Installed packages:
$ rpm -qa | grep postgresql96
postgresql96-contrib-9.6.12-1PGDG.rhel7.x86_64
postgresql96-plperl-9.6.12-1PGDG.rhel7.x86_64
postgresql96-9.6.12-1PGDG.rhel7.x86_64
postgresql96-server-9.6.12-1PGDG.rhel7.x86_64
postgresql96-libs-9.6.12-1PGDG.rhel7.x86_64
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
add a comment |
A slightly modified version of the Amazon Linux YUM repository can be used to install the correct (el7) version of postgresql-server and thus, plperl:
[pgdg96]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
Installed packages:
$ rpm -qa | grep postgresql96
postgresql96-contrib-9.6.12-1PGDG.rhel7.x86_64
postgresql96-plperl-9.6.12-1PGDG.rhel7.x86_64
postgresql96-9.6.12-1PGDG.rhel7.x86_64
postgresql96-server-9.6.12-1PGDG.rhel7.x86_64
postgresql96-libs-9.6.12-1PGDG.rhel7.x86_64
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
add a comment |
A slightly modified version of the Amazon Linux YUM repository can be used to install the correct (el7) version of postgresql-server and thus, plperl:
[pgdg96]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
Installed packages:
$ rpm -qa | grep postgresql96
postgresql96-contrib-9.6.12-1PGDG.rhel7.x86_64
postgresql96-plperl-9.6.12-1PGDG.rhel7.x86_64
postgresql96-9.6.12-1PGDG.rhel7.x86_64
postgresql96-server-9.6.12-1PGDG.rhel7.x86_64
postgresql96-libs-9.6.12-1PGDG.rhel7.x86_64
A slightly modified version of the Amazon Linux YUM repository can be used to install the correct (el7) version of postgresql-server and thus, plperl:
[pgdg96]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch
baseurl=https://download.postgresql.org/pub/repos/yum/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
[pgdg96-source-updates-testing]
name=PostgreSQL 9.6 - Amazon Linux 2 - $basearch - Source
failovermethod=priority
baseurl=https://download.postgresql.org/pub/repos/yum/srpms/testing/9.6/redhat/rhel-7-$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-PGDG-96
Installed packages:
$ rpm -qa | grep postgresql96
postgresql96-contrib-9.6.12-1PGDG.rhel7.x86_64
postgresql96-plperl-9.6.12-1PGDG.rhel7.x86_64
postgresql96-9.6.12-1PGDG.rhel7.x86_64
postgresql96-server-9.6.12-1PGDG.rhel7.x86_64
postgresql96-libs-9.6.12-1PGDG.rhel7.x86_64
answered Feb 27 at 16:17
mrg2k8mrg2k8
6114
6114
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
add a comment |
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Note well that none of these packages are guaranteed to work with Amazon Linux. Even if they happen to work now, they may break in the future. If you need to be sure that it works, you should use a different distribution, e.g. the actual RHEL 7 for which they are packaged.
– Michael Hampton♦
Feb 27 at 16:48
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
Thanks for the heads-up. I had to configure an environment for testing only.
– mrg2k8
Feb 27 at 23:24
add a comment |
Thanks for contributing an answer to Server Fault!
- 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%2fserverfault.com%2fquestions%2f956000%2fhow-to-install-postgresql-9-6-and-plperl-on-amazon-linux-2%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