pg_upgrade with brew mac os 9.6.2 - 10.5
I've followed the excellent guide here to upgrade from 9.6.2 to 10.5 on mac os 10.11.6. When I get to the step 6
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/Cellar/postgres.old/
-D /usr/local/Cellar/postgres.new/
I get this error
check for "/usr/local/Cellar/postgresql/9.6.2/bin" failed: No such file or directory
even though mv /usr/local/Cellar/postgresql/9.6.2 /usr/local/Cellar/postgres.old
ran ok.
However when I go to
/usr/local/Cellar/postgresql/9.6.2/bin/: No such file or directory
Looking at
$ du -sh /usr/local/var/*/
148K /usr/local/var/homebrew/
917M /usr/local/var/log/
202G /usr/local/var/postgres96/
37M /usr/local/var/postgresql@9.6/
I think my data is still there (postgres96) but don't understand how to get to it and finish pg_upgrade
. Any help gratefully appreciated
EDIT;
I think i need to run something like the below to undo the error i made;
undo the move
mv /usr/local/Cellar/postgres.old /usr/local/Cellar/postgresql/9.6.2
Check that worked running
ls /usr/local/Cellar/post*
I should see a bin in the 9.6.2 direcotry and then i can initialize a new cluster data dir:
initdb /usr/local/var/postgres.new
then
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/var/postgres96/
-D /usr/local/var/postgres.new/
Is that correct?
Given I've backed up with pg_dump
postgresql homebrew postgresql-9.6 postgresql-10 pg-upgrade
|
show 3 more comments
I've followed the excellent guide here to upgrade from 9.6.2 to 10.5 on mac os 10.11.6. When I get to the step 6
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/Cellar/postgres.old/
-D /usr/local/Cellar/postgres.new/
I get this error
check for "/usr/local/Cellar/postgresql/9.6.2/bin" failed: No such file or directory
even though mv /usr/local/Cellar/postgresql/9.6.2 /usr/local/Cellar/postgres.old
ran ok.
However when I go to
/usr/local/Cellar/postgresql/9.6.2/bin/: No such file or directory
Looking at
$ du -sh /usr/local/var/*/
148K /usr/local/var/homebrew/
917M /usr/local/var/log/
202G /usr/local/var/postgres96/
37M /usr/local/var/postgresql@9.6/
I think my data is still there (postgres96) but don't understand how to get to it and finish pg_upgrade
. Any help gratefully appreciated
EDIT;
I think i need to run something like the below to undo the error i made;
undo the move
mv /usr/local/Cellar/postgres.old /usr/local/Cellar/postgresql/9.6.2
Check that worked running
ls /usr/local/Cellar/post*
I should see a bin in the 9.6.2 direcotry and then i can initialize a new cluster data dir:
initdb /usr/local/var/postgres.new
then
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/var/postgres96/
-D /usr/local/var/postgres.new/
Is that correct?
Given I've backed up with pg_dump
postgresql homebrew postgresql-9.6 postgresql-10 pg-upgrade
If you renamed postgresql to postgres.old postgresql/bin is now postgres.old/bin. HTH :-)
– kometen
Nov 10 '18 at 7:51
The error says that path doesn’t exist. And if you say you moved the files away from there that’s probably the reason. Why are you telling it to use nonexistent paths on the command line?
– Sami Kuhmonen
Nov 10 '18 at 7:51
@kometen Thanks for the hint but it doesn't think that's there eithercheck for "/usr/local/Cellar/postgresql.old/bin" failed: No such file or directory
– mapping dom
Nov 10 '18 at 7:58
@SamiKuhmonen those are the steps listed on that blog, I'm not familiar with the command line
– mapping dom
Nov 10 '18 at 8:00
@mappingdom What folders do you see if you issue a 'ls /usr/local/Cellar/post*'?
– kometen
Nov 10 '18 at 9:08
|
show 3 more comments
I've followed the excellent guide here to upgrade from 9.6.2 to 10.5 on mac os 10.11.6. When I get to the step 6
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/Cellar/postgres.old/
-D /usr/local/Cellar/postgres.new/
I get this error
check for "/usr/local/Cellar/postgresql/9.6.2/bin" failed: No such file or directory
even though mv /usr/local/Cellar/postgresql/9.6.2 /usr/local/Cellar/postgres.old
ran ok.
However when I go to
/usr/local/Cellar/postgresql/9.6.2/bin/: No such file or directory
Looking at
$ du -sh /usr/local/var/*/
148K /usr/local/var/homebrew/
917M /usr/local/var/log/
202G /usr/local/var/postgres96/
37M /usr/local/var/postgresql@9.6/
I think my data is still there (postgres96) but don't understand how to get to it and finish pg_upgrade
. Any help gratefully appreciated
EDIT;
I think i need to run something like the below to undo the error i made;
undo the move
mv /usr/local/Cellar/postgres.old /usr/local/Cellar/postgresql/9.6.2
Check that worked running
ls /usr/local/Cellar/post*
I should see a bin in the 9.6.2 direcotry and then i can initialize a new cluster data dir:
initdb /usr/local/var/postgres.new
then
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/var/postgres96/
-D /usr/local/var/postgres.new/
Is that correct?
Given I've backed up with pg_dump
postgresql homebrew postgresql-9.6 postgresql-10 pg-upgrade
I've followed the excellent guide here to upgrade from 9.6.2 to 10.5 on mac os 10.11.6. When I get to the step 6
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/Cellar/postgres.old/
-D /usr/local/Cellar/postgres.new/
I get this error
check for "/usr/local/Cellar/postgresql/9.6.2/bin" failed: No such file or directory
even though mv /usr/local/Cellar/postgresql/9.6.2 /usr/local/Cellar/postgres.old
ran ok.
However when I go to
/usr/local/Cellar/postgresql/9.6.2/bin/: No such file or directory
Looking at
$ du -sh /usr/local/var/*/
148K /usr/local/var/homebrew/
917M /usr/local/var/log/
202G /usr/local/var/postgres96/
37M /usr/local/var/postgresql@9.6/
I think my data is still there (postgres96) but don't understand how to get to it and finish pg_upgrade
. Any help gratefully appreciated
EDIT;
I think i need to run something like the below to undo the error i made;
undo the move
mv /usr/local/Cellar/postgres.old /usr/local/Cellar/postgresql/9.6.2
Check that worked running
ls /usr/local/Cellar/post*
I should see a bin in the 9.6.2 direcotry and then i can initialize a new cluster data dir:
initdb /usr/local/var/postgres.new
then
pg_upgrade -b /usr/local/Cellar/postgresql/9.6.2/bin/
-B /usr/local/Cellar/postgresql/10.5/bin/
-d /usr/local/var/postgres96/
-D /usr/local/var/postgres.new/
Is that correct?
Given I've backed up with pg_dump
postgresql homebrew postgresql-9.6 postgresql-10 pg-upgrade
postgresql homebrew postgresql-9.6 postgresql-10 pg-upgrade
edited Nov 10 '18 at 12:03
asked Nov 10 '18 at 7:46
mapping dom
2611317
2611317
If you renamed postgresql to postgres.old postgresql/bin is now postgres.old/bin. HTH :-)
– kometen
Nov 10 '18 at 7:51
The error says that path doesn’t exist. And if you say you moved the files away from there that’s probably the reason. Why are you telling it to use nonexistent paths on the command line?
– Sami Kuhmonen
Nov 10 '18 at 7:51
@kometen Thanks for the hint but it doesn't think that's there eithercheck for "/usr/local/Cellar/postgresql.old/bin" failed: No such file or directory
– mapping dom
Nov 10 '18 at 7:58
@SamiKuhmonen those are the steps listed on that blog, I'm not familiar with the command line
– mapping dom
Nov 10 '18 at 8:00
@mappingdom What folders do you see if you issue a 'ls /usr/local/Cellar/post*'?
– kometen
Nov 10 '18 at 9:08
|
show 3 more comments
If you renamed postgresql to postgres.old postgresql/bin is now postgres.old/bin. HTH :-)
– kometen
Nov 10 '18 at 7:51
The error says that path doesn’t exist. And if you say you moved the files away from there that’s probably the reason. Why are you telling it to use nonexistent paths on the command line?
– Sami Kuhmonen
Nov 10 '18 at 7:51
@kometen Thanks for the hint but it doesn't think that's there eithercheck for "/usr/local/Cellar/postgresql.old/bin" failed: No such file or directory
– mapping dom
Nov 10 '18 at 7:58
@SamiKuhmonen those are the steps listed on that blog, I'm not familiar with the command line
– mapping dom
Nov 10 '18 at 8:00
@mappingdom What folders do you see if you issue a 'ls /usr/local/Cellar/post*'?
– kometen
Nov 10 '18 at 9:08
If you renamed postgresql to postgres.old postgresql/bin is now postgres.old/bin. HTH :-)
– kometen
Nov 10 '18 at 7:51
If you renamed postgresql to postgres.old postgresql/bin is now postgres.old/bin. HTH :-)
– kometen
Nov 10 '18 at 7:51
The error says that path doesn’t exist. And if you say you moved the files away from there that’s probably the reason. Why are you telling it to use nonexistent paths on the command line?
– Sami Kuhmonen
Nov 10 '18 at 7:51
The error says that path doesn’t exist. And if you say you moved the files away from there that’s probably the reason. Why are you telling it to use nonexistent paths on the command line?
– Sami Kuhmonen
Nov 10 '18 at 7:51
@kometen Thanks for the hint but it doesn't think that's there either
check for "/usr/local/Cellar/postgresql.old/bin" failed: No such file or directory
– mapping dom
Nov 10 '18 at 7:58
@kometen Thanks for the hint but it doesn't think that's there either
check for "/usr/local/Cellar/postgresql.old/bin" failed: No such file or directory
– mapping dom
Nov 10 '18 at 7:58
@SamiKuhmonen those are the steps listed on that blog, I'm not familiar with the command line
– mapping dom
Nov 10 '18 at 8:00
@SamiKuhmonen those are the steps listed on that blog, I'm not familiar with the command line
– mapping dom
Nov 10 '18 at 8:00
@mappingdom What folders do you see if you issue a 'ls /usr/local/Cellar/post*'?
– kometen
Nov 10 '18 at 9:08
@mappingdom What folders do you see if you issue a 'ls /usr/local/Cellar/post*'?
– kometen
Nov 10 '18 at 9:08
|
show 3 more comments
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%2f53237011%2fpg-upgrade-with-brew-mac-os-9-6-2-10-5%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53237011%2fpg-upgrade-with-brew-mac-os-9-6-2-10-5%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
If you renamed postgresql to postgres.old postgresql/bin is now postgres.old/bin. HTH :-)
– kometen
Nov 10 '18 at 7:51
The error says that path doesn’t exist. And if you say you moved the files away from there that’s probably the reason. Why are you telling it to use nonexistent paths on the command line?
– Sami Kuhmonen
Nov 10 '18 at 7:51
@kometen Thanks for the hint but it doesn't think that's there either
check for "/usr/local/Cellar/postgresql.old/bin" failed: No such file or directory
– mapping dom
Nov 10 '18 at 7:58
@SamiKuhmonen those are the steps listed on that blog, I'm not familiar with the command line
– mapping dom
Nov 10 '18 at 8:00
@mappingdom What folders do you see if you issue a 'ls /usr/local/Cellar/post*'?
– kometen
Nov 10 '18 at 9:08