[Wapt] Arrêt aléatoire du serveur wapt

Hubert TOUVET htouvet at tranquil.it
Tue Oct 22 14:13:46 CEST 2019


Il y une typo dans ma commande.. (un point virgule en trop)
pids=$(pgrep -f "server.py");for f in /proc/$pids/fdinfo/*;do cat $f | 
grep flags | grep -q -v 400[0,1,2] && ls -al /proc/$pids/fd/$(basename 
$f); done;



Le 22/10/2019 à 10:58, Frederic Garesche a écrit :
> Lorsque je lance la commande :
>
> /pids=$(pgrep -f "server.py");for f in /proc/$pids/fdinfo/*;do cat $f 
> | grep flags | grep -q -v 400[0,1,2] && ls 
> -al;/proc/$pids/fd/$(basename $f); done;/
> /
> /
> J'ai en résultat :
> /total 100
> drwx------  6 root root  4096 oct.  22 10:45 .
> drwxr-xr-x 25 root root  4096 oct.  17 14:11 ..
> -rw-------  1 root root 33699 oct.  22 10:27 .bash_history
> -rw-r--r--  1 root root  3523 mars   6  2019 .bashrc
> drwx------  2 root root  4096 mars   5  2019 .cache
> drwx------  3 root root  4096 mars  20  2019 .config
> -rw-------  1 root root    67 oct.  21 13:31 .lesshst
> drwxr-xr-x  2 root root  4096 mai    6 09:57 .nano
> -rw-r--r--  1 root root   148 août  17  2015 .profile
> -rw-------  1 root root  1024 avril  4  2019 .rnd
> drwxr-----  2 root root  4096 mars   7  2019 .ssh
> -rw-------  1 root root 13320 oct.  22 10:45 .viminfo
> -rw-r--r--  1 root root   171 mars   7  2019 .wget-hsts
> -bash: /proc/46480/fd/0: Permission non accordée
> total 100
> drwx------  6 root root  4096 oct.  22 10:45 .
> drwxr-xr-x 25 root root  4096 oct.  17 14:11 ..
> -rw-------  1 root root 33699 oct.  22 10:27 .bash_history
> -rw-r--r--  1 root root  3523 mars   6  2019 .bashrc
> drwx------  2 root root  4096 mars   5  2019 .cache
> drwx------  3 root root  4096 mars  20  2019 .config
> -rw-------  1 root root    67 oct.  21 13:31 .lesshst
> drwxr-xr-x  2 root root  4096 mai    6 09:57 .nano
> -rw-r--r--  1 root root   148 août  17  2015 .profile
> -rw-------  1 root root  1024 avril  4  2019 .rnd
> drwxr-----  2 root root  4096 mars   7  2019 .ssh
> -rw-------  1 root root 13320 oct.  22 10:45 .viminfo
> -rw-r--r--  1 root root   171 mars   7  2019 .wget-hsts
> -bash: /proc/46480/fd/1: Permission non accordée
> -bash: /proc/46480/fd/10: Permission non accordée
> -bash: /proc/46480/fd/100: Permission non accordée
> ...
> /
> /
> /
> /pgrep -f "server.py"/ me donne bien le pid.
>
> /pids=$(pgrep -f "server.py");for f in /proc/$pids/fdinfo/*;do cat $f 
> | grep flags;done/ me donne bien les flags :
> ...
> flags:    04002
> flags:    04002
> flags:    02100000
> flags:    04002
> flags:    04002
> flags:    04002
> flags:    04002
> flags:    04002
> flags:    04002
> flags:    04002
> ...
>
> /pids=$(pgrep -f "server.py");for f in /proc/$pids/fdinfo/*;do cat $f 
> | grep flags | grep -q -v 400[0,1,2];done/ ne me retourne rien
>
> /pids=$(pgrep -f "server.py");for f in /proc/$pids/fdinfo/*;do cat $f 
> | grep flags | grep -q -v 400[0,1,2] && ls -al;done/
> /total 0
> total 0
> total 0
> total 0
> total 0
> total 0
> ///
> /
> /
>
> *Frédéric GARESCHÉ
> *
> *Équipe Assistance et Exploitation
> *
> *Direction du Système d'Information (D.S.I)*
> *Correspondant Département EII et laboratoire IETR
> *Tél. : +33 (0)2 23 2*3 82 81*
> 20 avenue des Buttes de Coësmes
> CS 70839 - 35 708 RENNES Cedex 7
>
> <https://www.insa-rennes.fr>
>
> ------------------------------------------------------------------------
> *De: *"Frederic Garesche" <frederic.garesche at insa-rennes.fr>
> *À: *"Hubert TOUVET" <htouvet at tranquil.it>
> *Envoyé: *Mardi 22 Octobre 2019 10:47:33
> *Objet: *Re: [Wapt] Arrêt aléatoire du serveur wapt
>
> Bonjour,
>
> J'ai fait le changement dans le fichier /opt/wapt/waptserver/server.py
>
> /from __future__ import absolute_import/
> /import sys/
>
> /if __name__ == '__main__':/
> /    # as soon as possible, we must monkey patch the library.../
> /    # monkeypatching for eventlet greenthreads/
> /    from eventlet import monkey_patch/
> /    # os=False for windows see 
> https://mail.python.org/pipermail/python-bugs-list/2012-November/186579.html/
> /    if hasattr(sys,'getwindowsversion'):/
> /        # interactive debug mode on PyScripter hang if tread is patched./
> /        if 'rpyc' in sys.modules:/
> /monkey_patch(os=False,thread=False)/
> /        else:/
> /monkey_patch(os=False)/
> /    else:/
> /monkey_patch()/
>
> /import platform/
> /import os/
>
> J'ai relancé le service. Je ne sais pas si c'était nécessaire ?
>
> Ai-je bon ?
>
> Voilà ce que j'ai dans le syslog :
>
> /Oct 22 10:44:10 wapt2 systemd[1]: Stopping WAPT Server startup script.../
> /Oct 22 10:44:10 wapt2 systemd[1]: Stopped WAPT Server startup script./
> /Oct 22 10:44:10 wapt2 systemd[1]: Started WAPT Server startup script./
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,558 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,596 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,599 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,637 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,640 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,648 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,650 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,652 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,654 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,655 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,674 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,677 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,680 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,682 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,690 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,692 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,693 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,694 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,695 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,696 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,696 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,697 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,699 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,702 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,703 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,704 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,705 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,705 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,706 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,706 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,707 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,712 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,714 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,716 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,718 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,720 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,723 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,724 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,726 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,728 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,729 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,730 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,732 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,735 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,736 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,738 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,740 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,746 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,748 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,750 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,752 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,754 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,755 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,757 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,758 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,760 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,763 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,769 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,772 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,772 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,779 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,784 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,787 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,794 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,799 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,801 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,803 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,810 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,810 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,818 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,828 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,835 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,837 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,842 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,850 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,857 WARNING 
> Invalid session None/
> /Oct 22 10:44:11 wapt2 python[46480]: 2019-10-22 10:44:11,885 WARNING 
> Invalid session None/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,334 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0032-4A10-8051-B9C04F373632, sid 
> 45da4ce989fd43af97e52ad2702a32ea: SocketIO connection not authorized, 
> invalid token: Signature expired, instance/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,615 WARNING 
> Invalid session None/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,630 WARNING 
> Invalid session None/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,780 WARNING 
> Invalid session None/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,802 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4d52c02d92fc4ec08693ad30a61bd5fd, 
> uuid:4C4C4544-004B-3110-8047-B8C04F305432 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,807 CRITICAL 
> Socket IO : An error has occurred for sid 
> 639fb2e3d14c4b7f9018b1b9ae351ba7, 
> uuid:4C4C4544-0031-5710-804D-B4C04F32354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,810 CRITICAL 
> Socket IO : An error has occurred for sid 
> 08aac24daaa243c5afd6860275f73b65, 
> uuid:4C4C4544-0042-4C10-8034-C6C04F4A4E32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,814 CRITICAL 
> Socket IO : An error has occurred for sid 
> 2cc30b2ca1444d57b603735e0093727a, 
> uuid:4C4C4544-0033-4E10-8038-C7C04F4E5632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,817 CRITICAL 
> Socket IO : An error has occurred for sid 
> 96042add848141488e621570faff088a, 
> uuid:4C4C4544-0044-3610-8052-B1C04F563032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,820 CRITICAL 
> Socket IO : An error has occurred for sid 
> b68d230951cb4e5d9a3f2b3cb778ba26, 
> uuid:4C4C4544-0058-4710-8043-C6C04F4C5632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,823 CRITICAL 
> Socket IO : An error has occurred for sid 
> 573e99bc1f604e62b9a83464b15b8a6a, 
> uuid:4C4C4544-0033-3610-8058-B1C04F5A5232 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,826 CRITICAL 
> Socket IO : An error has occurred for sid 
> 70b5bccdf97b4dd58dc2b2f6c08f16b1, 
> uuid:4C4C4544-0037-4B10-8058-C4C04F44354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,828 CRITICAL 
> Socket IO : An error has occurred for sid 
> 3d612878c2844b589a3dbacf052b1640, 
> uuid:4C4C4544-0056-4310-8057-B6C04F354B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,831 CRITICAL 
> Socket IO : An error has occurred for sid 
> ee873c376bd04f93a9a70ed56bbf981b, 
> uuid:4C4C4544-004B-3710-8059-C7C04F483832 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,834 CRITICAL 
> Socket IO : An error has occurred for sid 
> cb3d14b7ef0441d191fad9319c82879e, 
> uuid:4C4C4544-0051-4410-8033-B3C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,837 CRITICAL 
> Socket IO : An error has occurred for sid 
> 160db22989ec4796bb6a2bf792fee218, 
> uuid:4C4C4544-0030-3610-8059-B6C04F483832 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,843 CRITICAL 
> Socket IO : An error has occurred for sid 
> 59e8b92a17014f77b1b0209f7dfeba6c, 
> uuid:4C4C4544-004C-4410-8039-B6C04F4C4732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,849 CRITICAL 
> Socket IO : An error has occurred for sid 
> 994e13ecb9ee4c7190cc0a7c3d0c3ee9, 
> uuid:4C4C4544-0051-3710-8030-C8C04F313532 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,853 CRITICAL 
> Socket IO : An error has occurred for sid 
> 12c0be29ffd945a2b2c9ec6120f1f238, 
> uuid:4C4C4544-0056-3610-8056-B6C04F354B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,858 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4cde52550a29411aaef0de261938e905, 
> uuid:4C4C4544-0050-4E10-8046-B5C04F433732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,860 CRITICAL 
> Socket IO : An error has occurred for sid 
> 210f035627f54e33a5416855717ba8f3, 
> uuid:4C4C4544-0050-4C10-8042-B5C04F433732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,864 CRITICAL 
> Socket IO : An error has occurred for sid 
> 8aba4d0c7eff41b4bc748550bcea97bd, 
> uuid:4C4C4544-005A-4710-8043-B9C04F325A32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,868 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4413b9a35f0540fb92cc5ecca4677547, 
> uuid:4C4C4544-0030-4410-8042-B7C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,872 CRITICAL 
> Socket IO : An error has occurred for sid 
> b9a9f5d0deac43fbb1a69a98fb956d29, 
> uuid:0014E27F-1034-11E4-B922-C88EE10EF0FF : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,877 CRITICAL 
> Socket IO : An error has occurred for sid 
> 79b119915eab444c9b28f2b127627e47, 
> uuid:4C4C4544-0047-4E10-8030-C3C04F383532 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,881 CRITICAL 
> Socket IO : An error has occurred for sid 
> 0ecac978d90b413b9fc12bf608da344c, 
> uuid:4C4C4544-0056-4310-8054-B6C04F354B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,886 CRITICAL 
> Socket IO : An error has occurred for sid 
> 95a71a38df274a809f5a6eb623559cb2, 
> uuid:4C4C4544-0042-3510-8034-B2C04F4E4B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,889 CRITICAL 
> Socket IO : An error has occurred for sid 
> ba0a6623c6844edda2cbe7b7acca5c51, 
> uuid:4C4C4544-0046-5410-8035-C2C04F385032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,894 CRITICAL 
> Socket IO : An error has occurred for sid 
> c58648cb207d47dfadb5d89ac81a7b14, 
> uuid:4C4C4544-0037-4B10-8058-B9C04F44354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,898 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4fa8110ad4054b9cb306ed8d329f44db, 
> uuid:4C4C4544-0039-3610-8052-B1C04F563032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,901 CRITICAL 
> Socket IO : An error has occurred for sid 
> 5544c3d41f0f4dd5b52477f5812a6e7d, 
> uuid:4C4C4544-004B-5810-8034-C3C04F384332 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,905 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4d6fba49d27846fc8f30c8e95630a3ec, 
> uuid:4C4C4544-0032-4C10-8036-B1C04F4E5A31 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,907 CRITICAL 
> Socket IO : An error has occurred for sid 
> e72e976b280e432fb0d2456fae6f52e7, 
> uuid:4C4C4544-0030-5010-8035-B2C04F434332 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,910 CRITICAL 
> Socket IO : An error has occurred for sid 
> 100114e535ca4d48b7f29dfc758010b3, 
> uuid:4C4C4544-004B-4C10-8034-C3C04F384332 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,913 CRITICAL 
> Socket IO : An error has occurred for sid 
> f2ff97c526a24898b5fab59a44594242, 
> uuid:4C4C4544-0059-4710-8043-B1C04F4C5632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,916 CRITICAL 
> Socket IO : An error has occurred for sid 
> 324263208a05472380696279e7dffa2b, 
> uuid:81A5367F-8A16-11E5-8000-0000000000FF : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,918 CRITICAL 
> Socket IO : An error has occurred for sid 
> 91a04528a3054275975147583b34d92b, 
> uuid:4C4C4544-0046-4410-8054-C8C04F563432 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,921 CRITICAL 
> Socket IO : An error has occurred for sid 
> f3ec855786354c09afbfbc93e3e27a08, 
> uuid:4C4C4544-004C-3910-8043-B6C04F4C4732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,924 CRITICAL 
> Socket IO : An error has occurred for sid 
> 17e8111a836844d0848d38c0d4ec135e, 
> uuid:4C4C4544-0058-3910-8032-B4C04F595831 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,928 CRITICAL 
> Socket IO : An error has occurred for sid 
> c0a6767115a14e6186c84c33865b2831, 
> uuid:4C4C4544-0038-4B10-8058-B1C04F44354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,931 CRITICAL 
> Socket IO : An error has occurred for sid 
> 7255defcf9734433b27092cbd64a7bcd, 
> uuid:4C4C4544-0058-4710-8043-B9C04F4C5632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,936 CRITICAL 
> Socket IO : An error has occurred for sid 
> 8f617aa9ae1f4d209372dc0bfb6467bc, 
> uuid:4C4C4544-0051-4410-8037-B5C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,945 CRITICAL 
> Socket IO : An error has occurred for sid 
> 9d990e1e6f4e477f86eb9615f32eba21, 
> uuid:C0B8BA55-2EED-12EB-69D2-5CEACF8E5F14 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:12 wapt2 python[46480]: 2019-10-22 10:44:12,954 CRITICAL 
> Socket IO : An error has occurred for sid 
> 8396c3d1d655401c8dead76a1c30b92d, 
> uuid:4C4C4544-0051-4410-8039-B4C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,001 CRITICAL 
> Socket IO : An error has occurred for sid 
> b6bebc65c55249fd95205d7770b832e2, 
> uuid:4C4C4544-0056-4210-8058-B6C04F354B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,006 CRITICAL 
> Socket IO : An error has occurred for sid 
> 2cd722f086374bd1a0a4a5f759111ba7, 
> uuid:4C4C4544-0058-4710-8043-B5C04F4C5632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,011 CRITICAL 
> Socket IO : An error has occurred for sid 
> 99411d3274844c5faf7d56a6c6cde061, 
> uuid:4C4C4544-004C-4A10-8044-B6C04F4C4732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,014 CRITICAL 
> Socket IO : An error has occurred for sid 
> 0a6aeebe432d450da48eb3441d9b7b13, 
> uuid:4C4C4544-0039-4710-8037-B8C04F385032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,018 CRITICAL 
> Socket IO : An error has occurred for sid 
> 938558df7cb04431a397acbd48cccec5, 
> uuid:4C4C4544-0042-4C10-8038-C6C04F4A4E32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,021 CRITICAL 
> Socket IO : An error has occurred for sid 
> 97106168061f4673878aace6269e426d, 
> uuid:4C4C4544-0031-4C10-8047-C2C04F43354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,025 CRITICAL 
> Socket IO : An error has occurred for sid 
> cefc4ec8eba449c3b73954fe1393773e, 
> uuid:4C4C4544-0050-5010-8037-B5C04F433732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,030 CRITICAL 
> Socket IO : An error has occurred for sid 
> f64155d8dc6746a5b36d0c65c6f2ab5b, 
> uuid:4C4C4544-0034-3610-8058-B9C04F5A5232 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,035 CRITICAL 
> Socket IO : An error has occurred for sid 
> dc157bab8f8e44cb83c15dd247cf4bc5, 
> uuid:4C4C4544-004B-4E10-8038-C3C04F384332 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,038 CRITICAL 
> Socket IO : An error has occurred for sid 
> 2b09298e14c049c4bbf85773d61fbe26, 
> uuid:36444335-3534-4C37-374E-4E4C35344435 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,042 CRITICAL 
> Socket IO : An error has occurred for sid 
> 94e0fbae016547ccbaef39f5b56d97e6, 
> uuid:4C4C4544-0039-4810-8036-B8C04F385032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,046 CRITICAL 
> Socket IO : An error has occurred for sid 
> 06cd62541258416682b1d5f8c602b6ad, 
> uuid:10ACE6FF-F25B-11E4-9203-6045000000FF : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,052 CRITICAL 
> Socket IO : An error has occurred for sid 
> 177f19e360bb42dbafec87f793b5d63a, 
> uuid:4C4C4544-0044-4E10-8030-C3C04F383532 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,055 CRITICAL 
> Socket IO : An error has occurred for sid 
> e51d6d3e021b4a7d949bc9a572992e74, 
> uuid:4C4C4544-004A-5710-8039-CAC04F585432 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,058 CRITICAL 
> Socket IO : An error has occurred for sid 
> 3d3fc46dd03c4d2680cfeb932be36f29, 
> uuid:4C4C4544-0058-4710-8043-B4C04F4C5632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,061 CRITICAL 
> Socket IO : An error has occurred for sid 
> 2a3e32805b934336b8773cab17310160, 
> uuid:4C4C4544-0051-4410-8037-B6C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,066 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4f54ac97591b4a2bb804c5180499cfe3, 
> uuid:4C4C4544-0043-3610-8052-C4C04F563032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,069 CRITICAL 
> Socket IO : An error has occurred for sid 
> 17381dba838745f8955aacde1422d514, 
> uuid:4C4C4544-0056-4210-8050-B6C04F354B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,071 CRITICAL 
> Socket IO : An error has occurred for sid 
> 5b91d2f4ca684604970727bbf6a7f46a, 
> uuid:9394FF00-FA18-11E1-BBE0-B4B52FAFA163 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,075 CRITICAL 
> Socket IO : An error has occurred for sid 
> 53d62068672948c5bf831c226611e283, 
> uuid:4C4C4544-0030-4410-8042-B8C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,077 CRITICAL 
> Socket IO : An error has occurred for sid 
> 50563ec64720464cba6f1b1488d88ecc, 
> uuid:20120A42-6477-DB72-2D64-49C4007AC328 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,082 CRITICAL 
> Socket IO : An error has occurred for sid 
> efe8a050ddc14c24a8cf0d449153ab76, 
> uuid:4C4C4544-0051-4410-8037-B4C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,085 CRITICAL 
> Socket IO : An error has occurred for sid 
> 371374b08f854b0ea5cb5397f02f4752, 
> uuid:4C4C4544-0030-3510-8036-B4C04F32354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,088 CRITICAL 
> Socket IO : An error has occurred for sid 
> 71c361e2d839418c88655b9bc0960c5b, 
> uuid:4C4C4544-0050-5010-8039-B5C04F433732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,092 CRITICAL 
> Socket IO : An error has occurred for sid 
> 00fb113d97c54551bb195df49497680d, 
> uuid:4C4C4544-0050-3710-8030-B2C04F313532 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,097 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4a830375ab9c4e5eb37085c76a23eba4, 
> uuid:4C4C4544-0057-3510-8033-C3C04F48354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,100 CRITICAL 
> Socket IO : An error has occurred for sid 
> 964952511417487e87532ef93a3a610f, 
> uuid:4C4C4544-005A-3710-8039-B8C04F585032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,103 CRITICAL 
> Socket IO : An error has occurred for sid 
> 9521c9337dd44cdabd2064cf30ea93e3, 
> uuid:4C4C4544-0051-4410-8039-B6C04F513032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,108 CRITICAL 
> Socket IO : An error has occurred for sid 
> 21c44135a89d4f9180b973675cf1c24f, 
> uuid:4C4C4544-0042-4B10-8031-B2C04F4E4B32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,112 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4970cf8ddfff416280eab790db64df02, 
> uuid:4C4C4544-004A-3110-8054-C7C04F43354A : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,116 CRITICAL 
> Socket IO : An error has occurred for sid 
> 505cfd8c406345148a28289662f15f65, 
> uuid:E8BAC173-033B-11E0-BBDA-502264A86431 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,119 CRITICAL 
> Socket IO : An error has occurred for sid 
> c47dcf5371db490589849016f356509d, 
> uuid:4C4C4544-0044-3610-8052-C6C04F563032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,124 CRITICAL 
> Socket IO : An error has occurred for sid 
> 9806cd9ab4dc434587032f61ab21a4a1, 
> uuid:4C4C4544-005A-3710-8046-B1C04F485232 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,128 CRITICAL 
> Socket IO : An error has occurred for sid 
> fc867ff778d74c17a214cfd9d376afc9, 
> uuid:4C4C4544-004A-4810-8035-B4C04F323032 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,133 CRITICAL 
> Socket IO : An error has occurred for sid 
> 45da4ce989fd43af97e52ad2702a32ea, 
> uuid:4C4C4544-0032-4A10-8051-B9C04F373632 : OperationalError('FATAL:  
> les emplacements de connexions restants sont r\xc3\xa9serv\xc3\xa9s 
> pour les connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n',)/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,136 CRITICAL 
> Socket IO : An error has occurred for sid 
> d2b70cda88d940e68f5330ad237a2b48, 
> uuid:4C4C4544-004E-4810-8052-C4C04F533632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,142 CRITICAL 
> Socket IO : An error has occurred for sid 
> bda40c494c594fba94a64ebe5ce1805c, 
> uuid:4C4C4544-0033-4310-8054-B2C04F535132 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,147 CRITICAL 
> Socket IO : An error has occurred for sid 
> 37bf1c41f4fe4d4db37db64ae61ade0c, 
> uuid:4C4C4544-0033-4810-8046-B7C04F4E4832 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,151 CRITICAL 
> Socket IO : An error has occurred for sid 
> 4b486804c6184b988b838dd65db0e45d, 
> uuid:4C4C4544-0050-3810-8035-C2C04F4C5931 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,155 CRITICAL 
> Socket IO : An error has occurred for sid 
> 99bede6aa8f341228f918fe0e7256de6, 
> uuid:4C4C4544-004E-4A10-8044-C4C04F463632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,159 CRITICAL 
> Socket IO : An error has occurred for sid 
> 6f6c4f7dadc9446a80ad180b03086bc7, 
> uuid:4C4C4544-004E-4810-8050-C4C04F533632 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,162 CRITICAL 
> Socket IO : An error has occurred for sid 
> 0273997b5a4e4985aef56845ab6acd26, 
> uuid:4C4C4544-0034-4A10-8048-B7C04F475A31 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,165 CRITICAL 
> Socket IO : An error has occurred for sid 
> 29580107dd3d4a22894e0110b004efb5, 
> uuid:4C4C4544-004E-4A10-8043-C4C04F433732 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 kernel: [334148.780704] TCP: request_sock_TCP: 
> Possible SYN flooding on port 8080. Sending cookies.  Check SNMP 
> counters./
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,492 WARNING 
> Invalid session None/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,527 CRITICAL 
> Socket IO : An error has occurred for sid 
> 38c804f9ba6147fbb2fc74357e244814, 
> uuid:4C4C4544-0036-3810-8057-C4C04F4C5132 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,530 CRITICAL 
> Socket IO : An error has occurred for sid 
> b945ee563fc942d19ebf212e29816a1a, 
> uuid:4C4C4544-0047-5310-804C-C2C04F574C32 : 
> UnicodeDecodeError('ascii', 'FATAL:  les emplacements de connexions 
> restants sont r\xc3\xa9serv\xc3\xa9s pour les 
> connexions\nsuperutilisateur non relatif \xc3\xa0 la 
> r\xc3\xa9plication\n', 54, 55, 'ordinal not in range(128)')/
> /Oct 22 10:44:13 wapt2 python[46480]: 2019-10-22 10:44:13,667 WARNING 
> Invalid session None/
> /Oct 22 10:44:20 wapt2 python[46480]: 2019-10-22 10:44:20,976 WARNING 
> SocketIO connection refused for uuid 
> 1AD885FF-D293-11E3-A201-6038460000FF, sid 
> 42127a2a84344908b2f1f2aa06740969: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:27 wapt2 python[46480]: 2019-10-22 10:44:27,107 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0037-3510-8057-B8C04F4E5232, sid 
> 4cdcdad658534cfcb741b32615a52682: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,419 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0042-5910-8044-C7C04F574C32, sid 
> 3713fcd4c44e45839597d5ddb135d2bd: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,504 WARNING 
> SocketIO connection refused for uuid 
> 6BB04FFF-742F-11E5-B56F-E0D50A15F8FF, sid 
> 4586990a945e46b39322384868266da2: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,572 WARNING 
> SocketIO connection refused for uuid 
> 4862867F-721E-11E5-914F-102AC808F0FF, sid 
> f9c5c1bcdd15444fa0234ec3a1897687: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,813 WARNING 
> SocketIO connection refused for uuid 
> F3C8127F-798A-11E3-B44F-87352A09F0FF, sid 
> 6408cee4d84b4d6a939337b2cf85b278: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,930 CRITICAL 
> SocketIO 4d52c02d92fc4ec08693ad30a61bd5fd connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,933 CRITICAL 
> SocketIO ee873c376bd04f93a9a70ed56bbf981b connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,978 CRITICAL 
> SocketIO 96042add848141488e621570faff088a connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,988 CRITICAL 
> SocketIO 210f035627f54e33a5416855717ba8f3 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:37 wapt2 python[46480]: 2019-10-22 10:44:37,993 CRITICAL 
> SocketIO 573e99bc1f604e62b9a83464b15b8a6a connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,013 CRITICAL 
> SocketIO f2ff97c526a24898b5fab59a44594242 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,018 CRITICAL 
> SocketIO 7255defcf9734433b27092cbd64a7bcd connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,046 CRITICAL 
> SocketIO 4fa8110ad4054b9cb306ed8d329f44db connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,087 CRITICAL 
> SocketIO 8396c3d1d655401c8dead76a1c30b92d connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,100 CRITICAL 
> SocketIO 938558df7cb04431a397acbd48cccec5 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,132 CRITICAL 
> SocketIO 3d3fc46dd03c4d2680cfeb932be36f29 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,166 CRITICAL 
> SocketIO cefc4ec8eba449c3b73954fe1393773e connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,176 CRITICAL 
> SocketIO 2a3e32805b934336b8773cab17310160 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,186 WARNING 
> SocketIO connection refused for uuid 
> A1D6ECED-39B0-11E6-BB00-95587301005D, sid 
> e99334255e1446b1af9fb83c8a272206: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,215 CRITICAL 
> SocketIO 9521c9337dd44cdabd2064cf30ea93e3 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,233 CRITICAL 
> SocketIO 06cd62541258416682b1d5f8c602b6ad connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,252 CRITICAL 
> SocketIO 4f54ac97591b4a2bb804c5180499cfe3 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,314 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0031-5710-804D-C3C04F32354A, sid 
> 3e44e71f71ba422cbd971da94d4f414b: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:44:38 wapt2 python[46480]: 2019-10-22 10:44:38,403 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0037-5A10-8032-B5C04F4E4E32, sid 
> 06b934e8333947c7acaddf64b667fc25: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:45:01 wapt2 CRON[46673]: (root) CMD (command -v debian-sa1 
> > /dev/null && debian-sa1 1 1)/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,012 CRITICAL 
> SocketIO e72e976b280e432fb0d2456fae6f52e7 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,037 CRITICAL 
> SocketIO 4cde52550a29411aaef0de261938e905 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,064 CRITICAL 
> SocketIO 91a04528a3054275975147583b34d92b connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,087 CRITICAL 
> SocketIO 4d6fba49d27846fc8f30c8e95630a3ec connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,105 CRITICAL 
> SocketIO b6bebc65c55249fd95205d7770b832e2 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,120 CRITICAL 
> SocketIO 2cd722f086374bd1a0a4a5f759111ba7 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,176 CRITICAL 
> SocketIO dc157bab8f8e44cb83c15dd247cf4bc5 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,180 CRITICAL 
> SocketIO 0a6aeebe432d450da48eb3441d9b7b13 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,201 CRITICAL 
> SocketIO 964952511417487e87532ef93a3a610f connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:03 wapt2 python[46480]: 2019-10-22 10:45:03,207 CRITICAL 
> SocketIO 50563ec64720464cba6f1b1488d88ecc connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:10 wapt2 python[46480]: 2019-10-22 10:45:10,301 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0053-4E10-8059-B7C04F353033, sid 
> d2b2edbbc33c4a5b9eaa78b48763bb3f: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:45:10 wapt2 python[46480]: 2019-10-22 10:45:10,304 WARNING 
> SocketIO connection refused for uuid 
> E7D5332B-B26C-BE10-CD9A-D646264AEB1D, sid 
> a95192dd64d149d7ab6379fdd297b9e3: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:45:10 wapt2 python[46480]: 2019-10-22 10:45:10,328 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0059-5310-8050-B2C04F314D32, sid 
> e1baa2bfa17b4230909d1a8f4c109ed5: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:45:10 wapt2 python[46480]: 2019-10-22 10:45:10,330 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0030-4C10-8039-B2C04F434332, sid 
> a8e0f81b85ce4dba86d204f2f16fdee3: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:45:10 wapt2 python[46480]: 2019-10-22 10:45:10,513 WARNING 
> SocketIO connection refused for uuid 
> 5C6E8A1F-A02E-11E6-B524-880C7201C0C9, sid 
> c6f6eab5c54a411bbfddf022f0122469: SocketIO connection not authorized, 
> invalid token: 400 Bad Request: The browser (or proxy) sent a request 
> that this server could not understand., instance/
> /Oct 22 10:45:13 wapt2 python[46480]: 2019-10-22 10:45:13,418 WARNING 
> SocketIO connection refused for uuid 
> 4C4C4544-0032-4A10-8051-B9C04F373632, sid 
> c91390b0ab214f2b8e2e78ad3095b9c3: SocketIO connection not authorized, 
> invalid token: Signature expired, instance/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,911 CRITICAL 
> SocketIO cb3d14b7ef0441d191fad9319c82879e connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,930 CRITICAL 
> SocketIO 59e8b92a17014f77b1b0209f7dfeba6c connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,956 CRITICAL 
> SocketIO 639fb2e3d14c4b7f9018b1b9ae351ba7 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,959 CRITICAL 
> SocketIO 160db22989ec4796bb6a2bf792fee218 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,972 CRITICAL 
> SocketIO 12c0be29ffd945a2b2c9ec6120f1f238 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,975 CRITICAL 
> SocketIO 8aba4d0c7eff41b4bc748550bcea97bd connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:27 wapt2 python[46480]: 2019-10-22 10:45:27,976 CRITICAL 
> SocketIO 2cc30b2ca1444d57b603735e0093727a connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,022 CRITICAL 
> SocketIO 95a71a38df274a809f5a6eb623559cb2 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,030 CRITICAL 
> SocketIO 17e8111a836844d0848d38c0d4ec135e connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,034 CRITICAL 
> SocketIO c58648cb207d47dfadb5d89ac81a7b14 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,035 CRITICAL 
> SocketIO 5544c3d41f0f4dd5b52477f5812a6e7d connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,053 CRITICAL 
> SocketIO b9a9f5d0deac43fbb1a69a98fb956d29 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,079 CRITICAL 
> SocketIO 8f617aa9ae1f4d209372dc0bfb6467bc connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,158 CRITICAL 
> SocketIO 324263208a05472380696279e7dffa2b connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,168 CRITICAL 
> SocketIO 94e0fbae016547ccbaef39f5b56d97e6 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,172 CRITICAL 
> SocketIO c47dcf5371db490589849016f356509d connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,188 CRITICAL 
> SocketIO 177f19e360bb42dbafec87f793b5d63a connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,193 CRITICAL 
> SocketIO 53d62068672948c5bf831c226611e283 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,194 CRITICAL 
> SocketIO efe8a050ddc14c24a8cf0d449153ab76 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,265 CRITICAL 
> SocketIO 9d990e1e6f4e477f86eb9615f32eba21 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,297 CRITICAL 
> SocketIO 71c361e2d839418c88655b9bc0960c5b connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,451 CRITICAL 
> SocketIO 9806cd9ab4dc434587032f61ab21a4a1 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,817 CRITICAL 
> SocketIO 37bf1c41f4fe4d4db37db64ae61ade0c connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,824 CRITICAL 
> SocketIO d2b70cda88d940e68f5330ad237a2b48 connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,847 CRITICAL 
> SocketIO 4b486804c6184b988b838dd65db0e45d connected but no host uuid 
> in session: asking connected host to reconnect/
> /Oct 22 10:45:28 wapt2 python[46480]: 2019-10-22 10:45:28,891 CRITICAL 
> SocketIO 99bede6aa8f341228f918fe0e7256de6 connected but no host uuid 
> in session: asking connected host to reconnect/
>
> Est-ce normal ?
>
> *Frédéric GARESCHÉ
> *
> *Équipe Assistance et Exploitation
> *
> *Direction du Système d'Information (D.S.I)*
> *Correspondant Département EII et laboratoire IETR
> *Tél. : +33 (0)2 23 2*3 82 81*
> 20 avenue des Buttes de Coësmes
> CS 70839 - 35 708 RENNES Cedex 7
>
> <https://www.insa-rennes.fr>
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.tranquil.it/pipermail/wapt/attachments/20191022/4ccafbb7/attachment.html>


More information about the WAPT mailing list