Search results

  1. V

    ELK for Postfix

    UPD I deleted in /etc/logstash/conf.d/ input.conf, outout.conf . Now instead of them one file /etc/logstash/conf.d/postfox.conf input { beats { type => "postfix" port => 5044 } } filter { if [type] == "postfix" { grok { match => { "message" => "%{SYSLOGTIMESTAMP}...
  2. V

    ELK for Postfix

    Hi ELK (Elasticsearch,Logstash,Kibana) on 192.168.199.131 Filebeat on 192.168.199.145 In 192.168.199.131: tcp6 0 0 127.0.0.1:9200 :::* LISTEN 68352/java tcp6 0 0 ::1:9200 :::* LISTEN 68352/java...
  3. V

    ELK

    Hi Elasticsearch, Logstash, Kibana on one server. Filebeat on another server .In /etc/elasticsearch/elasticsearch.yml network.host: 127.0.0.1 or the external interface ?
  4. V

    Regexp

    Thank. What is the difference between \b(?:[1-9][0-9]*)\b and \b([1-9][0-9]*)\b ?
  5. V

    Regexp

    Hi For what \b(?:[1-9][0-9]*)\b ?: Google told me: (?:...) A non-capturing version of regular parentheses. Matches whatever regular expression is inside the parentheses, but the substring matched by the group cannot be retrieved after performing a match or referenced later in the pattern...
  6. V

    UMASK

    Hi How do I configure different umask for different users ?
  7. V

    Increasing the LVM disk size

    Do I need to create a partition on sdc ?
  8. V

    Increasing the LVM disk size

    Hi The virtual disk is increased. How to increase LVM ? fdisk -l /dev/sdc Disk /dev/sdc: 53.7 GB, 53687091200 bytes, 104857600 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Physical...
  9. V

    Puppet 4.10.12 Exiting; no certificate found and waitforcert is disabled

    Thanks. The solution to all problems in life FQDN )
  10. V

    Puppet 4.10.12 Exiting; no certificate found and waitforcert is disabled

    1) Exiting; no certificate found and waitforcert is disabled 2) Error: Could not find CSR for: "puppetclient.my.test.com". 3) Exiting; no certificate found and waitforcert is disabled
  11. V

    Puppet 4.10.12 Exiting; no certificate found and waitforcert is disabled

    Hi Agent: puppet agent --no-daemonize --server puppetserver.my.test.com --onetime --verbose Exiting; no certificate found and waitforcert is disabled /etc/puppetlabs/puppet/puppet.conf [agent] server = puppetserver.my.test.com Ping, telnet OK Server: [main] certname =...
  12. V

    Oracle vm server

    Hi I want to test oracle vm server. I installed it on a physical server. How to create a VM for oracle vm manager. Without him poorly (
  13. V

    Requires: vulkan-filesystem

    Hi, everybody. CUDA install 10.1 on RED HAT 7. Added repository. Want to install but Requires: vulkan-filesystem Is it fatality ?
  14. V

    Testing container

    Thanks. Topic closed.
  15. V

    Testing container

    Hi, everybody. I want to do a thing in the container. But in order not to break anything I want to make a backup and make a copy of the container. On it to try and make the combat container. Is it right to do so: 1) back Up Docker container: docker commit -p 78727078a04...
  16. V

    Migration from ESXi to Proxmox

    Thanks to all. Topic is closed
  17. V

    Migration from ESXi to Proxmox

    FIX. This is the correct script. But when dd if is correct but of the same. That is dd if=/dev/vg_ibm_01-1/TEST_VM_DISKS/TEST_CentOS-flat.vmdk.raw of=/dev/vg_ibm_01-1/vm-201-disk-0 dd if=/dev/vg_ibm_01-1/TEST_VM_DISKS/TEST_WIN7-flat.vmdk.raw of=/dev/vg_ibm_01-1/vm-201-disk-0 And should be...
  18. V

    Migration from ESXi to Proxmox

    Thanks. But find /dev/vg_ibm_01-1/TEST_VM_DISKS -iname *-flat.vmdk -exec qemu-img convert {} /dev/vg_ibm_01-1/TEST_VM_DISKS/Converted/{}.raw \; qemu-img: /dev/vg_ibm_01-1/TEST_VM_DISKS/Converted//dev/vg_ibm_01-1/TEST_VM_DISKS/TEST_CentOS-flat.vmdk.raw: error while converting raw: Could not...
  19. V

    Migration from ESXi to Proxmox

    FIX #!/bin/bash while read VMDK; do scp root@10.50.10.154:$VMDK /dev/vg_ibm_01-1/TEST_VM_DISKS done < DISKS exit Copying works Next I want to convert For example so find /dev/vg_ibm_01-1/TEST_VM_DISKS -iname *-flat.vmdk -exec qemu-img convert {}...