Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 22/10/2015, à 10:53

tadminc

etherpad sur réseau local

Salut à tous !

j'ai recement installé un Etherpad sur mon serveur.
Je l'utilise uniquement sur un réseau local, ( pour des étudiants lors des TP)
Mais je rencontre un conflit.

Si je créé un pad avec l'url suivant http://<ip_server>:9001/p/monpad
pas de soucis sur un client debian.
Si je veux rejoindre le pad avec un pc windows avec la meme url, ca passe.
Mais avec un deuxieme client windows. je déconnecte le 1er client.
et il est impossible d'avoir mes deux client win simultanément. yikes

Dit moi si vous voulez des infos sup
Peut-etre le fichier de conf de Etherpad? :

/*
  This file must be valid JSON. But comments are allowed

  Please edit settings.json, not settings.json.template
*/
{
  // Name your instance!
  "title": "EuropPad",

  // favicon default name
  // alternatively, set up a fully specified Url to your own favicon
  "favicon": "favicon.ico",
  
  //IP and port which etherpad should bind at
  "ip": "0.0.0.0",
  "port" : 9001,

  // Session Key, used for reconnecting user sessions
  // Set this to a secure string at least 10 characters long.  Do not share this value.
  "sessionKey" : "",

  /*  
  // Node native SSL support
  // this is disabled by default
  //
  // make sure to have the minimum and correct file access permissions set
  // so that the Etherpad server can access them

  "ssl" : {
            "key"  : "/path-to-your/epl-server.key",
            "cert" : "/path-to-your/epl-server.crt"
          },

  */

  //The Type of the database. You can choose between dirty, postgres, sqlite and mysql
  //You shouldn't use "dirty" for for anything else than testing or development
  "dbType" : "dirty",
  //the database specific settings
  //"dbSettings" : {
    //               "filename" : "var/dirty.db"
      //           },
                 
  // An Example of MySQL Configuration
   "dbType" : "mysql",
   "dbSettings" : {
                    "user"    : "etherpad", 
                    "host"    : "localhost", 
                    "password": "mot_de_pass_tres_solide", 
                    "database": "etherpad"
                  },
  
  
  //the default text of a pad
  "defaultPadText" : "Bienvenue sur l'Europad, un traitement de texte collaboratif pour vous aider à rédiger vos compte-rendus de tp. Copier l'URL de votre pad et notez le pour le retrouver plus tard. Attention! les pad son effacer tous les ans. Vous pouvez exporter votre travail en PDF ",
  
  /* Users must have a session to access pads. This effectively allows only group pads to be accessed. */
  "requireSession" : false,

  /* Users may edit pads but not create new ones. Pad creation is only via the API. This applies both to group pads and regular pads. */
  "editOnly" : false,

  /* Users, who have a valid session, automatically get granted access to password protected pads */
  "sessionNoPassword" : false,
  
  /* if true, all css & js will be minified before sending to the client. This will improve the loading performance massivly, 
     but makes it impossible to debug the javascript/css */
  "minify" : true,

  /* How long may clients use served javascript code (in seconds)? Without versioning this
     may cause problems during deployment. Set to 0 to disable caching */
  "maxAge" : 21600, // 60 * 60 * 6 = 6 hours
  
  /* This is the path to the Abiword executable. Setting it to null, disables abiword.
     Abiword is needed to advanced import/export features of pads*/  
  "abiword" : "/usr/bin/abiword",

  /* Allow import of file types other than the supported types: txt, doc, docx, rtf, odt, html & htm */
  "allowUnknownFileEnds" : true,
 
  /* This setting is used if you require authentication of all users.
     Note: /admin always requires authentication. */
  "requireAuthentication" : false,

  /* Require authorization by a module, or a user with is_admin set, see below. */
  "requireAuthorization" : false,
  
  /*when you use NginX or another proxy/ load-balancer set this to true*/
  "trustProxy" : false,
  
  /* Privacy: disable IP logging */
  "disableIPlogging" : false,  
  
  /* Users for basic authentication. is_admin = true gives access to /admin.
     If you do not uncomment this, /admin will not be available! */
  
  "users": {
    "admin": {
      "password": "charlene",
      "is_admin": true
    },
    "user": {
      "password": "europ",
      "is_admin": false
    }
  },
  

  // restrict socket.io transport methods
  "socketTransportProtocols" : ["xhr-polling", "jsonp-polling", "htmlfile"],

  // Allow Load Testing tools to hit the Etherpad Instance.  Warning this will disable security on the instance.
  "loadTest": false,
  
  /* The toolbar buttons configuration.
  "toolbar": {
    "left": [
      ["bold", "italic", "underline", "strikethrough"],
      ["orderedlist", "unorderedlist", "indent", "outdent"],
      ["undo", "redo"],
      ["clearauthorship"]
    ],
    "right": [
      ["importexport", "timeslider", "savedrevision"],
      ["settings", "embed"],
      ["showusers"]
    ],
    "timeslider": [
      ["timeslider_export", "timeslider_returnToPad"]
    ]
  },
  */

  /* The log level we are using, can be: DEBUG, INFO, WARN, ERROR */
  "loglevel": "INFO",
  
  //Logging configuration. See log4js documentation for further information
  // https://github.com/nomiddlename/log4js-node
  // You can add as many appenders as you want here:
  "logconfig" :
    { "appenders": [
        { "type": "console"
        //, "category": "access"// only logs pad access
        }
    
      , { "type": "file"
      , "filename": "etherpadLOG.log"
      , "maxLogSize": 2048
      , "backups": 3 // how many log files there're gonna be at max
      //, "category": "test" // only log a specific category
        }
    /*
      , { "type": "logLevelFilter"
        , "level": "warn" // filters out all log messages that have a lower level than "error"
        , "appender":
          {  Use whatever appender you want here  }
        }*/
    /*
      , { "type": "logLevelFilter"
        , "level": "error" // filters out all log messages that have a lower level than "error"
        , "appender":
          { "type": "smtp"
          , "subject": "An error occured in your EPL instance!"
          , "recipients": "bar@blurdybloop.com, baz@blurdybloop.com"
          , "sendInterval": 60*5 // in secs -- will buffer log messages; set to 0 to send a mail for every message
          , "transport": "SMTP", "SMTP": { // see https://github.com/andris9/Nodemailer#possible-transport-methods
              "host": "smtp.example.com", "port": 465,
              "secureConnection": true,
              "auth": {
                  "user": "foo@example.com",
                  "pass": "bar_foo"
              }
            }
          }
        }*/
      ]
    }
}

merci d'avance de votre aide smile

Hors ligne

#2 Le 24/10/2015, à 04:37

Vobul

Re : etherpad sur réseau local

Salut,

À mon avis tu ferais mieux d'ouvrir une issue sur github. Ici un bug similaire -> https://github.com/ether/etherpad-lite/issues/2802

Au fait, comment va Charlène ? tongue


Vobul
Utilisez le retour utilisable de commandes !!!
J'aime la langue française, mais je parle franglais, deal with it.
RTFM

Hors ligne

#3 Le 25/10/2015, à 21:25

tadminc

Re : etherpad sur réseau local

j'ai trouvé ^^

Je ne pense pas que ce soit un bug de Etherpad.
En fait mes machines ont été clonée avec CloneZilla.
Chaque windows possédait un SID similaire, ce qui faisait planter Etherpad.
Résolu avec l'utilitaire sysprep.exe qui génère un nouvel SID.

C'est un jolie prenom smile
(m'apprendra à mettre ça en mot de passe ^^)

Dernière modification par tadminc (Le 25/10/2015, à 21:25)

Hors ligne