Setting up the Server in DataIntell
In the DataIntell application, go to the Data Settings section and add a new server. Remember the Id value as it is necessary for setting up the Linux scanner.
Download and install package
To download and install the package, run these commands:
sudo su curl https://dataintell-bucket.s3.ca-central-1.amazonaws.com/install/linux_scanner.tar.gz >> install.tar tar -xvf install.tar cd linux_scanner ./install_linux_scanner.sh | tee output.txt
Setting up the scanner
To set up the scanner, it will need to have the previously mentioned Id and the IP Address of the main server hosting the DataIntell API. To add these values, run these commands:
sudo su systemctl stop dataintell-scanner vi /usr/local/dataintell/scanner/application.properties # Here are the lines to change in the file where {IPAddress} is the IP Address of the main server and ID is the previously mentioned Id elasticsearch.host={IPAddress} spring.datasource.url=jdbc:postgresql://{IPAddress}:5432/dataintell dataintell.scanner.postgresql.url=jdbc:pgsql://{IPAddress}:5432/dataintell dataintell.server.id={ID} systemctl start dataintell-scanner
Comments
0 comments
Article is closed for comments.