READ ONLY FORUM: m23 :: makes software distribution easy Forum Index READ ONLY FORUM: m23 :: makes software distribution easy
The m23 discussion forum
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Client formatieren.
Goto page Previous  1, 2, 3  Next
 
Post new topic   Reply to topic    READ ONLY FORUM: m23 :: makes software distribution easy Forum Index -> Problems with the client / Clientprobleme
View previous topic :: View next topic  
Author Message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Thu Mar 24, 2005 11:25    Post subject: Reply with quote

Quote:
mhh da kommt irgendwas mit ping :invalid option -- w blub blub usw.

aber vor dem root steht "weg" also ist der client nicht erreichbar?


Dann ist da das falsche Ping installiert. Hab ich wohl übersehen. Das "richtige" installierst Du mit:
Code:
apt-get install iputils-ping


Kommt dann auch ins nächste Patch rein Wink .
_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Thu Mar 24, 2005 11:27    Post subject: Reply with quote

so jetzt ist der client "da"
Back to top
View user's profile Send private message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Thu Mar 24, 2005 11:38    Post subject: Reply with quote

Dann wirds jetzt wahrscheinlich auch mit der Hintergrundinstallation klappen.
_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Thu Mar 24, 2005 11:42    Post subject: Reply with quote

Ich lasse mal über Ostern paar pakete installieren lassen. Mal gucken ob es klappt.

*edit* Ich verzweifle. Es geht !! Aber wieso, warum, weshalb es vorhin nicht ging und jetzt es geht habe ich kein plan.
Back to top
View user's profile Send private message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Thu Mar 24, 2005 17:15    Post subject: Reply with quote

Quote:
Ich verzweifle. Es geht !! Aber wieso, warum, weshalb es vorhin nicht ging und jetzt es geht habe ich kein plan.


Mit Ping wird überprüft, ob ein Client an oder aus ist. So wird erkannt, ob die Pakete im Hintergrund installiert werden können (Rechner ist an) oder nicht.
Das installierte Ping benutzt andere Parameter, die nicht mit denen übereinstimmen, die m23 übergibt. So kann m23 nicht erkennen, ob der Client läuft und hat angenommen, daß der Client aus ist. Deswegen wurde nichts im Hintergrund installiert.
_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
konkord
Guest





PostPosted: Wed Mar 30, 2005 13:18    Post subject: Was war denn das Netzwerkproblem? Reply with quote

Welches Propblem hat denn im Netzwerk bestanden?
Back to top
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Thu Mar 31, 2005 5:10    Post subject: Reply with quote

Ich hatte das flasche Ping-Util installiert gehabt. Man konnte die Clients selber manuell anpingen, aber der Server selbst konnte das nicht und so wurden die Clients als offlinke deklariert.

Ausserdem hat bei uns die Firewall gesponnen.
Back to top
View user's profile Send private message
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Fri Apr 01, 2005 9:17    Post subject: Reply with quote

Ich musste leider den Server neu aufsetzen weil ich ihn zerschossen habe. Gesagt getan er läuft, Client ist installiert nur kann der Server den Client nicht erreichen um Pakete zu installieren.

Also habe ich
Quote:
apt-get install iputils-ping

installiert.

Danach
Quote:
<?php
include("/m23/inc/db.php");

$ip="<clientIP>";

if (pingIP($ip))
print("da");
else
print("weg");

?>

in eine Datei eingetragen.

Musste noch mit
Quote:
apt-get install php4-apd

den php cmpiler installieren.
Jetzt bring er mir bei php <datei> folgendes
Quote:
sh <clientIP>: No such file or Directory

Normal kann ich den Client pingen.
Ich verzweifle langsam.

[/quote]
Back to top
View user's profile Send private message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Fri Apr 01, 2005 10:59    Post subject: Reply with quote

Installier erstmal die Updates (über die Oberfläche).

Code:
<?php
 include("/m23/inc/db.php");
 
 $ip="<clientIP>";
 
 if (pingIP($ip))
 print("da");
 else
 print("weg");
 
 ?>


Hast Du <clientIP> durch die IP des Clients ersetzt?
_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Fri Apr 01, 2005 11:08    Post subject: Reply with quote

Ja die Updates für den Server habe ich natürlich zuerst installiert Smile Und auch die IP ist eingetragen.

Aktuelle Version: halfBaked-pre3 0.4.99 (100007)
Back to top
View user's profile Send private message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Fri Apr 01, 2005 15:04    Post subject: Reply with quote

Quote:

Also habe ich
Quote:

apt-get install iputils-ping

installiert.


Wenn das Kommando "php" nicht gefunden wird, dann setze einfach den Pfad:

Code:
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11"


Oder gib den Pfad beim Ausführen mit an:
Code:
/usr/bin/php

_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Mon Apr 04, 2005 7:55    Post subject: Reply with quote

Also ich hab heute malwieder den Server neu aufgesetzt. Dann die Updates per Web-interface runtergeladen. Dann "iputils-ping" installiert. Die Datei zur überprüfung ob der Client antwortet erstellt.
Und dann komm
-bash /usr/bin/php: No such file blablabla

Und "export PATH..." habe ich auch ausgeführt

P.S. du hast eine PM und eine ICQ nachricht.
Back to top
View user's profile Send private message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Mon Apr 04, 2005 11:14    Post subject: Reply with quote

Damit das Test-Skript von oben funktioniert, muß noch das Paket php4-cli installiert sein (Hab ich schonmal auf dem Server gemacht). Für den normalen m23-Betrieb ist das Paket allerdings nicht erforderlich.
_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
zloty



Joined: 23 Mar 2005
Posts: 92

PostPosted: Mon Apr 04, 2005 11:19    Post subject: Reply with quote

Ja danke. Trotzdem kommt "sh: <clientIP>: No such file blablabla


P.S. die Testdatei heist "forum" und liegt in /
Back to top
View user's profile Send private message
Hauke



Joined: 02 Mar 2003
Posts: 1072

PostPosted: Mon Apr 04, 2005 11:41    Post subject: Reply with quote

Im IP-String dürfen auch keine spitzen Klammern stehen.

Code:
<?php
 include("/m23/inc/db.php");

 $ip="<141.28.34.122>";

 if (pingIP($ip))
 print("da");
 else
 print("weg");

 ?>


Wenn Du die wegnimmst, dann geht es auch Wink

Code:
<?php
 include("/m23/inc/db.php");

 $ip="141.28.34.122";

 if (pingIP($ip))
 print("da");
 else
 print("weg");

 ?>

_________________
Hauke Goos-Habermann
- project leader m23 (http://m23.sf.net) -
Jabber: dodgerm23@jabber.org

Schulung, Entwicklung und Support zu m23 und anderen OpenSource-Produkten: www.goos-habermann.de

Auch DU kannst etwas gegen Softwarepatente tun! www.patentfrei.de
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    READ ONLY FORUM: m23 :: makes software distribution easy Forum Index -> Problems with the client / Clientprobleme All times are GMT - 2 Hours
Goto page Previous  1, 2, 3  Next
Page 2 of 3

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group