Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeRDark
su - postgres
/usr/pgsql-9.6/bin/postgresqlpostgres &

9. Enter Postgresql console

...

Code Block
languagesql
themeRDark
\сc wcsstat
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO "wcsoam";

12. Initialize Timescale extension

Code Block
languagesql
themeRDark
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;

13. Create DB to store stream history and data acquisition settings

Code Block
languagesql
themeRDark
CREATE DATABASE wcsoam;
\c wcsoam
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA public TO "wcsoam";

1314. Exit Postgresql console

...