search for: log_type

Displaying 18 results from an estimated 18 matches for "log_type".

2006 Oct 16
2
Dovecot still failing with RC10...
...e relevant: defaults { #The maximum number of requests a particular service may handle # at once. instances = UNLIMITED # The type of logging. This logs to a file that is specified. # Another option is: SYSLOG syslog_facility [syslog_level] log_type = FILE /var/log/servicelog # What to log when the connection succeeds. # PID logs the pid of the server processing the request. # HOST logs the remote host's ip address. # USERID logs the remote user (using RFC 1413) # EXIT logs the exit status o...
2008 Jul 10
2
A couple of dovecot issues I've noted recently...
...n t_malloc_real (size=16, permanent=true) at data-stack.c:244 #14511 0x080b1890 in t_malloc0 (size=16) at data-stack.c:279 #14512 0x080b8715 in pool_datastack_create () at mempool-datastack.c:51 #14513 0x080bda2b in t_str_new (initial_size=512) at str.c:17 #14514 0x080b21f3 in internal_handler (log_type=70 'F', format=0x80cdd64 "mem_block_alloc(): Out of memory when allocating %u bytes", args=0x76b96d8 "\020") at failures.c:383 #14515 0x080b22b6 in i_internal_fatal_handler (status=83, fmt=0x0, args=0x76b96d8 "\020") at failures.c:410 #14516 0x080b1e1...
2005 Jul 06
1
Question regarding SWAT
...uot; I get the following error: "Connection was refused when attempting to contact localhost:901" My config files look like this: --/etc/xinetd.conf-- # # Simple configuration file for xinetd # # Some defaults, and include /etc/xinetd.d/ defaults { instances = 60 log_type = SYSLOG authpriv log_on_success = HOST PID log_on_failure = HOST cps = 25 30 } includedir /etc/xinetd.d swat stream tcp nowait.400 root /usr/sbin/swat swat ---------------------------------------------------- --/etc/xinetd.d/swat---- # default: off # descripti...
2009 May 24
1
PXEboot trouble with Soekris 4826
....168.200.1; #filename "/tftpboot/pxelinux.0"; when this statement is used,file not found is reported filename "pxelinux.0"; } I installed tftp server using tft-hpa-0.46 package.Then i made changes to xinetd.conf file : defaults { instances = 60 log_type = SYSLOG authpriv log_on_success = HOST PID log_on_failure = HOST cps = 25 30 } includedir /etc/xinetd.d service tftp { disable = no socket_type = dgram protocol = udp wait = yes u...
2013 Oct 24
1
Problems with userdb lookup
...at=0xb7757344 "file %s: line %d (%s): assertion failed: (%s)", args=0xbfb12304 "") at failures.c:653 status = 0 #5 0xb76de1d6 in i_panic (format=format at entry=0xb7757344 "file %s: line %d (%s): assertion failed: (%s)") at failures.c:264 ctx = {type = LOG_TYPE_PANIC, exit_status = 0, timestamp = 0x0} args = 0xbfb12304 "" #6 0xb7751886 in p_strndup (pool=0xb7796544 <static_unsafe_data_stack_pool>, str=str at entry=0x0, max_chars=max_chars at entry=4294967295) at strfuncs.c:74 mem = <optimized out> len = <o...
2006 May 19
4
beta8: core, signal 11
...ce #0 0xff1b455c in strlen () from /usr/lib/libc.so.1 #1 0xff207058 in _doprnt () from /usr/lib/libc.so.1 #2 0xff2090c8 in vsnprintf () from /usr/lib/libc.so.1 #3 0x00080f3c in str_vprintfa (str=0xa6be2, fmt=Cannot access memory at address 0x48 ) at str.c:118 #4 0x00073f0c in internal_handler (log_type=-64 '?', format=0x2 <Address 0x2 out of bounds>, args=0x18) at failures.c:362 #5 0x00073f60 in i_internal_info_handler ( fmt=0x49 <Address 0x49 out of bounds>, args=0x84288) at failures.c:400 #6 0x00074424 in i_info (format=0x84288 "Disconnected: %s") at fail...
2013 Apr 25
0
[PATCH] Btrfs: remove almost all of the BUG()'s from tree-log.c
...tic noinline int link_to_fixup_dir(struct btrfs_trans_handle *trans, } else if (ret == -EEXIST) { ret = 0; } else { - BUG(); + BUG(); /* Logic Error */ } iput(inode); @@ -1499,7 +1515,7 @@ static noinline int replay_one_name(struct btrfs_trans_handle *trans, struct inode *dir; u8 log_type; int exists; - int ret; + int ret = 0; dir = read_one_inode(root, key->objectid); if (!dir) @@ -1531,7 +1547,9 @@ static noinline int replay_one_name(struct btrfs_trans_handle *trans, key->offset, name, name_len, 1); } else { - BUG(); + /* Corruption */ +...
2004 Oct 01
2
SSL setup ?
...p3s: service pop3s { disable = no flags = REUSE socket_type = stream wait = no user = root group = root instances = UNLIMITED server = /usr/libexec/dovecot/pop3-login log_type = SYSLOG daemon info } I've setup the certificates, ssl_disable = no, protocols = imap pop3 pop3s ,but if I telnet on my server's port 995, I get the dovecot banner in clear-text. I'm for sure missing something here... Marius
2005 Jul 12
1
xinetd + dovecot
...####################################### # cat /etc/xinetd.d/imap service imap { disable = no socket_type = stream protocol = tcp wait = no user = root server = /usr/libexec/dovecot/imap-login flags = IPv4 log_type = FILE /var/log/mail/dovecot log_on_success = PID HOST USERID } ####################################### But... # nmap 192.168.1.1 Starting nmap 3.70 ( http://www.insecure.org/nmap/ ) at 2005-07-12 16:53 YEKST Interesting ports on myhost.ru (192.168.1.1): (The 1653 ports scanned but n...
2013 Aug 04
0
[PATCH] Btrfs: fix inode leak on kmalloc failure in tree-log.c
...fs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -1536,8 +1536,10 @@ static noinline int replay_one_name(struct btrfs_trans_handle *trans, name_len = btrfs_dir_name_len(eb, di); name = kmalloc(name_len, GFP_NOFS); - if (!name) - return -ENOMEM; + if (!name) { + ret = -ENOMEM; + goto out; + } log_type = btrfs_dir_type(eb, di); read_extent_buffer(eb, name, (unsigned long)(di + 1), -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
2008 Aug 01
1
1.1.2 segfaults when using passdb passwd and md5 mechanism
...ey=0xa85) at hash.c:159 node = <value optimized out> #1 0x0000000000405dae in log_it (log_io=0x1736ee00, line=0x1736f922 "DIGEST-MD5 mechanism can't be supported with given passdbs", continues=false) at log.c:128 process = <value optimized out> log_type = LOG_TYPE_FATAL #2 0x0000000000405e48 in log_write_pending (log_io=0x1736ee00) at log.c:51 _data_stack_cur_id = 3 line = 0x1736f920 "\001FDIGEST-MD5 mechanism can't be supported with given passdbs" #3 0x00000000004060e8 in log_read (log_io=0x1736ee00) at log.c:176...
2006 May 02
0
beta7 imap core, no assert
...ce #0 0xff1b451c in strlen () from /usr/lib/libc.so.1 #1 0xff206f88 in _doprnt () from /usr/lib/libc.so.1 #2 0xff208ff8 in vsnprintf () from /usr/lib/libc.so.1 #3 0x0007ed18 in str_vprintfa (str=0xa43b2, fmt=Cannot access memory at address 0x48 ) at str.c:118 #4 0x00071eb4 in internal_handler (log_type=-112 '\220', format=0x2 <Address 0x2 out of bounds>, args=0x18) at failures.c:362 #5 0x00071f08 in i_internal_info_handler ( fmt=0x49 <Address 0x49 out of bounds>, args=0x82098) at failures.c:400 #6 0x000723cc in i_info (format=0x82098 "Disconnected: %s") at...
2010 Jul 29
1
[Bug] check return of kmalloc()
..._len(eb, ref); - name = kmalloc(namelen, GFP_NOFS); BUG_ON(!name); read_extent_buffer(eb, name, (unsigned long)(ref + 1), namelen); @@ -1182,7 +1177,6 @@ static noinline int replay_one_name(stru BUG_ON(!dir); name_len = btrfs_dir_name_len(eb, di); - name = kmalloc(name_len, GFP_NOFS); log_type = btrfs_dir_type(eb, di); read_extent_buffer(eb, name, (unsigned long)(di + 1), name_len); @@ -2605,8 +2599,6 @@ static noinline int copy_items(struct bt INIT_LIST_HEAD(&ordered_sums); - ins_data = kmalloc(nr * sizeof(struct btrfs_key) + - nr * sizeof(u32), GFP_NOFS); ins_s...
2002 Dec 03
2
Samba SWAT 2.2.7 Doesn't Work in Redhat8.0?
...ervice netbios-ssn 139/udp ... # Local services swat 901/tcp # samba swat [root@ibmapt root]# cat /etc/xinetd.conf # # Simple configuration file for xinetd # # Some defaults, and include /etc/xinetd.d/ defaults { instances = 60 log_type = SYSLOG authpriv log_on_success = HOST PID log_on_failure = HOST cps = 25 30 } includedir /etc/xinetd.d [root@ibmapt root]# cat /etc/xinetd.d/swat ## /etc/xinetd.d/swat service swat { disable = no p...
2005 May 26
14
htb: HowTo identify squid cache hits
Hi list... I work for a school in the netherlands with a 2mbit Internet uplink and about 3800 eager student who want to play games on the Internet using one of our 800 workstations. Problem was that those game playing students are concentrated in 2 of our 6 physical locations... and they consumed the bandwidth which the other location would like to use for educational purposes. The thing we did
1999 Mar 22
86
SWAT
I was playing with this on my test machine, (redhat 5.2, samba 2.0.3) worked great, and I was really impressed. So I decided to install this on my office machine. (redhat 4.2, samba 2.0.3) and the only significant difference is that on the office machine, I use encrypted passwords. I cannot get swat to authenticate on the second machine. That is, no matter what account, password combination
2009 May 28
1
Message 11 Syslinux Digest, Vol 74, Issue 24(Re: PXEboot trouble with Soekris 4826 (Miller, Shao)
...n this statement is used,file not > found > is reported > filename "pxelinux.0"; > } > > I installed tftp server using tft-hpa-0.46 package.Then i made changes to > > xinetd.conf file : > > defaults > { > instances = 60 > log_type = SYSLOG authpriv > log_on_success = HOST PID > log_on_failure = HOST > cps = 25 30 > } > > includedir /etc/xinetd.d > > service tftp > { > disable = no > socket_type = dgram &gt...
2003 Dec 01
0
No subject
...mbd -V Version 2.0.10 ~~~ $ ps -ef |grep xinetd root 553 1 0 Sep06 ? 00:00:00 xinetd -stayalive -reuse -pidfil ~~~ $ cat /etc/xinetd.conf # # Configuration file for xinetd # # Some defaults, and include /etc/xinetd.d/ defaults { instances = 60 log_type = SYSLOG authpriv log_on_success = HOST PID log_on_failure = HOST } includedir /etc/xinetd.d ~~~ $ cat /etc/xinetd.d/smb # default: none # description: Samba daemon configuration for sharing \ # Linux files and directories with Window...