Installing VERDE (RPM) 8.3.4 and Above with Postgres Database on Single Server

Installing VERDE (RPM) 8.3.4 and Above with Postgres Database on Single Server

Product Line:  VERDE

***As A Reminder:  If the customer plans to only install VERDE on one server, there are less changes to consider.  This means probably no more than 15 - 20 VDI users or approximately 50 Container users.***


Install the Centos 7 server as previously performed:

  • Burn Centos 7 Minimal to a CD/DVD or USB
    • Install the OS
    • Select your time zone
    • Enable the Network Interface
    • Modify Networking for Static or Manual IP
      • You can specify your Gateway IP
      • You can specify your DNS server IP
    • Use the entire storage area on the server
    • Create a root password
    • Allow a reboot and remove the CD/DVD or USB
  • Create the following file via the vi command:
          vi /etc/security/limits.d/95-verde.conf
    Add the following lines of data:
    * - nproc -1
    * - nofile 65535

Run the following linux updates.
    yum -y update

NOW, this is where the database is installed.
      Access this article's attachment entitled install-postgresql.sh
      SSH it to your VERDE server. 
      Once it copies, change it to an executable via the following command
            chmod a+x install-postgresql.sh 
     
      Run the install:
            ./install-postgresql.sh 

      The install will run and you'll see the following:
Running transaction
  Installing : pgdg-redhat-repo-42.0-32.noarch                                                                                                                                1/1
  Verifying  : pgdg-redhat-repo-42.0-32.noarch                                                                                                                                1/1

Installed:
  pgdg-redhat-repo.noarch 0:42.0-32

Complete!
Please enter the preferred posgresql version, or press Ctrl+C to exit
Supported versions [11|12|13|14|15]:

At this writing, our software is compatible with version 13.  Enter 13
 
The database installs then, you need to provide a password,  You'll see the following:


Enter a password... DON'T FORGET IT!  You'll need to enter it twice.
After entering the password twice, you'll see the following:
ALTER ROLE
Create a new DB that we will use for Verde:

Enter a database name.  I'm typing in verde2


Then you're asked the IP to listen on.  Enter your VERDE server's IP address.  Mine is 192.168.1.12
Then your asked to set the IP range.  Mine is a class C so:   192.168.1.0/24

That part's done!
Now with those setting, populate the following file:

/tmp/dbsettings

with the same values.  Here's my file:

host = 192.168.1.12
port = 5432
dbname = verde2
dbuser = postgres
dbpass = pass



Now, export the next file as follows:

export VERDE_DB_SETTINGS_FILE=/tmp/dbsettings

VERDE Install
Now, move your VERDE rpm's to the server and unzip them.  unzip VERDE*****

And install the rpm's
      yum -y install win4/cut/PKG/VERDE*





Now, run the VERDE configuration as usual.

      /usr/lib/verde/bin/verde-config -i

Finally, you'll need to stop and disable the firewalld

systemctl stop firewalld

systemctl disable firewalld