Start Fredhopper processes. For a development box, usually this would run as a scheduled task. Just run start-Fredhopper.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd d:\fredhopper | |
bin\deployment-agent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
start start-deployment-agent.bat | |
echo Launched deployment agent in separate window | |
echo. | |
echo Pausing before starting the instance | |
timeout 30 | |
echo. | |
echo Starting instance... | |
cd d:\fredhopper | |
bin\instance indexer | |
echo Launched instance in separate window | |
echo. | |
echo Done! | |
pause 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment