Skip to content

Commit b92d4d7

Browse files
authored
Fix port typo in README: 5442->5432 (#337)
1 parent b9b2717 commit b92d4d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ docker run --name citus_standalone -p 5432:5432 -e POSTGRES_PASSWORD=<postgres_p
2727
You should change '<postgres_password>' with a password you want. You should now be able to connect to `127.0.0.1` on port `5432` using e.g. `psql` to run a few commands (see the Citus documentation for more information).
2828

2929
```bash
30-
psql -h 127.0.0.1 -p 5442 -U postgres
30+
psql -h 127.0.0.1 -p 5432 -U postgres
3131
```
3232
Password will be requested and you should enter the password you provided as parameter 'POSTGRES_PASSWORD' in the previous step (<postgres_password>)
3333
As with the PostgreSQL image, the default `PGDATA` directory will be mounted as a volume, so it will persist between restarts of the container. But while the above _will_ get you a running Citus instance, it won’t have any workers to exercise distributed query planning. For that, you may wish to try the included [`docker-compose.yml`][compose-config] configuration.

0 commit comments

Comments
 (0)