## Prerequisites
Install OpenJDK 11 by running the following command: `
sudo yum install java-11-openjdk-devel -y
`Verify the java installation by running the following command: `
java -version
`Install wget by running the following command: `
yum install wget -y
`Increase the map count by running the following command: `
sysctl -w vm.max_map_count=262144
` Add the line to the file to set this permanently in **/etc/sysctl.conf** : `vm.max_map_count=262144
`To check the map count you can use the following command: `
sysctl -q vm.max_map_count
`Increase ulimit value and validate system settings
To change the file descriptor setting, add the line to the file **/etc/sysctl.conf**. `
fs.file-max=100000
` to it.Apply the changes by running the following command: `
sysctl -p
`To change the ulimit setting, edit the file **/etc/security/limits.conf** and set the hard and soft limits: `
* soft nofile 100000
` `* hard nofile 100000
`After these changes, please reboot the server by running the following command: `
reboot
`Check the ulimit settings by running the following command: `
ulimit -a
`
## Installation
Please login as root using **sudo su** if you are not the root user.
Create a SearchBlox user by running the following commands: `
sudo adduser searchblox
` `sudo passwd searchblox
`SearchBlox has to be installed in /opt folder, so change the directory to /opt by running the following command: `
cd /opt
`Download SearchBlox rpm package by running the following command: `
sudo wget https://d2fco3ozzrfhhd.cloudfront.net/v10.2/searchblox-10.2-0.noarch.rpm
`Install the rpm package by running the following command: `
sudo rpm -ivh searchblox-10.2-0.noarch.rpm
`Change permission for few folders by running the following commands: `
sudo chown -R searchblox:searchblox /opt/searchblox
` `sudo chmod -R 755 /opt/searchblox/bin
` `sudo chmod -R 755 /opt/searchblox/elasticsearch/bin
` `sudo chmod -R 755 /opt/searchblox/analytics
` `sudo chmod -R 755 /opt/searchblox/logs
` `sudo chmod -R 755 /opt/searchblox/elasticsearch/logs
` `sudo chmod -R 755 /opt/searchblox/connectors
`Start SearchBloxv services by running the following command: `
systemctl start searchblox
`
Note:
SearchBlox service will start elasticsearch and analytics services internally unlike previous versions. If service start up gives any issues, enable searchblox.service using the command below: `
systemctl daemon-reload
`
Stop SearchBlox services by running the following command: `
systemctl stop searchblox
`To verify the status of the SearchBlox service please use the following command: `
systemctl status searchblox
`
## Verify Installation
After you start the services, wait for 30 seconds then go to `
HTTPS://<Hostname or Host IP>:8443/console/
` to access the SearchBlox Management Console.You can also verify if SearchBlox has started successfully by viewing the **status.log** file in the `
/opt/searchblox/webapps/ROOT/logs
` folder.Please confirm the message "Started Successfully" is shown in the log.
In case of any errors, this log will provide additional information for troubleshooting.
Note
To learn more on Troubleshooting visit: [Logging and Troubleshooting](🔗)
To learn about accessing SearchBlox visit: [Overview of SearchBlox](🔗)
To learn about tuning after installation visit: [Installation Tuning](🔗)
SearchBlox Admin Console Access using IP Address or Domain Name
You can use your IP instead of localhost in the URL to access the SearchBlox Admin Console.
If a domain name is mapped to the IP address, you can use the domain name: https://exampledomain:port/console https://exampledomain:port/search/index.html
## Change SearchBlox Server Port
SearchBlox Server runs on port **8443** by default.
You can change the port by following the steps as shown in the following:
Stop SearchBlox service
Edit the file _/opt/searchblox/start.d/https.ini_ and add the below line to set the required port number: `
jetty.ssl.port=443
`Save the file **https.ini**
Start SearchBlox service
Port Update
Fix the permission denied error while using searchblox service on less than ports 1024, run the below commands: Check the Java Path
# `
readlink -f $(which java)
`Set the capability to bind low ports for non-root searchblox user.
# `
setcap cap_net_bind_service+ep <javapath>
`
## Uninstall
Uninstall or remove SearchBlox by running the following command:
`yum remove searchblox
`
Note
For clean SearchBlox uninstallation, it is required to remove SearchBlox directory, `
/opt/searchblox
` manually by running the following command: `rm -rf /opt/searchblox
`
## Disk Encryption
Additional Disk is required for disk encryption
Installation of cryptsetup for RHEL / CentOS `
yum install cryptsetup-luks
`LUKS Format disk Note: while formatting the disk we have to give some password `
cryptsetup luksFormat /dev/sdb
`
Luks open Note: We have to use the password created earlier while formatting the disk. `
cryptsetup luksOpen /dev/sda data
`
Create a filesystem `
mkfs -t ext4 /dev/mapper/data
`
Mounting the new file system at `
/opt
` `mount /dev/mapper/data /opt
`To get UUID `
blkid /dev/mapper/data
`
We need to add the UUID into `
/etc/fstab
` like this and save it Note: We need to add the UUID into `etc/fstab
` file
To close encryption `
cryptsetup luksClose /dev/mapper/data
`To open encryption `
cryptsetup luksOpen /dev/mapper/data
`
## CentOS Full Disk Encryption
Important Note
Before installation of OS, the entire root volume can be encrypted using the following steps for GUI based CentOS systems
To enable the disk encryption please go to installation destination

While installing Centos7 Installation **Enable the Encryption**.

Next create Disk Encryption Passphrase.

On reboot you would get the following prompt to enter the passphrase so that you can successfully unlock the drive:

Please use the command as in the following screenshot to verify the disk Encryption
