search for: l415

Displaying 6 results from an estimated 6 matches for "l415".

Did you mean: 415
2018 Mar 27
2
dovecot logging
...:-/ I tried to set an instance name but that change nothing. My options are now - let rsyslogd separate the sources by IP - use logfiles files Are there other? Currently the code use a fixed string "dovecot": https://github.com/dovecot/core/blob/master/src/lib-master/master-service.c#L415 I would ask if it's possible to use the instance name as syslog identifier, too? Andreas
2016 Jul 12
4
Re: Help: Can I access network inside libguestfs?
Thanks Pino for quick response. Actually I use the libguestfs APIs in C++ program. Following your idea, I think I should try guestfs_set_network for this. Please correct me if I have any misunderstanding. Thanks, Allen 2016-07-12 16:38 GMT+08:00 Pino Toscano <ptoscano@redhat.com>: > Hi, > > On Tuesday, 12 July 2016 16:30:17 CEST Baochuan Wu wrote: > > I mounted virtual
2016 Jul 13
0
Re: Help: Can I access network inside libguestfs?
...isks on CentOS 7, I installed > libguestfs into the CentOS 6.4. After installing, I reboot CentOS 6.4 but I > cannot log into it anymore. You will need to relabel the filesystem after installing packages, see: https://github.com/libguestfs/libguestfs/blob/master/customize/customize_run.ml#L415-L430 Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-builder quickly builds VMs from scratch http://libguestfs.org/virt-builder.1.html
2016 Jul 14
1
Re: Help: Can I access network inside libguestfs?
...gt; libguestfs into the CentOS 6.4. After installing, I reboot CentOS 6.4 > but I > > cannot log into it anymore. > > You will need to relabel the filesystem after installing packages, see: > > > https://github.com/libguestfs/libguestfs/blob/master/customize/customize_run.ml#L415-L430 > > Rich. > > -- > Richard Jones, Virtualization Group, Red Hat > http://people.redhat.com/~rjones > Read my programming and virtualization blog: http://rwmj.wordpress.com > virt-builder quickly builds VMs from scratch > http://libguestfs.org/virt-builder.1.html >
2018 Mar 27
0
dovecot logging
...hat change nothing. > > My options are now > - let rsyslogd separate the sources by IP > - use logfiles files > Are there other? > > Currently the code use a fixed string "dovecot": > https://github.com/dovecot/core/blob/master/src/lib-master/master-service.c#L415 > > I would ask if it's possible to use the instance name as syslog identifier, too? > > Andreas > Did you try running rsyslog inside the container and forwarding everything to the endpoint? You can modify the configuration of rsyslog and explicitly set a hostname if needed...
2023 Mar 24
1
[PATCH 1/1] nbd/server: push pending frames after sending reply
...(plaintext) and TLS corking (tls); when building up a message to the other side, a flag is set any time we know we are likely to send more data very shortly. nbdkit wraps it under a flag SEND_MORE, which applies to both plaintext: https://gitlab.com/nbdkit/nbdkit/-/blob/master/server/connections.c#L415 and to TLS connections: https://gitlab.com/nbdkit/nbdkit/-/blob/master/server/crypto.c#L396 while libnbd uses MSG_MORE a bit more directly for the same purpose for plaintext, but isn't (yet) doing TLS corking: https://gitlab.com/nbdkit/libnbd/-/blob/master/generator/states-issue-command.c#L53...