Question: How do I tell Foxhound to use an HTTP port other than 80?
Answer: You can edit one or more of the following Windows command files to specify a different HTTP port:
C:\ProgramData\RisingRoad\Foxhound5\
$backup_foxhound5.bat
$start_foxhound5_default_browser_debug.bat
$start_foxhound5_default_browser.bat
$start_foxhound5_engine.bat
C:\ProgramData\RisingRoad\Foxhound5\scripts
$create_SQL_Anywhere_17_bin64_service.bat
$MULTI_Step_2_dbsrv_all.bat
$MULTI_Step_2b_dbsrv_one.bat
$run_most_recent_mini_restore.bat
$TEN_INSTANCES_2_dbsrv.bat
|
Look for a line inside each command file that says this:
-xs http(port=80;maxsize=0;to=600;kto=600)^
and change the 80 to something else, like 12345:
-xs http(port=12345;maxsize=0;to=600;kto=600)^
Then, look for a line that says this:
http://localhost/foxhound
and if you find it (all the "chrome", "firefox" and "ie" command files have it) change it like this:
http://localhost:12345/foxhound
See also...
How do I specify the HTTPS transport-layer security for Foxhound?
What HTTP port should I use for Foxhound?
IANA port number assignments
Can't start HTTP listener on address 127.0.0.1:80
Database server shutdown due to startup error
|