You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed the instructions for setting up TimescaleDB on Ubuntu here and installed the package sudo apt install timescaledb-2-postgresql-13.
When I try to run timescaledb-tune, it's searching for postgres 14 config files. Here's the output:
exit: could not find postgresql.conf at any of these locations: /etc/postgresql/14/main/postgresql.conf /var/lib/pgsql/14/data/postgresql.conf /var/lib/postgres/data/postgresql.conf /var/lib/postgresql/data/postgresql.conf
My config file is located at /etc/postgresql/13/main/postgresql.conf.
I assume the package timescaledb-2-postgresql-13 should be looking for postgresql-13 config files, not postgresql-14? Following the instructions on that page verbatim installs postgres 13.
Running this command appears to work properly: sudo timescaledb-tune --conf-path=/etc/postgresql/13/main/postgresql.conf
The text was updated successfully, but these errors were encountered:
Same error with version 14
timescaledb-tune
exit: could not find postgresql.conf at any of these locations:
/etc/postgresql/15/main/postgresql.conf
/var/lib/pgsql/15/data/postgresql.conf
/var/lib/postgres/data/postgresql.conf
/var/lib/postgresql/data/postgresql.conf
timescaledb-tune is looking for version 15 and is not installed in the server
I found the error, please verify the version of psql client, it should be the same version of database.
To add to the answer from @agrega-dev, if installing postgresql-client via apt-get, make sure the version to be installed matches the installed postgres version. Also, run dpkg -l to verify that you only have one installed version, otherwise you will run into errors with timescale-tune unless you specifically pass it a config file.
I followed the instructions for setting up TimescaleDB on Ubuntu here and installed the package
sudo apt install timescaledb-2-postgresql-13
.When I try to run timescaledb-tune, it's searching for postgres 14 config files. Here's the output:
exit: could not find postgresql.conf at any of these locations:
/etc/postgresql/14/main/postgresql.conf
/var/lib/pgsql/14/data/postgresql.conf
/var/lib/postgres/data/postgresql.conf
/var/lib/postgresql/data/postgresql.conf
My config file is located at
/etc/postgresql/13/main/postgresql.conf
.I assume the package
timescaledb-2-postgresql-13
should be looking for postgresql-13 config files, not postgresql-14? Following the instructions on that page verbatim installs postgres 13.Running this command appears to work properly:
sudo timescaledb-tune --conf-path=/etc/postgresql/13/main/postgresql.conf
The text was updated successfully, but these errors were encountered: