View previous topic :: View next topic |
Author |
Message |
kaio Apprentice
Joined: 26 Aug 2003 Posts: 293 Location: Gorizia - IT
|
Posted: Sun Feb 12, 2006 9:32 am Post subject: Monitoraggio processi |
|
|
Avrei bisogno di un tool che mi permetta di monitorare, in maniera un pò amichevole, al volo il numero di processi lanciati in background dai vari utenti che hanno accesso alla mia macchina via ssh.
Per favore evitate di consigliarmi ps |
|
Back to top |
|
|
.:chrome:. Advocate
Joined: 19 Feb 2005 Posts: 4588 Location: Brescia, Italy
|
Posted: Sun Feb 12, 2006 10:22 am Post subject: Re: Monitoraggio processi |
|
|
top?
seriamente... le possibilità non sono molte. prova a specificare meglio le tue esigenze |
|
Back to top |
|
|
kaio Apprentice
Joined: 26 Aug 2003 Posts: 293 Location: Gorizia - IT
|
Posted: Sun Feb 12, 2006 11:02 am Post subject: |
|
|
Ho la necessità di monitorare i processi in eccedenza (rispetto a quelli sottoscritti da contratto) che possono essere lanciati in background
Spero stavolta di essere stato più chiaro |
|
Back to top |
|
|
.:chrome:. Advocate
Joined: 19 Feb 2005 Posts: 4588 Location: Brescia, Italy
|
Posted: Sun Feb 12, 2006 1:05 pm Post subject: |
|
|
kaio wrote: | Spero stavolta di essere stato più chiaro |
adesso si
puoi usare i limiti di sistema, che mi pare più comodo (e sensato) che stasre a monitorare ad occhio |
|
Back to top |
|
|
ProT-0-TypE Veteran
Joined: 20 Dec 2003 Posts: 1624 Location: Cagliari
|
Posted: Sun Feb 12, 2006 2:13 pm Post subject: |
|
|
k.gothmog wrote: |
puoi usare i limiti di sistema, che mi pare più comodo (e sensato) che stasre a monitorare ad occhio |
Anche a me..
prova a dare un'occhiata a /etc/security/limits.conf _________________ [Vuoi guadagnare navigando?] |
|
Back to top |
|
|
.:chrome:. Advocate
Joined: 19 Feb 2005 Posts: 4588 Location: Brescia, Italy
|
Posted: Sun Feb 12, 2006 6:07 pm Post subject: |
|
|
io punterei su /etc/security/limits. permette un controllo migliore e meno sommario |
|
Back to top |
|
|
kaio Apprentice
Joined: 26 Aug 2003 Posts: 293 Location: Gorizia - IT
|
Posted: Wed Feb 15, 2006 5:33 am Post subject: |
|
|
Se io assegno ad un gruppo un certo valore massimo di processi, questo valore è cumulativo per tutti i gli utenti oppure ogni utente ha un numero massimo di processi che può lanciare indicato in limits.conf?
Spero di essere stato chiaro... |
|
Back to top |
|
|
.:chrome:. Advocate
Joined: 19 Feb 2005 Posts: 4588 Location: Brescia, Italy
|
Posted: Wed Feb 15, 2006 8:28 am Post subject: |
|
|
onestamente non ricordo. le guide cosa dicono?
a rigor di logica dovrebbe essere un criterio che si applica ad ogni utente del gruppo (quindi non cumulativo): è così che succede ovunque, e presumo che anche i limiti di sistema si comportino allo stesso modo. per scrupolo controllerei però sulla guida |
|
Back to top |
|
|
kaio Apprentice
Joined: 26 Aug 2003 Posts: 293 Location: Gorizia - IT
|
Posted: Wed Feb 15, 2006 10:09 am Post subject: |
|
|
Purtroppo dai commenti presenti in limits.conf non si capisce bene, per questo chiedevo
Qui sotto allego quello che c'è scritto in limits.conf
Code: |
/etc/security/limits.conf
#
#Each line describes a limit for a user in the form:
#
#
#
#Where:
# can be:
# - an user name
# - a group name, with @group syntax
# - the wildcard *, for default entry
#
# can have the two values:
# - "soft" for enforcing the soft limits
# - "hard" for enforcing hard limits
#
# 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
# - priority - the priority to run user process with
|
In effetti sembra che non sia cumulativo, però sarebbe da provare... |
|
Back to top |
|
|
.:chrome:. Advocate
Joined: 19 Feb 2005 Posts: 4588 Location: Brescia, Italy
|
|
Back to top |
|
|
ProT-0-TypE Veteran
Joined: 20 Dec 2003 Posts: 1624 Location: Cagliari
|
Posted: Wed Feb 15, 2006 10:17 am Post subject: |
|
|
per abilitare i limiti dovevi aggiungere a pam qualcosa se non mi ricordo male...
EDIT: dovrebbe essere questa l'aggiunta:
In /etc/pam.d/login
aggiungi una riga:
Code: | session required /lib/security/pam_limits.so |
_________________ [Vuoi guadagnare navigando?] |
|
Back to top |
|
|
|