]> git.mxchange.org Git - friendica.git/commitdiff
Replace 'bin/daemon.php' and 'bin/jetstream.php' calls and help
authorPhilipp <admin@philipp.info>
Thu, 2 Jan 2025 19:24:49 +0000 (20:24 +0100)
committerPhilipp <admin@philipp.info>
Sun, 5 Jan 2025 22:13:38 +0000 (23:13 +0100)
doc/Install.md
doc/Installing-Connectors.md
doc/de/Installing-Connectors.md
src/Core/Worker/Daemon.php

index 936d46c7a998be7da24ba881d2111acb8beeaba9..a80483792f5151d1e0a9e2149ac59536b3430f36 100644 (file)
@@ -290,11 +290,11 @@ Once you have installed Friendica and created an admin account as part of the pr
 #### worker alternative: daemon
 Otherwise, you’ll need to use the command line on your remote server and start the Friendica daemon (background task) using the following command:
 
-    cd /path/to/friendica; php bin/daemon.php start
+    cd /path/to/friendica; php bin/console.php daemon start
 
 Once started, you can check the daemon status using the following command:
 
-    cd /path/to/friendica; php bin/daemon.php status
+    cd /path/to/friendica; php bin/console.php daemon status
 
 After a server restart or any other failure, the daemon needs to be restarted.
 This could be achieved by a cronjob.
index 48c3c9fb1e9996753b775dcc3f22910966fe725d..bd564eb466af5537c09ab3d459a50789803951f4 100644 (file)
@@ -28,7 +28,7 @@ Jetstream is a service that connects to the Bluesky firehose.
 With Jetstream, messages arrive in real time rather than having to be polled.
 It also enables real-time processing of blocks or tracking activities performed by the user via the Bluesky website or application.
 
-To enable Jetstream processing, run `bin/jetstream.php' from the command line.
+To enable Jetstream processing, run `bin/console.php jetstream' from the command line.
 You will need to define the process id file in local.config.php in the 'jetstream' section using the key 'pidfile'.
 
-To keep track of the messages processed and the drift (the time difference between the date of the message and the date the system processed that message), some fields are added to the statistics endpoint.
\ No newline at end of file
+To keep track of the messages processed and the drift (the time difference between the date of the message and the date the system processed that message), some fields are added to the statistics endpoint.
index 1ca152ace99c07153dad3634d890889d2c317282..7d378e23749408a0f121ef20b61ed02a8c80ad7b 100644 (file)
@@ -27,7 +27,7 @@ Jetstream ist ein Dienst, der sich mit dem Bluesky-Firehose verbindet.
 Mit Jetstream kommen die Nachrichten in Echtzeit an und müssen nicht erst abgefragt werden.
 Es ermöglicht auch die Echtzeitverarbeitung von Blöcken oder Tracking-Aktivitäten, die über die Bluesky-Website oder -Anwendung durchgeführt werden.
 
-Um die Jetstream-Verarbeitung zu aktivieren, führe `bin/jetstream.php' über die Befehlszeile aus.
+Um die Jetstream-Verarbeitung zu aktivieren, führe `bin/console.php daemon' über die Befehlszeile aus.
 Du musst vorher die Prozess-ID-Datei in local.config.php im Abschnitt „jetstream“ mit dem Schlüssel „pidfile“ definieren.
 
 Um die verarbeiteten Nachrichten und die Drift (die Zeitdifferenz zwischen dem Datum der Nachricht und dem Datum, an dem das System diese Nachricht verarbeitet hat) zu verfolgen, wurden dem Statistik-Endpunkt einige Felder hinzugefügt.
index dffaae2aca3c3e81ff8513cd42b7c968e1e27c37..8cffd98854c999ac975d787d091b626a4bf97340 100644 (file)
@@ -115,7 +115,7 @@ class Daemon
        private static function spawn()
        {
                Logger::notice('Starting new daemon process');
-               DI::system()->run('bin/daemon.php', ['start']);
+               DI::system()->run('bin/console.php daemon', ['start']);
                Logger::notice('New daemon process started');
        }
 }