yum install -y java-11-openjdk yum install -y yum-utils # Install PostgreSQL repo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm # Install PostgreSQL yum install -y postgresql11 postgresql11-server # Initialize PostgreSQL database /usr/pgsql-11/bin/postgresql-11-setup initdb # Allow trust connection from localhost sed -i 's/ident/trust/g' /var/lib/pgsql/11/data/pg_hba.conf # Autostart PostgreSQL systemctl enable postgresql-11 # Run PostgreSQL systemctl start postgresql-11 # Install lsFusion repo yum-config-manager --add-repo https://download.lsfusion.org/yum # Import lsFusion GPG Key rpm --import https://download.lsfusion.org/yum/GPG-KEY-lsfusion # Install lsFusion server and client yum install -y lsfusion2-server lsfusion2-client # Autostart lsFusion server and client systemctl enable lsfusion2-server systemctl enable lsfusion2-client # Run lsFusion server and client systemctl start lsfusion2-server systemctl start lsfusion2-client