SearchAI Agents Installation
Steps to Set-Up SearchAI Agents
- Navigate to
/optand 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/.envand edit the following lines from.envfile 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-addressof the server whereSearchAI Agentsis deployed. - Navigate to
/opt/ searchai-agents/docker-compose.ymland modifydocker-compose.ymlfile with the new images. Update the image fields foragent-builderandagent-viewerto match theSearchAI Agentsversion 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.ymland editsearchai-config.ymlfile with theip-addressof the server whereSearchAI Agentsis deployed from the previous steps.
searchai-agents-server: <ADD DEPLOYED server IP address>:8080
NOTE: Replace<ADD DEPLOYED server IP address>with theip-addressof the server whereSearchAI Agentsis 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 11 months ago
