Displaying 12 results from an estimated 12 matches for "acregmax".
2020 Oct 23
1
dovecot-uidlist invalid data
...ian10 - kernel-4.19.0-12 - problem exist
In debian8 - kernel 3.16.0-11-amd64 - problem not exists
In debian9 - kernel 3.16.0-11-amd64 - problem not exists
storage mount from storage NetApp
storage:/vmail on /vmail type nfs
(rw,noexec,noatime,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=120,acregmax=120,acdirmin=120,acdirmax=120,hard,nocto,nordirplus,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.19.19.19,mountvers=3,mountport=635,mountproto=tcp,local_lock=none,addr=10.19.19.19)
cat /etc/fstab
storage:/vmail??? /vmail??? nfs???
rw,sec=sys,noexec,noatime,tcp,hard,rsize=65536,wsize=65536,in...
2006 Jun 26
0
[klibc 14/43] Remove in-kernel nfsroot code
...********************************************************
-
- Parsing of options
-
- ***************************************************************************/
-
-enum {
- /* Options that take integer arguments */
- Opt_port, Opt_rsize, Opt_wsize, Opt_timeo, Opt_retrans, Opt_acregmin,
- Opt_acregmax, Opt_acdirmin, Opt_acdirmax,
- /* Options that take no arguments */
- Opt_soft, Opt_hard, Opt_intr,
- Opt_nointr, Opt_posix, Opt_noposix, Opt_cto, Opt_nocto, Opt_ac,
- Opt_noac, Opt_lock, Opt_nolock, Opt_v2, Opt_v3, Opt_udp, Opt_tcp,
- Opt_acl, Opt_noacl,
- /* Error token */
- Opt_err
-};
-
-stati...
2007 May 17
1
NFS lock contention for dovecot-uidlist
...sage. NFS access cachcing
on the FreeBSD has been disabled (vfs.nfs.access_cache_timeout = 0, see
NFS mount options below). Postfix destination recipient and concurrency
limit for the Dovecot LDA is set to 1.
The NFS mount options:
rw,tcp,-r=32768,-w=32768,nfsv3,dumbtimer,noatime,acregmin=0,
acregmax=0,acdirmin=0,acdirmax=0
The dovecot.conf file:
protocols = imap imaps pop3 pop3s
disable_plaintext_auth = no
syslog_facility = local0
ssl_cert_file = /nethere/conf/dovecot/ssl-nh-cert.pem
ssl_key_file = /nethere/conf/dovecot/ssl-nh-key.pem
login_greeting = Server ready.
login_log_format_elements...
2019 Oct 07
0
[klibc:master] nfsmount: Use kernel client's default value for timeo option
...,7 +26,7 @@ static struct nfs_mount_data mount_data = {
.flags = NFS_MOUNT_NONLM | NFS_MOUNT_VER3 | NFS_MOUNT_TCP,
.rsize = 0, /* Server's choice */
.wsize = 0, /* Server's choice */
- .timeo = 7,
+ .timeo = 0, /* Kernel client's default */
.retrans = 3,
.acregmin = 3,
.acregmax = 60,
2020 Jun 23
0
problem with warnings
...78268 vs 1592871191): /vmail/us/username/Maildir/dovecot-uidlist
Before that there was no problem with warnnings
I have dovecot director with 5 dovecot-nodes and storage always was
mounted via nfs
/vmail on /vmail type nfs
(rw,noexec,noatime,vers=3,rsize=65536,wsize=65536,namlen=255,acregmin=120,acregmax=120,acdirmin=120,acdirmax=120,hard,nocto,nordirplus,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.0.100.41,mountvers=3,mountport=635,mountproto=tcp,local_lock=none,addr=xxx.xxx.xxx.xxx)
# 2.2.36.4 (baf9232c1): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.4.24.rc1 (debaa297)
# OS: Linux...
2005 Sep 02
0
nfsstat -m equivalent
...there an equivalent command to nfsstat -m on Centos 3.4?
On solaris it reports statistics for each NFS mounted file system
i.e.:
/mount/point from host:/some/path
Flags:
vers=3,proto=tcp,sec=sys,hard,intr,link,symlink,acl,rsize=32768,wsize=32768,retrans=5,timeo=50
Attr cache: acregmin=3,acregmax=60,acdirmin=30,acdirmax=60
On a related topic, how can I make a Centos3.4 nfs server export the filesystem
with an rsize/wsize of 32K.
I believe the kernel supports it:
$ grep MAXBL /usr/src/linux-2.4.21-27.EL/include/linux/nfsd/const.h
#define NFSSVC_MAXBLKSIZE (32*1024)
#define NFSSVC_MAX...
2008 May 20
1
I need some NFS explanations, please.
...Can anyone explain the above situation and perhaps some settings that
will resolve this without requiring the nfs client to open the file in
some way before it gets the proper file attributes?
"nfsstat -m" of the client returns the following:
Flags:
rw,vers=3,rsize=32768,wsize=32768,acregmax=3,acdirmin=3,acdirmax=3,hard,
intr,proto=tcp,timeo=600,retrans=2,sec=sys,addr=10.0.12.152
Thanks for any help.
Steve Campbell
2012 Jan 07
1
Attribute Cache flush errors on FreeBSD 8.2
...lush_attr_cache_fd_locked: fchown(/home/philk/Mail/Deleted)
failed: Bad file descriptor
This is coming from nfs-workarounds.c line 210, which tracing back seems
to be coming from the call to mbox_lock on
lib-storage/index/mbox/mbox-lock.c line 774.
I have /home mounted with options
acregmin=0,acregmax=0,acdirmin=0,acdirmax=0 (as FreeBSD doesn't have a
noac option), but it throws the same error either way.
The output of dovecot -n is below.
Phil.
# 2.0.16: /usr/local/etc/dovecot/dovecot.conf
# OS: FreeBSD 8.2-RELEASE-p3 i386
auth_mechanisms = plain login
auth_username_format = %Lu
disa...
2005 May 22
1
[patch 11/12] Unpleasantness in linux/nfs_mount.h
...y.
*/
+#define NFS_MOUNT_VERSION 5
+
+struct nfs_mount_data {
+ int version; /* 1 */
+ int fd; /* 1 */
+ struct nfs2_fh old_root; /* 1 */
+ int flags; /* 1 */
+ int rsize; /* 1 */
+ int wsize; /* 1 */
+ int timeo; /* 1 */
+ int retrans; /* 1 */
+ int acregmin; /* 1 */
+ int acregmax; /* 1 */
+ int acdirmin; /* 1 */
+ int acdirmax; /* 1 */
+ struct sockaddr_in addr; /* 1 */
+ char hostname[256]; /* 1 */
+ int namlen; /* 2 */
+ unsigned int bsize; /* 3 */
+ struct nfs3_fh root; /* 4 */
+ int pseudoflavor; /* 5 */
+};
+
+/* bits in the flags field */
-#include...
2010 Jun 18
4
[Dovecot 1.2.11(NFS used) & dovecot-antispam 1.2]: move message error
...l01.domain.net 8.0-RELEASE FreeBSD 8.0-RELEASE #0: Sat Nov 21
15:48:17 UTC 2009
root at almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386
------------->%------------
Mount options. Two variant:
1. 192.164.100.103:/mnt/storage/mailstores /var/mail/mymail nfs
rw,acregmin=0,acregmax=0,acdirmin=0,acdirmax=0 0 0
2(current). 192.164.100.103:/mnt/storage/mailstores /var/mail/mymail
nfs rw,bg,tcp,nosuid 0 0
In both variants error detected.
-------------%<------------
mail01# dovecot --version
1.2.11
mail01# pkg_info | grep dspam
dovecot-antispam-1.2...
2010 Aug 13
15
NFS issue with ZFS
I have Solaris 10 U7 that is exporting ZFS filesytem.
The client is Solaris 9 U7.
I can mount the filesytem just fine but I am unable to write to it.
showmount -e shows my mount is set for everyone.
the dfstab file has option rw set.
So what gives?
Phillip
--
This message posted from opensolaris.org
2003 May 22
0
[PATCH 2.5.69 2/3] Remove NFS root support from the kernel
...itdata = {
- { "port", &nfs_port },
- { "rsize", &nfs_data.rsize },
- { "wsize", &nfs_data.wsize },
- { "timeo", &nfs_data.timeo },
- { "retrans", &nfs_data.retrans },
- { "acregmin", &nfs_data.acregmin },
- { "acregmax", &nfs_data.acregmax },
- { "acdirmin", &nfs_data.acdirmin },
- { "acdirmax", &nfs_data.acdirmax },
- { NULL, NULL }
-};
-
-
-/*
- * And now the flag options
- */
-static struct nfs_bool_opts {
- char *name;
- int and_mask;
- int or_mask;
-} root_bool_opts[]...