Prerequisite for installation
To install Cloudsoda Data Intelligence (DI), you need the following minimum requirements:
- Processor: 8-16 core processor
- Memory: 32 GB Ram
- Storage: 500GB – 2 TB SSD
- Connection: 10GB Ethernet Connection
- Operating system: RHEL 9 or Ubuntu 22.04
Download and install package
RHEL 9
To download and install the package, run these commands:
sudo su
curl https://dataintell-bucket.s3.ca-central-1.amazonaws.com/install/rhel-install.tar.gz >> install.tar
tar -xvf install.tar
cd rhel-install
./install-rhel9.sh | tee output.txt
Ubuntu 22.04
To download and install the package, run these commands:
sudo su
curl https://dataintell-bucket.s3.ca-central-1.amazonaws.com/install/ubuntu.tar.gz >> install.tar
tar -xvf install.tar
cd ubuntu
./install.sh | tee output.txt
Configure ElasticSearch database
Make sure your partition has enough storage space for the ElasticSearch data path /var/lib/elasticsearch/.
To show partitions, run the following command:
df -h
If your / partition is big enough, you can move to the Activate license step. If not, you can move data to /home by creating a new folder and moving the data to it using these commands:
mkdir /home/elasticsearch
cp -r /var/lib/elasticsearch /home/elasticsearch
chown -R elasticsearch:elasticsearch /home/elasticsearch
Once the data is relocated, you need to change the value of path.data in the configuration file elasticsearch.yml. To do so, use this command:
vi /etc/elasticsearch/elasticsearch.yml
And replace the path.data value with the new path:
/home/elasticsearch/elasticsearch/
Your elasticsearch.yml file should look like this:
Once the changes are done, you need to restart the ElasticSearch service with the following command:
systemctl restart elasticsearch
Activate license
To start using DataIntell, you need to activate your license.
Open a Web Browser and go to the IP address of the server.
Example: If your server is running on the IP 10.10.0.98, the address should be http://10.10.0.98.
You should see the login page of DataIntell. From there, you can login with the default user admin and the default password password.
Go in the General section of the settings and click on the Update license button. Copy and paste in the content of the license you were provided with.
Comments
0 comments
Article is closed for comments.