zoneli_-_zonelimit_state
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zoneli_-_zonelimit_state [2009/03/06 15:26] – created jt | zoneli_-_zonelimit_state [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 4: | Line 4: | ||
=== Problem Explained === | === Problem Explained === | ||
- | How to get rid of .gvfs and what it is. | + | When there are no free mbuf clusters available, FreeBSD enters zonelimit state and stops awnsering network requests. You can see if the system has gone into " |
- | What it is | + | To see current mbuf cluster usage |
- | GVFS is a replacement for GnomeVFS, the GNOME Virtual File System | + | <code bash> |
+ | netstat -m | ||
+ | </ | ||
- | {User_home}/ | + | === Resolution === |
- | It stays mounted even when user is logged off.You need to umount | + | |
- | Use following command to unmount | + | Immediate resolution |
+ | |||
+ | === Update Settings on / | ||
<code bash> | <code bash> | ||
- | umount -fl /home/xyz/.gvfs | + | kern.ipc.nmbclusters=" |
+ | kern.ipc.somaxconn=" | ||
+ | kern.ipc.maxsockbuf=" | ||
+ | net.inet.tcp.sendspace=" | ||
+ | net.inet.tcp.recvspace=" | ||
</ | </ | ||
+ | |||
+ | **OR** | ||
+ | |||
+ | === Following is the run time updating settings. === | ||
+ | |||
+ | <code bash> | ||
+ | sysctl kern.ipc.nmbclusters=2147483647 | ||
+ | sysctl kern.ipc.somaxconn=1024 | ||
+ | sysctl kern.ipc.maxsockbuf=20480000 | ||
+ | sysctl net.inet.tcp.sendspace=1024000 | ||
+ | sysctl net.inet.tcp.recvspace=1024000 | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
zoneli_-_zonelimit_state.1236353218.txt.gz · Last modified: 2020/08/10 02:29 (external edit)