Oempro Installation

Oempro Installation

Oempro Installation

ℹ️
If you haven’t prepared your server for Oempro installation yet, please read Server Setup chapter first.

In the previous chapter, we have prepared our server for Oempro installation. Now, we will proceed with preparing the Oempro directory and executing the install utility.

  1. Unzip the Oempro package:
  2. cd /opt/oempro/
    unzip oemproXXX.zip
  3. Change file permissions:
  4. chmod -R 0755 install/install.sh
    chmod -R 0777 data
    chmod -R 0777 system/storage/
    chmod -R 0777 system/bootstrap/cache/
    mkdir _dockerfiles/elasticsearch/data
    chmod -R 0777 _dockerfiles/elasticsearch/data
    mkdir _dockerfiles/mysql/data
    chmod -R 0777 _dockerfiles/mysql/data
    mkdir _dockerfiles/mysql/log
    chmod -R 0777 _dockerfiles/mysql/log
    mkdir _dockerfiles/rabbitmq/data
    chmod -R 0777 _dockerfiles/rabbitmq/data
    mkdir _dockerfiles/redis/data
    chmod -R 0777 _dockerfiles/redis/data
  5. Register the installation domain and download the license.dat file from Octeth Client Area
  6. Execute the installer script:
  7. cd install/
    ./install.sh
  8. Answer the questions and the installer script will initialize the Oempro environment:
  9. >>> Do you want to generate passwords automatically? [Y/N] => Y
    >>> Are you ready?(y,n) [n]? y
    >>> Enter MySQL host: [localhost] 192.168.99.108
    >>> Enter MySQL port: [3306] 3306
    >>> Enter MySQL database name: [oempro] oempro
    >>> Enter MySQL username: [] oempro
    >>> Enter MySQL password: [] *********

    The information displayed above is for information only. During the install.sh installation process, the installer will display you the correct information based on your system settings.

  10. Once prompted on your terminal screen, enter requested information such as application path, application URL, MySQL credentials, administrator account information to continue with the installation process:
  11. You may refer to these default values:

    >>> Application Path: /var/www/html
    >>> Application URL: http://your-oempro-domain.com
    >>> MySQL Host: 192.168.99.108
    >>> MySQL Username: oempro
    >>> MySQL Password: ****** (your MySQL password will be displayed to you during the installation process)
    >>> MySQL Database: oempro
    >>> Administrator Name: **** *****
    >>> Administrator Email Address: ******@*****.***
    >>> Administrator Username: ******
    >>> Administrator Password: ******

    Once you click the button, the web based installation utility will complete the process and display a success screen.

  12. As the last step, configure the inbound email gateway SMTP server. Simply change your directory to:
  13. cd /opt/oempro/_dockerfiles/inbound-smtp-server
  14. Create the config.json file based on the example file:
  15. cp config.json.example config.json
  16. Copy the ADMIN API Key from /opt/oempro/data/config.inc.php file and add it to the `config.json` file:
  17. cat /opt/oempro/data/config.inc.php | grep ADMIN_API_KEY
    vi cd /opt/oempro/_dockerfiles/inbound-smtp-server/config.json
  18. Paste your ADMIN API key to the config.json file:
  19. {
      "Debug": false,
      "Listen": [
        ":25"
      ],
      "AppName": "Oempro SMTP Server",
      "Hostname": "test.local",
      "AdminAPIKey": "<<< PLACE YOUR ADMIN API KEY HERE >>>",
      "EmailMaxSizeKB": 100,
      "SMTPTimeout": 15,
      "Certificate": "",
      "PrivateKey": "",
      "MaxConnectionLimit": 1500,
      "LogFiles": {
        "Connections": "./log_connections.log",
        "Authentications": "./log_authentications.log"
      },
      "OemproAPIUrl": "http://192.168.99.101/api.php"
    }%

Installation is completed.

Before using Oempro, please make sure that you either delete or rename the install directory:

rm -rf /opt/oempro/install

Now you can login to the admin area to start setting up your system:

http://your-oempro-domain.com/app/admin/

Next →

SSL Certificates
SSL Certificates
💠
image

Footer Social Icons

©Copyright Octeth, Inc. All rights reserved.