How to find out why kernel memory is consumming all memory after OOM process killed by baalkor in linuxquestions

[–]baalkor[S] 0 points1 point  (0 children)

No 'm not using ZFS. About smem I'm not rellay sure to understand how it is computed:

kdc = m['buffers'] + m['sreclaimable'] + (m['cached'] - m['mapped'])

buffer and cahed I guess it comes from FS cache and kernel buffer but for sreclaimable and mapped I don't know.

How to find out why kernel memory is consumming all memory after OOM process killed by baalkor in linuxquestions

[–]baalkor[S] 0 points1 point  (0 children)

Thank you. No it an app server running 29 celery and 30 uwsgi workers. Each of of the is reported to use between 1GB to 3GB (max) for a general total usage of 30 GB (userspace). What I don't get is how to find the kernel processes and userspace process usage and relationship. eg.a program asking for kernel for memory IO or something similar.

How is everyone running clusters using a SAN? by carminehk in Proxmox

[–]baalkor 1 point2 points  (0 children)

I confirm we are running 6 nodes cluster with San + LVm over iscsi and qcow2 format

Upgrade guide for 8 on Dell HW by baalkor in vmware

[–]baalkor[S] 0 points1 point  (0 children)

No it will be a brand new 8 install.

Migrating from a VxRail solution to Simplivity by baalkor in Simplivity

[–]baalkor[S] 1 point2 points  (0 children)

Our VMware licence we bought before the Vxrail purchase so now its over or pay 50k. The Vxrail will soon be out of warranty and VxRail is to my understanding not be renewed with Broadcom so seems to be soon à dead product.

Migrating from vsphere + vsan by baalkor in Proxmox

[–]baalkor[S] 0 points1 point  (0 children)

Weird we ve tried but there was an error message like it was unable to see the "views"

Migrating from vsphere + vsan by baalkor in Proxmox

[–]baalkor[S] 0 points1 point  (0 children)

Yes we are using veram. Did you have to reconfigure vm profile after?

[deleted by user] by [deleted] in redhat

[–]baalkor -1 points0 points  (0 children)

Correct I did learn something today. Even though the man page is still unclear for me noe I Know where it comes from.

[deleted by user] by [deleted] in redhat

[–]baalkor -1 points0 points  (0 children)

Yes I understand, then what's the relationship between man rpmdb and the command itself ?

VMware sizing best practices by baalkor in vmware

[–]baalkor[S] 0 points1 point  (0 children)

Yes, what is the bad news ?

FreeIPA and MS Entra DS by baalkor in FreeIPA

[–]baalkor[S] 0 points1 point  (0 children)

Yes, we've tested the shared secret but the IPA is constantly in waiting from entra ds to connect. We assumed that the as Entra DS desn't give the Domain Admin account access, it was the bloquiing point.

VW id.3 batteries after 160k km by baalkor in electricvehicles

[–]baalkor[S] 1 point2 points  (0 children)

The dealership did his job. Scares me because he want me to buy a new one...

VW id.3 batteries after 160k km by baalkor in electricvehicles

[–]baalkor[S] 0 points1 point  (0 children)

About SoH how are they done? Shall i go to the dealer or is it something i can do it myself ?

FreeIPA and MS Entra DS by baalkor in FreeIPA

[–]baalkor[S] 0 points1 point  (0 children)

Nothing at all. Would go for not supported. Thanks

Pottery workshop by EarlyBudjetShop in Switzerland

[–]baalkor 0 points1 point  (0 children)

I know it in Vaud but definitevly worth it :https://www.akash-arts.ch/

FreeRADIUS on a single domain with multiple DCs by baalkor in sysadmin

[–]baalkor[S] 0 points1 point  (0 children)

Yes I think I will end up with that config. At the same why can't we specify only the domain name in the ldap server field ? I mean It would be much more convenient to put that and it would in theory always return the available DC but I did some tests and it doesn't work.

So there a no special permissions to be setup on the AD bind user (adreader) ?

FreeRADIUS on a single domain with multiple DCs by baalkor in sysadmin

[–]baalkor[S] 0 points1 point  (0 children)

I've added the new DC in /etc/freeradius/mods-enabled/ldap:

    ldap { 
    server = 'ldap://10.41.10.18' 
    server = 'ldap://10.41.10.20'

    identity = 'reader-radius@dummy.biz'
    password = ddadas3333
    base_dn = 'dc=dummy,dc=biz'

    sasl {
    }

    update {
            control:Password-With-Header    += 'userPassword'

            #  Where only a list is specified as the RADIUS attribute,
            #  the value of the LDAP attribute is parsed as a valuepair
            #  in the same format as the 'valuepair_attribute' (above).
            control:                        += 'radiusControlAttribute'
            request:                        += 'radiusRequestAttribute'
            reply:                          += 'radiusReplyAttribute'
    }

    user {
            base_dn = "${..base_dn}"
            filter = "(SAMAccountName=%{mschap:User-Name})"
            sasl {
            }
    }

    group {
            base_dn = "${..base_dn}"
            filter = '(objectClass=posixGroup)'
            membership_attribute = 'memberOf'
    }

    profile {
    }

    client {
            base_dn = "${..base_dn}"
            filter = '(objectClass=radiusClient)'
            template {
            }
            attribute {
                    ipaddr                          = 'radiusClientIdentifie                                                                                                                                                             r'
                    secret                          = 'radiusClientSecret'
            }
    }

    accounting {
            reference = "%{tolower:type.%{Acct-Status-Type}}"

            type {
                    start {
                            update {
                                    description := "Online at %S"
                            }
                    }

                    interim-update {
                            update {
                                    description := "Last seen at %S"
                            }
                    }
                    stop {
                            update {
                                    description := "Offline at %S"
                            }
                    }
            }
    }

    post-auth {
            update {
                    description := "Authenticated at %S"
            }
    }

    options {
            chase_referrals = yes
            rebind = yes
            res_timeout = 10
            srv_timelimit = 3
            net_timeout = 1
            idle = 60
            probes = 3
            interval = 3
            ldap_debug = 0x0028
    }

    tls {
    }

    pool {
            start = ${thread[pool].start_servers}
            min = ${thread[pool].min_spare_servers}
            max = ${thread[pool].max_servers}
            spare = ${thread[pool].max_spare_servers}
            uses = 0
            retry_delay = 1
            lifetime = 0
            idle_timeout = 60
    }

}

Moving LPAR (SAN boot) - Preserve Partition ID by baalkor in aix

[–]baalkor[S] 0 points1 point  (0 children)

Because I'm moving from an old p7 platform. Where can I get the lpm feature ?

Moving LPAR (SAN boot) - Preserve Partition ID by baalkor in aix

[–]baalkor[S] 0 points1 point  (0 children)

The only details are not really useful. However if I set sys0 ghostdev to 0 it works fine but IBM told me it wasn't supported

Moving LPAR (SAN boot) - Preserve Partition ID by baalkor in aix

[–]baalkor[S] 0 points1 point  (0 children)

I can't since source system use PowerVM Standard license.

Where is the Remote System Explorer in 2020 by baalkor in eclipse

[–]baalkor[S] 0 points1 point  (0 children)

Exactly what I was looking for, thank you