In this article
Table of Contents | ||
---|---|---|
|
...
Groundplex installation covers the following tasks:
For prerequisites, see Groundplex Deployment Planning.
Note |
---|
Linux-based Groundplex Installation Tips
|
Setting up a Groundplex
Log into SnapLogic Manager as an Org admin.
Navigate to the project where you want to create your Groundplex, and perform one of the following steps:
Click the Snaplex tab, then click to display the Snaplex dialog.
OR
Click to display the Assets drop-down list, then select Snaplex; the Snaplex dialog appears.
Enter the required information on the Create Snaplex form. Once completed, the Downloads tab on the Snaplex popup appears. The Downloads tab has links to the installer and configuration files.
Download the RPM or DEB-based installer and configuration files onto a Linux machine, where <filename> is the name of the current installer file and
fontconfig
andzip
are the required dependencies:For CentOS (or Redhat) 6.3 or newer, run the following commands:
$ sudo yum install fontconfig zip
$ sudo rpm -i <filename>.rpm
For Ubuntu 14.04 or newer, run the following command:
$ sudo apt-get install fontconfig zip
$ sudo dpkg -i <filename>.deb
After the software is installed, place the downloaded configuration file in the
/opt/snaplogic/etc
directory and make sure the file name ends with.slpropz
. Change the .slpropz
file so that snapuser owns it by running the following commands:Code Block $ sudo chown snapuser:snapuser /opt/snaplogic/etc/myplex.slpropz $ sudo chmod 600 /opt/snaplogic/etc/myplex.slpropz
To start the Snaplex service, run:
$ sudo /opt/snaplogic/bin/jcc.sh start
To verify that the Snaplex has started, visit https://elastic.snaplogic.com/sl/dashboard.html#Health. The newly installed Snaplex node should appear in the list of nodes for the Snaplex.
...
Info |
---|
FeedMaster InstallationUltra Pipelines require that you set up a FeedMaster along with the JCC (Java Component Container) nodes in your Groundplex. For details, see Deploying a FeedMaster Node. |
...
Code Block |
---|
mount --bind /workspace/fs /opt/snaplogic/run/fs mount --bind /workspace/broker /opt/snaplogic/run/broker mount --bind /workspace/tmp /tmp |
Workspace | Bind Mount | Ownership | Permissions |
---|---|---|---|
/workspace/fs | /opt/snaplogic/run/fs | snapuser:snapuser | 0775 |
/workspace/broker | /opt/snaplogic/run/broker | snapuser:snapuser | 0775 |
/workspace/tmp | /tmp | snapuser:snapuser | 0775 |
...
Info |
---|
To ensure that the changes remain in effect after system reboots, it is necessary to create entries in |
...
Remove all content from the /etc/snaplogic and /opt/snaplogic folders by running the following commands:
$ rpm -qa | grep snaplogic
$ sudo rpm -e snaplogic-sidekick-4.main_9292-1.x86_64
$ sudo rm -rf /opt/snaplogic
$ sudo rm -rf /etc/snaplogic
Verify that the packages were deleted from the /etc/snaplogic and /opt/snaplogic folders.
...