Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
tutorial:adm:server_preparation_tmp [2020/03/10 11:46]
urbanl [Instalation and software configuration]
tutorial:adm:server_preparation_tmp [2020/03/10 15:08]
urbanl [TODO]
Line 68: Line 68:
 </code> </code>
 #TODO #TODO
-  * Software installation on CentOS7(versions can vary):+  * Software installation on CentOS8(versions can vary):
 <code bash> <code bash>
-add repository +enable module postgres 12 
-yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm +yum module enable postgresql:12 
-# disable centos8 build-in module +yum install -y postgresql-server postgresql-contrib postgresql-libs
-yum module disable postgresql +
-# install postgresql components +
-yum install -y postgresql11-server postgresql11-contrib pgstat2_11 pg_top11  postgresql11-libs+
 </code> </code>
  
   * create new system directory:   * create new system directory:
 +
 <code> <code>
 mkdir -p /data/pgsql/11/data/ mkdir -p /data/pgsql/11/data/
Line 84: Line 82:
 chmod 700 /data/pgsql chmod 700 /data/pgsql
 </code> </code>
 +
   * Copy of the configuration file for systemd, in which we will make change of directory for data:   * Copy of the configuration file for systemd, in which we will make change of directory for data:
 <code bash> <code bash>