aboutsummaryrefslogtreecommitdiffstats
path: root/web/help.txt
diff options
context:
space:
mode:
authorcly <clyhtsuriva@gmail.com>2020-03-22 13:09:02 +0100
committercly <clyhtsuriva@gmail.com>2020-03-22 13:09:02 +0100
commit126f0be550539ba2dda2bb8ae508bd9e67f0973d (patch)
tree6560987176c9a1e84555bdf26d50f9d31ccca48c /web/help.txt
parent85534f576e13cbb05d48f2c8210c917a38085c3a (diff)
downloadATS-126f0be550539ba2dda2bb8ae508bd9e67f0973d.tar.gz
ATS-126f0be550539ba2dda2bb8ae508bd9e67f0973d.tar.bz2
ATS-126f0be550539ba2dda2bb8ae508bd9e67f0973d.zip
howto psql
Diffstat (limited to '')
-rw-r--r--web/help.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/web/help.txt b/web/help.txt
new file mode 100644
index 0000000..fc3d38e
--- /dev/null
+++ b/web/help.txt
@@ -0,0 +1,35 @@
+#in order to make thing 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