← back to Billy Website
Fix port mismatch (5300 to 9100) and stale labels in shell scripts
30265595148bb4c348ed9496ecaa6d9ea29a5758 · 2026-05-18 20:07:57 -0700 · SteveStudio2
Files touched
M start.shM status.shM stop.sh
Diff
commit 30265595148bb4c348ed9496ecaa6d9ea29a5758
Author: SteveStudio2 <steve@designerwallcoverings.com>
Date: Mon May 18 20:07:57 2026 -0700
Fix port mismatch (5300 to 9100) and stale labels in shell scripts
---
start.sh | 6 +++---
status.sh | 18 +++++++++---------
stop.sh | 2 +-
3 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/start.sh b/start.sh
index a19298e..c73f3be 100755
--- a/start.sh
+++ b/start.sh
@@ -1,8 +1,8 @@
#!/bin/bash
-# Startup script for Laurel Canyon Rental Website
+# Startup script for Bill Fox San Diego Rental Website
-echo "🎸 Starting 2755 Carmar Drive Website Server..."
+echo "🏖️ Starting 3306 Lloyd Street Website Server..."
# Kill any existing instances
pkill -9 -f "node server.js" 2>/dev/null
@@ -19,7 +19,7 @@ sleep 2
# Check if server is running
if pgrep -f "node server.js" > /dev/null; then
echo "✅ Server started successfully!"
- echo "🌐 Access at: http://localhost:5300/"
+ echo "🌐 Access at: http://localhost:9100/"
echo "📝 Logs: server.log"
echo ""
echo "To stop the server, run: pkill -f 'node server.js'"
diff --git a/status.sh b/status.sh
index 6584df0..cc778da 100755
--- a/status.sh
+++ b/status.sh
@@ -1,9 +1,9 @@
#!/bin/bash
-# Status check for Laurel Canyon Rental Website
+# Status check for Bill Fox San Diego Rental Website
echo "═══════════════════════════════════════════════════════════"
-echo "🎸 2755 Carmar Drive - Server Status"
+echo "🏖️ 3306 Lloyd Street - Server Status"
echo "═══════════════════════════════════════════════════════════"
# Check if process is running
@@ -13,18 +13,18 @@ if pgrep -f "node server.js" > /dev/null; then
echo " PID: $PID"
# Check if port is listening
- if netstat -tlnp 2>/dev/null | grep -q 5300 || ss -tlnp 2>/dev/null | grep -q 5300; then
- echo "✅ Port 5300 is OPEN"
+ if netstat -tlnp 2>/dev/null | grep -q 9100 || ss -tlnp 2>/dev/null | grep -q 9100; then
+ echo "✅ Port 9100 is OPEN"
# Test HTTP response
- HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:5300/)
+ HTTP_CODE=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:9100/)
if [ "$HTTP_CODE" = "200" ]; then
echo "✅ Website is ACCESSIBLE (HTTP $HTTP_CODE)"
else
echo "⚠️ Website returned HTTP $HTTP_CODE"
fi
else
- echo "❌ Port 5300 is NOT listening"
+ echo "❌ Port 9100 is NOT listening"
fi
else
echo "❌ Server is NOT RUNNING"
@@ -35,9 +35,9 @@ fi
echo ""
echo "🌐 Access URLs:"
-echo " Local: http://localhost:5300/"
-echo " Network: http://0.0.0.0:5300/"
-echo " External: http://45.61.58.125:5300/"
+echo " Local: http://localhost:9100/"
+echo " Network: http://0.0.0.0:9100/"
+echo " External: http://45.61.58.125:9100/"
echo ""
echo "📝 View logs: tail -f server.log"
echo "🛑 Stop: ./stop.sh"
diff --git a/stop.sh b/stop.sh
index 119cff3..0a7ac2d 100755
--- a/stop.sh
+++ b/stop.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# Stop script for Laurel Canyon Rental Website
+# Stop script for Bill Fox San Diego Rental Website
echo "🛑 Stopping server..."
pkill -9 -f "node server.js"
← 253ca3b Fix stale package.json metadata to match San Diego site cont
·
back to Billy Website
·
remove server.js.backup source leak from served root; add ba 914c7b0 →