Bonjour,

J'ai développé une application de gestion d'horaire mais lorsqu'il y a beaucoup d'utilisateurs qui se connectent, il y a le message d'erreur "Too Many Open Files"

Lorsque je suis dans putty, que je me positionne dans Tomcat et que j'écris en ligne de commande :
j'obtiens comme réponse, entre autre,
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
open files                      (-n) 1024
Cette variable, je souhaite l'augmenter et la mettre à 10240. Je fais donc
Et lorsque je refais
j'obtiens comme réponse, entre autre,
Cela est exactement ce que je voudrais. Malheureusement, lors du reboot la valeur se remet à 1024

Et c'est là, où je ne comprend pas la démarche à faire ensuite

Lorsque je vais dans le fichier /etc/security/limits.conf

J'ai

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 
 
# /etc/security/limits.conf
#
#Each line describes a limit for a user in the form:
#
#<domain>        <type>  <item>  <value>
#
#Where:
#<domain> can be:
#        - an user name
#        - a group name, with @group syntax
#        - the wildcard *, for default entry
#        - the wildcard %, can be also used with %group syntax,
#                 for maxlogin limit
#
#<type> can have the two values:
#        - "soft" for enforcing the soft limits
#        - "hard" for enforcing hard limits
#
#<item> can be one of the following:
#        - core - limits the core file size (KB)
#        - data - max data size (KB)
#        - fsize - maximum filesize (KB)
#        - memlock - max locked-in-memory address space (KB)
#        - nofile - max number of open files
#        - rss - max resident set size (KB)
#        - stack - max stack size (KB)
#        - cpu - max CPU time (MIN)
#        - nproc - max number of processes
#        - as - address space limit
#        - maxlogins - max number of logins for this user
#        - maxsyslogins - max number of logins on the system
#        - priority - the priority to run user process with
#        - locks - max number of file locks the user can hold
#        - sigpending - max number of pending signals
#        - msgqueue - max memory used by POSIX message queues (bytes)
#        - nice - max nice priority allowed to raise to
#        - rtprio - max realtime priority
#
#<domain>      <type>  <item>         <value>
#
 
#*               soft    core            0
#*               hard    rss             10000
#@student        hard    nproc           20
#@faculty        soft    nproc           20
#@faculty        hard    nproc           50
#ftp             hard    nproc           0
#@student        -       maxlogins       4
 
# End of file
Qu'est ce que je dois modifier dans ce fichier pour que ma variable reste à 10240 ?