SearchAI Agents Installation
Steps to Set-Up SearchAI Agents
- Navigate to
/opt
and Download and unzip the SearchAI-Agents folder from the following link:
SearchAI Agents - Load the downloaded images into Docker by executing the following command:
docker load --input searchai-agents-builder.tar
docker load --input searchai-agents-viewer.tar
- To verify or ensure the images are successfully loaded, run the following command:(which lists the images)
docker images
- Navigate to
/opt/searchai-agents/.env
and edit the following lines from.env
file with the deployed URLs:
NEXTAUTH_URL= <ADD DEPLOYED IP_ADDRESS HERE>:8080
NEXT_PUBLIC_VIEWER_URL= <ADD IP_ADDRESS URL HERE>:8081
NOTE: Replace<ADD DEPLOYED IP_ADDRESS HERE>
with theip-address
of the server whereSearchAI Agents
is deployed. - Navigate to
/opt/ searchai-agents/docker-compose.yml
and modifydocker-compose.yml
file with the new images. Update the image fields foragent-builder
andagent-viewer
to match theSearchAI Agents
version as shown below:
agent-builder:
image: agent-builder:<latest version number>
Example:image: agent-builder:v1.3
agent-viewer:
image: agent-viewer:<latest version number>
Example :image: agent-viewer:v1.3
- To start the Docker containers run the following command:
nohup docker compose -f docker-compose.yml up &
- Navigate to the SearchBlox installation path
/opt/searchblox/webapps/ROOT/WEB-INF/searchai-config.yml
and editsearchai-config.yml
file with theip-address
of the server whereSearchAI Agents
is deployed from the previous steps.
searchai-agents-server: <ADD DEPLOYED server IP address>:8080
NOTE: Replace<ADD DEPLOYED server IP address>
with theip-address
of the server whereSearchAI Agents
is deployed. - Reload the system daemon to apply changes by running the following command:
systemctl deamon-reload
- Start the SearchBlox service by running the following command:
systemctl start searchblox
Updated 8 days ago