aboutsummaryrefslogtreecommitdiff
path: root/web/howto_psql
diff options
context:
space:
mode:
authorcly <clyhtsuriva@gmail.com>2020-03-22 13:15:09 +0100
committercly <clyhtsuriva@gmail.com>2020-03-22 13:15:09 +0100
commit8850bb41eb9ef803e33a876e9017f378fc74637b (patch)
treee3ff73495092ee8efb5d35d2e8c7176387117a8e /web/howto_psql
parent126f0be550539ba2dda2bb8ae508bd9e67f0973d (diff)
renamed and modified
Diffstat (limited to 'web/howto_psql')
-rw-r--r--web/howto_psql35
1 files changed, 35 insertions, 0 deletions
diff --git a/web/howto_psql b/web/howto_psql
new file mode 100644
index 0000000..4da0d3e
--- /dev/null
+++ b/web/howto_psql
@@ -0,0 +1,35 @@
+#in order to make things right, you should check the following comments to visualize and use properly the PSQL database.
+
+#assuming that you installed psql prior
+#https://www.postgresql.org/download/linux/debian/
+
+#create the user
+adduser atsuser
+#use the password '123456'
+
+#connect as postgres
+su - postgres
+
+#launch the psql terminal
+psql
+
+#create the user that we use in our scripts
+CREATE USER atsuser WITH PASSWORD '123456';
+
+#create our databse
+CREATE DATABASE atsdb;
+
+#grant the privileges to our user
+GRANT ALL PRIVILEGES ON DATABASE atsdb to atsuser;
+
+#quit
+Ctrl+D
+
+#log in as atsuser
+su - atsuser
+
+#launch psql with our user and our database
+psql -d atsdb -U atsuser
+
+#initialize the tables
+\i /WHATEVER_PATH_YOUR_INIT_IS_IN/init-bd.sql