Ich leite Soketi als Pusher -Alternative in meiner lokalen Umgebung aus, aber ich habe Probleme, bei denen Soketi keine Apps auflistet, und API -Anfragen Rückgabe von 404 Fehler . 8.4.3
[*] Laravel -Version: 10.x
[*] soketi Version: neuest (NPM install -g @soketi/soketi) < Br /> Redis: Laufen und erreichbar (Redis-Cli Ping gibt Pong zurück) < /li>
Datenbanktreiber: Redis < /li>
< /ul>
Problemaufschlüsselung < /h2>
Soketi startet, Apps sind jedoch nicht aufgeführt. Nach dem Laufen: < /p>
Code: Select all
soketi start
< /code>
Ich sehe: < /p>
🎉 Server is up and running!
📡 The Websockets server is available at 127.0.0.1:6001
🔗 The HTTP API server is available at http://127.0.0.1:6001
< /code>
Aber wenn ich ausführe: < /p>
soketi list-apps
< /code>
Nichts wird angezeigt.curl http://127.0.0.1:6001
< /code>
Ich erhalte eine 200 -Antwort -Antwort, die großartig ist. />curl http://127.0.0.1:6001/apps/my-app-id
< /code>
Ich erhalte: < /p>
curl : The remote server returned an error: (404) Not Found.
< /code>
Versuch 2: Manuelles Erstellen einer App funktioniert nicht < /h2>
Ich habe manuell versucht, eine App zu erstellen: < / p>
soketi apps:create --id=my-app-id --key=my-app-key --secret=my-app-secret
< /code>
Es werden keine Fehler angezeigt, aber ich erhalte immer noch die gleichen Ergebnisse ... < /p>
Versuch 3: Versucht mit Verwendung Eine Konfigurationsdatei < /h2>
Ich habe config.json in c: \ user \ xxx.soketi: < /p>
erstellt.{
"port": 6001,
"host": "127.0.0.1",
"appManager": {
"driver": "array",
"apps": [
{
"id": "my-app-id",
"key": "my-app-key",
"secret": "my-app-secret",
"maxConnections": -1,
"enableClientMessages": true,
"enabled": true,
"maxBackendEventsPerSecond": -1,
"maxClientEventsPerSecond": -1,
"maxReadRequestsPerSecond": -1
}
]
},
"database": {
"redis": {
"host": "127.0.0.1",
"port": 6379,
"db": 0
}
}
}
< /code>
Dann rannte: < /p>
soketi start --config C:\Users\nico_\.soketi\config.json
Ich erhalte diese Ausgabe: < /p>
Code: Select all
Connected (press CTRL+C to quit)
Disconnected (code: 1006, reason: "")
< /code>
und Soketi stürmen: < /p>
(base) PS C:\Users\nico_\Documents\Projects\Restaurant Manager\restaurant-api> soketi start --config C:\Users\nico_\.soketi\config.json --debug
🕵️♂️ Initiating metrics endpoints...
🎉 Server is up and running!
📡 The Websockets server is available at 127.0.0.1:6001
🔗 The HTTP API server is available at http://127.0.0.1:6001
🎊 The /usage endpoint is available on port 9601.
(node:35948) NOTE: The AWS SDK for JavaScript (v2) is in maintenance mode.
SDK releases are limited to address critical bug fixes and security issues only.
Please migrate your code to use AWS SDK for JavaScript (v3).
For more information, check the blog post at https://a.co/cUPnyil
(Use `node --trace-warnings ...` to show where the warning was created)
process uncaughtException
{
err: TypeError: Cannot read properties of undefined (reading 'enabled')
at AppManager.findByKey (C:\Users\nico_\AppData\Local\nvm\v18.20.6\node_modules\@soketi\soketi\dist\app-managers\app-manager.js:44:51)
at WsHandler.checkForValidApp (C:\Users\nico_\AppData\Local\nvm\v18.20.6\node_modules\@soketi\soketi\dist\ws-handler.js:528:39)
at WsHandler.onOpen (C:\Users\nico_\AppData\Local\nvm\v18.20.6\node_modules\@soketi\soketi\dist\ws-handler.js:54:14)
at open (C:\Users\nico_\AppData\Local\nvm\v18.20.6\node_modules\@soketi\soketi\dist\server.js:446:50)
at WsHandler.handleUpgrade (C:\Users\nico_\AppData\Local\nvm\v18.20.6\node_modules\@soketi\soketi\dist\ws-handler.js:199:13)
at upgrade (C:\Users\nico_\AppData\Local\nvm\v18.20.6\node_modules\@soketi\soketi\dist\server.js:448:68),
origin: 'uncaughtException'
}
🚫 New users cannot connect to this instance anymore. Preparing for signaling...
⚡ The server is closing and signaling the existing connections to terminate.
< /code>
Was ich überprüft habe < /H2>
Soketi läuft und hört auf Port 6001 (Netstat -ano | Findstr: 6001 ). versuchte die Deaktivierung von Firewall).
Referenzquellen: < /h2>
.env:
BROADCAST_DRIVER=pusher
PUSHER_APP_ID=my-app-id
PUSHER_APP_KEY=my-app-key
PUSHER_APP_SECRET=my-app-secret
PUSHER_HOST=127.0.0.1
PUSHER_PORT=6001
PUSHER_SCHEME=http
PUSHER_APP_CLUSTER=mt1
< /code>
Zusätzliche Hinweise: < /h2>
Ich erhalte dies, wenn ich Soketi -Lauf ausführe, < /p>
Initiating metrics endpoints...
🎉 Server is up and running!
📡 The Websockets server is available at 127.0.0.1:6001
🔗 The HTTP API server is available at http://127.0.0.1:6001
🎊 The /usage endpoint is available on port 9601.
(node:11496) NOTE: The AWS SDK for JavaScript (v2) is in maintenance mode.
SDK releases are limited to address critical bug fixes and security issues only.
Please migrate your code to use AWS SDK for JavaScript (v3).
For more information, check the blog post at https://a.co/cUPnyil
(Use `node --trace-warnings ...` to show where the warning was created)