Difference between revisions of "Installing Onepoint"

From Onepoint Systems Integration
Jump to: navigation, search
(Virtual Appliance (large OVA))
Line 42: Line 42:
  
 
= Installation Script =
 
= Installation Script =
You can also install Onepoint through its installation script. The video and detailed steps below shows the process.
+
You can also install Onepoint through its [[Installing Onepoint through Installation Script|installation script]].
 
 
<youtube width="560" height="315" style="thumb">GAMU4iGgqLQ</youtube>
 
 
 
== Preparing the machine ==
 
* CentOS 7
 
* MariaDB 10 or later, or MySQL 7 or later
 
* EPEL Repository (epel-release-7)
 
* Python 2.7 + pip (up2date, it depends on) + paramiko (Python Module)
 
* Git Client
 
* psmisc package
 
== Create app folder ==
 
Create folder /home/_onepoint_root
 
== Create onepoint user ==
 
You need to create a onepoint user, give the ownership of /home/_onepoint_root to it, and login with this user to continue.
 
== Clone the repository ==
 
Clone the repository in /home/_onepoint_root/update
 
 
 
  ]$ cd /home/_onepoint_root
 
  ]$ git clone git@bitbucket.org:netbr-onepoint-installer.git update
 
 
 
== Execute the installation script ==
 
 
 
  ]$ /home/_onepoint_root/update/managed-installer
 
 
 
Installer will check the pre-reqs, and if anyone is missing, it will install the necessary packages. In this case, after the pre-reqs installation, you will need to run the installer again.
 
 
 
== Parameter configuration ==
 
 
 
Need to configure parameters on /home/_onepoint_root/config/web
 
 
 
== Run the update script ==
 
 
 
Run the update script (To run this script, you already need to have the license installed - after our team instructions on licensing)
 
 
 
  ]$ /home/_onepoint_root/update/managed-update
 
 
 
After updating, this script will return a error message for the connection on the executor app, and this error can be ignored.
 
It occurrs because there are still pending configurations to perform.
 
 
 
== Configure the web server ==
 
 
 
Create a symbolic link or alias named /onepoint such that the path points to /home/_onepoint_root/web and make sure it's accessible.
 
 
 
== Initizalize the database ==
 
 
 
Open a web browser and run http://[SERVER]/onepoint/initialize/zero
 
 
 
== Test the web endpoint ==
 
 
 
Open http://<SERVER>/onepoint
 
Login screen must appear
 
 
 
== Start task executor ==
 
 
 
Start executor through script /home/_onepoint_root/update/managed-start-worker
 

Revision as of 08:55, 2 November 2018

You have some options for downloading Onepoint Systems Integration.

Licensing considerations

After registering on our website (http://onepoint.net.br), you will until 24 hours receive a license file with instructions on how to install. For using and updating the product, and having access to its features, you will need to install this license.

Package Repository

Fedora 24/25/26/27/28

Install the repository for your operating system version below. After this, install the onepoint package, through dnf:

 ]# dnf install http://repo.onepoint.net.br/yum/fedora/repo/onepoint-repo-0.1-1fedora.noarch.rpm
 ]# dnf install onepoint

Links

Red Hat Enterprise Linux 7

Install the repository for your operating system version below. After this, install the onepoint package, through yum:

 ]# yum install http://repo.onepoint.net.br/yum/rhel/repo/onepoint-repo-0.1-1rhel.noarch.rpm
 ]# yum install onepoint

Links

CentOS 7

Install the repository for your operating system version below. After this, install the onepoint package, through yum:

 ]# yum install http://repo.onepoint.net.br/yum/centos/repo/onepoint-repo-0.1-1centos.noarch.rpm
 ]# yum install onepoint

Links

Virtual Appliance (large OVA)

Virtual Appliance in OVF format To get this file, please contact our team;

Installation Script

You can also install Onepoint through its installation script.