-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3571 from EnterpriseDB/release/2023-01-25
Release: 2023-01-25
- Loading branch information
Showing
12 changed files
with
82 additions
and
36 deletions.
There are no files selected for viewing
21 changes: 9 additions & 12 deletions
21
...aller/02_installing_postgresql_with_the_graphical_installation_wizard/index.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,24 @@ | ||
--- | ||
title: "Installing PostgreSQL with the Graphical Installation Wizard" | ||
title: "Installing PostgreSQL" | ||
legacyRedirects: | ||
- "/edb-docs/d/postgresql/installation-getting-started/installation-guide/13.0/installing_postgresql_with_the_graphical_installation_wizard.html" | ||
- "/edb-docs/d/postgresql/installation-getting-started/installation-guide-installers/11/PostgreSQL_Installation_Guide.1.07.html" | ||
- "/edb-docs/d/postgresql/installation-getting-started/installation-guide-installers/12/installing_postgresql_with_the_graphical_installation_wizard.html" | ||
- "/edb-docs/d/postgresql/installation-getting-started/installation-guide-installers/9.5/PostgreSQL_Installation_Guide.1.07.html" | ||
- "/edb-docs/d/postgresql/installation-getting-started/installation-guide-installers/9.6/PostgreSQL_Installation_Guide.1.07.html" | ||
- "/edb-docs/d/postgresql/installation-getting-started/installation-guide-installers/10/PostgreSQL_Installation_Guide.1.08.html" | ||
navigation: | ||
- windows | ||
- macos | ||
--- | ||
|
||
The graphical installation wizard provides a quick and easy way to install PostgreSQL on a Mac or Windows system. As the installation wizardβs easy-to-follow dialogs lead you through the installation process, specify information about your system. When the dialogs are complete, the setup wizard will perform an installation based on the selections made during the setup process. | ||
EDB installation wizards provide an easy way to install PostgreSQL on a Mac or Windows system. A series of dialogs lead you through the installation process, allowing you to specify information about your system. When the dialogs are complete, the wizard performs an installation based on the selections made during the setup process. | ||
|
||
!!! Note | ||
If you are invoking the graphical installer to perform a system upgrade, the installer will preserve the configuration options specified during the previous installation. | ||
If you are invoking the graphical installation wizard to perform a system upgrade, the installer will preserve the configuration options specified during the previous installation. | ||
|
||
When the PostgreSQL installation finishes, you will be offered the option to invoke the Stack Builder package manager. Stack Builder provides an easy-to-use graphical interface that downloads and installs applications, drivers and utilities and their dependencies. See [Using Stack Builder](../03_using_stackbuilder) for more information. | ||
When the PostgreSQL installation finishes, you are given the option to invoke the Stack Builder package manager. Stack Builder provides an easy-to-use graphical interface that downloads and installs applications, drivers, utilities, and their dependencies. See [Using Stack Builder](../03_using_stackbuilder) for more information. | ||
|
||
The graphical PostgreSQL installer is available on the [EDB website](http://www.enterprisedb.com/downloads/postgres-postgresql-downloads). | ||
The EDB graphical PostgreSQL installer is available on the [EDB website](http://www.enterprisedb.com/downloads/postgres-postgresql-downloads). | ||
|
||
The PostgreSQL installer is available on the [EDB website](https://www.enterprisedb.com/postgresql-early-experience). | ||
|
||
<div class="toctree" maxdepth="5"> | ||
|
||
invoking_the_graphical_installer | ||
|
||
</div> | ||
The PostgreSQL installer is also available on the [EDB website](https://www.enterprisedb.com/postgresql-early-experience). |
27 changes: 27 additions & 0 deletions
27
...aller/02_installing_postgresql_with_the_graphical_installation_wizard/macos.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
title: "Installing PostgreSQL on Mac OS X" | ||
navTitle: "On Mac OS X" | ||
--- | ||
|
||
EDB provides MacOS installers for PostgreSQL at the [downloads page of the EnterpriseDB website](https://www.enterprisedb.com/downloads/postgres-postgresql-downloads). These installers simplify the process of setting up a system. | ||
|
||
For a detailed walk-through of the installation process on Mac OS, see [this tutorial](https://www.enterprisedb.com/postgres-tutorials/installation-postgresql-mac-os). | ||
|
||
## Command line tools | ||
|
||
After installing PostgreSQL, you can run command line tools by referencing them in the `bin` directory under the installation path you specified during installation. For example, to run `psql` from the default installation directory, enter: | ||
|
||
```shell | ||
/Library/PostgreSQL/12/bin/psql -U postgres | ||
``` | ||
|
||
For ease of use, you may want to add this directory to your PATH by adding a line to your `~/.bash_profile` (or `~/.zshrc` if using zsh): | ||
|
||
```shell | ||
export PATH="/Library/PostgreSQL/12/bin/:$PATH" | ||
``` | ||
|
||
This step is *especially* important if you plan to use scripts or other software (such as Python's `psycopg2`) that rely on PostgreSQL tools. You may instead [add this directory to the system path](https://apple.stackexchange.com/questions/106355/setting-the-system-wide-path-environment-variable-in-mavericks/106814#106814). | ||
|
||
There are several other options for installing PostgreSQL on MacOS, with varying levels of flexibility, version support, add-ons, and so forth. More details can be found on [the PostgreSQL website](https://www.postgresql.org/download/macosx/). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fb3ebe8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Published on https://edb-docs-staging.netlify.app as production
π Deployed on https://63d1a14d5ccb58092dc21f54--edb-docs-staging.netlify.app
fb3ebe8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Published on https://edb-docs.netlify.app as production
π Deployed on https://63d1a4d342a9be0c0e4a94fb--edb-docs.netlify.app