• XenServer 6.5 - Moving Virtual Disks Among SRs

    9
    0 Votes
    9 Posts
    2k Views
  • 4 Votes
    11 Posts
    8k Views
    DustinB3403D

    For anyone looking to do this here is my filebeat.yml file.

    # Name of the registry file. Per default it is put in the current working # directory. In case the working directory is changed after when running # filebeat again, indexing starts from the beginning again. registry_file: /var/lib/filebeat/registry # Full Path to directory with additional prospector configuration files. Each file must end with .yml # These config files must have the full filebeat config part inside, but only # the prospector part is processed. All global options like spool_size are ignored. # The config_dir MUST point to a different directory then where the main filebeat config file is in. #config_dir: ############################################################################### ############################# Libbeat Config ################################## # Base config file used by all other beats for using libbeat features ############################# Output ########################################## # Configure what outputs to use when sending the data collected by the beat. # Multiple outputs may be used. output: ### Elasticsearch as output elasticsearch: # Array of hosts to connect to. # Scheme and port can be left out and will be set to the default (http and 9200) # In case you specify and additional path, the scheme is required: http://localhost:9200/path # IPv6 addresses should always be defined as: https://[2001:db8::1]:9200 hosts: ["localhost:9200"] # Optional protocol and basic auth credentials. #protocol: "https" #username: "admin" #password: "s3cr3t" # Number of workers per Elasticsearch host. #worker: 1 # Optional index name. The default is "filebeat" and generates # [filebeat-]YYYY.MM.DD keys. #index: "filebeat" # A template is used to set the mapping in Elasticsearch # By default template loading is disabled and no template is loaded. # These settings can be adjusted to load your own template or overwrite existing ones #template: # Template name. By default the template name is filebeat. #name: "filebeat" # Path to template file #path: "filebeat.template.json" # Overwrite existing template #overwrite: false # Optional HTTP Path #path: "/elasticsearch" # Proxy server url #proxy_url: http://proxy:3128 # The number of times a particular Elasticsearch index operation is attempted. If # the indexing operation doesn't succeed after this many retries, the events are # dropped. The default is 3. #max_retries: 3 # The maximum number of events to bulk in a single Elasticsearch bulk API index request. # The default is 50. #bulk_max_size: 50 # Configure http request timeout before failing an request to Elasticsearch. #timeout: 90 # The number of seconds to wait for new events between two bulk API index requests. # If `bulk_max_size` is reached before this interval expires, addition bulk index # requests are made. #flush_interval: 1 # Boolean that sets if the topology is kept in Elasticsearch. The default is # false. This option makes sense only for Packetbeat. #save_topology: false # The time to live in seconds for the topology information that is stored in # Elasticsearch. The default is 15 seconds. #topology_expire: 15 # tls configuration. By default is off. #tls: # List of root certificates for HTTPS server verifications certificate_authorities: ["/etc/pki/tls/certs/logstash-forwarder.crt"] # Certificate for TLS client authentication #certificate: "/etc/pki/client/cert.pem" # Client Certificate Key #certificate_key: "/etc/pki/client/cert.key" # Controls whether the client verifies server certificates and host name. # If insecure is set to true, all server host names and certificates will be # accepted. In this mode TLS based connections are susceptible to # man-in-the-middle attacks. Use only for testing. #insecure: true # Configure cipher suites to be used for TLS connections #cipher_suites: [] # Configure curve types for ECDHE based cipher suites #curve_types: [] # Configure minimum TLS version allowed for connection to logstash #min_version: 1.0 # Configure maximum TLS version allowed for connection to logstash #max_version: 1.2 ### Logstash as output #logstash: # The Logstash hosts hosts: ["localhost:5044"] # Number of workers per Logstash host. #worker: 1 # Set gzip compression level. #compression_level: 3 # Optional load balance the events between the Logstash hosts #loadbalance: true # Optional index name. The default index name depends on the each beat. # For Packetbeat, the default is set to packetbeat, for Topbeat # top topbeat and for Filebeat to filebeat. #index: filebeat # Optional TLS. By default is off. #tls: # List of root certificates for HTTPS server verifications #certificate_authorities: ["/etc/pki/root/ca.pem"] # Certificate for TLS client authentication #certificate: "/etc/pki/client/cert.pem" # Client Certificate Key #certificate_key: "/etc/pki/client/cert.key" # Controls whether the client verifies server certificates and host name. # If insecure is set to true, all server host names and certificates will be # accepted. In this mode TLS based connections are susceptible to # man-in-the-middle attacks. Use only for testing. #insecure: true # Configure cipher suites to be used for TLS connections #cipher_suites: [] # Configure curve types for ECDHE based cipher suites #curve_types: [] ### File as output #file: # Path to the directory where to save the generated files. The option is mandatory. #path: "/tmp/filebeat" # Name of the generated files. The default is `filebeat` and it generates files: `filebeat`, `filebeat.1`, `filebeat.2`, etc. #filename: filebeat # Maximum size in kilobytes of each file. When this size is reached, the files are # rotated. The default value is 10 MB. #rotate_every_kb: 10000 # Maximum number of files under path. When this number of files is reached, the # oldest file is deleted and the rest are shifted from last to first. The default # is 7 files. #number_of_files: 7 ### Console output # console: # Pretty print json event #pretty: false ############################# Shipper ######################################### shipper: # The name of the shipper that publishes the network data. It can be used to group # all the transactions sent by a single shipper in the web interface. # If this options is not defined, the hostname is used. #name: # The tags of the shipper are included in their own field with each # transaction published. Tags make it easy to group servers by different # logical properties. #tags: ["service-X", "web-tier"] # Uncomment the following if you want to ignore transactions created # by the server on which the shipper is installed. This option is useful # to remove duplicates if shippers are installed on multiple servers. #ignore_outgoing: true # How often (in seconds) shippers are publishing their IPs to the topology map. # The default is 10 seconds. #refresh_topology_freq: 10 # Expiration time (in seconds) of the IPs published by a shipper to the topology map. # All the IPs will be deleted afterwards. Note, that the value must be higher than # refresh_topology_freq. The default is 15 seconds. #topology_expire: 15 # Internal queue size for single events in processing pipeline #queue_size: 1000 # Configure local GeoIP database support. # If no paths are not configured geoip is disabled. #geoip: #paths: # - "/usr/share/GeoIP/GeoLiteCity.dat" # - "/usr/local/var/GeoIP/GeoLiteCity.dat" ############################# Logging ######################################### # There are three options for the log ouput: syslog, file, stderr. # Under Windos systems, the log files are per default sent to the file output, # under all other system per default to syslog. logging: # Send all logging output to syslog. On Windows default is false, otherwise # default is true. #to_syslog: true # Write all logging output to files. Beats automatically rotate files if rotateeverybytes # limit is reached. #to_files: false # To enable logging to files, to_files option has to be set to true files: # The directory where the log files will written to. #path: /var/log/mybeat # The name of the files where the logs are written to. #name: mybeat # Configure log file size limit. If limit is reached, log file will be # automatically rotated rotateeverybytes: 10485760 # = 10MB # Number of rotated log files to keep. Oldest files will be deleted first. #keepfiles: 7 # Enable debug output for selected components. To enable all selectors use ["*"] # Other available selectors are beat, publish, service # Multiple selectors can be chained. #selectors: [ ] # Sets log level. The default log level is error. # Available log levels are: critical, error, warning, info, debug #level: error
  • HP DL360 gen8 fans dying

    3
    0 Votes
    3 Posts
    851 Views
    scottalanmillerS

    Maybe you got a bad batch.

  • Seagate Reveals 60TB SSD

    23
    1 Votes
    23 Posts
    3k Views
    wirestyle22W

    We really need an alternative power source. Powering all of these data centers is a lot. Pretty soon the earth is just going to be rows and rows of racks. Like that episode of Silicon Valley. We're just going to be mole people.

  • ownCloud Backups

    15
    1 Votes
    15 Posts
    2k Views
    JaredBuschJ

    @Cdarw said in ownCloud Backups:

    @alex.olynyk I think there are better ways to do backups then just hypervisor.

    No, there is no better way than a hypervisor level backup for a full system backup.

    Proper backups can be done like this:
    https://docs.nextcloud.com/server/9/admin_manual/maintenance/backup.html

    If you need some component level backup, then a backup designed for that component is most definitely a good idea.

    By the way. You should consider to switch to Nextcloud because it has some additional important security features. A backup like that can be done with a cronjob. Super easy.

    Nextcloud is certainly not something I would deploy full force anywhere yet. It is getting close.

  • Guide to getting Graphite up and running

    15
    0 Votes
    15 Posts
    4k Views
    S

    @Technomancer

    Hey!

    So I'm currently trying to set up Worldping but I'm having troubles setting up the API key.

    Was wondering if you could lend a hand.

    I continuously see

    curl -H "Authorization: Bearer
    api key" http://worldping-api.raintank.io/api/dashboards/db/mydash

    like this and similar.

    I'm also reading that I can just authenticate by username

    None of this is working, could you point me in the right direction.

    Thanks

  • 1 Votes
    1 Posts
    2k Views
    No one has replied
  • cPanel mail to google apps migration

    4
    1 Votes
    4 Posts
    2k Views
    V

    Hi,

    There should be a Data Migration option in the Google Apps Admin dashboard ...

  • Guacamole Compilation Error on Fedora 24

    5
    0 Votes
    5 Posts
    2k Views
    T

    So strange even the GCC 6 documentation implies that -Wno-error=pedantic should cause -Werror=pedantic warnings to not be treated as errors.

    "This switch takes a negative form, to be used to negate -Werror for specific warnings; for example -Wno-error=switch makes -Wswitch warnings not be errors, even when -Werror is in effect."

    https://gcc.gnu.org/onlinedocs/gcc-6.1.0/gcc/Warning-Options.html#Warning-Options

    I would guess if you really want to install you could remove -Werror from AM_INIT_AUTOMAKE (or add -Wno-error=pedantic)

    https://github.com/apache/incubator-guacamole-server/blob/master/configure.ac#L22

  • Replaced HP Printer With Same DNS Name and IP - Won't Ping

    10
    1 Votes
    10 Posts
    2k Views
    thanksajdotcomT

    @garak0410 said in Replaced HP Printer With Same DNS Name and IP - Won't Ping:

    Sorry, I didn't see this was posted on my behalf.

    After I connected my laptop to the port and got no lights or connection and brought over a 20 foot cable to plug into the printer and then the printer connected, I have determined it is the LAN Jack.

    But get this...I connected an old 100 Meg desktop switch I had laying around to that jack and then connected the printer to that switch and then it worked. So they are up and running.

    I've seen that before. The auto-negotiation doesn't work for anything beyond the IP. I saw that happen with an HP LJ 4000 series once. Replaced the card on it and it fixed the issue. But sometimes that's the issue.

  • 1 Votes
    24 Posts
    6k Views
    K

    @scottalanmiller said in XenServer Host to Host Migration Questions:

    nciple, but I find it getting harder to do conside

    Well since this will be my first venture into using a video server, not sure how much system to give something like that.

  • EdgeMAX EdgeRouter software release v1.9.0

    29
    4 Votes
    29 Posts
    7k Views
    JaredBuschJ

    @Dashrender said in EdgeMAX EdgeRouter software release v1.9.0:

    I used to do VLANs for broadcast storm reasons.. but as I've sense learned, if you have broadcast storms, you have another problems you need to solve anyway... and the VLANs probably won't save you, the switches will still be swarmed and might be brought to their knees anyhow... so, yeah.. today, if I need more than 250 devices in a network, move from /24 to /23 or even /22.

    Migrating an existing network though - kinda a huge pain in the ass.

    Definitely true. But to bring this full circle, the person in question wants to setup VLAN for learning how to implement them and how they work, and that is awesome.

  • Voice to Text transcription

    8
    1 Votes
    8 Posts
    1k Views
    AdamFA

    @JaredBusch said in Voice to Text transcription:

    I use https://www.nexiwave.com/

    Awesome. I found that earlier this morning and was going to give it a try. What plan do you use for your clients? How is the quality of the transcription? Fairly accurate?

  • 4 Votes
    10 Posts
    5k Views
    scottalanmillerS

    @dafyre said in Rebuild Time on a 96 Drive RAID 7 Array (RAIDZ3):

    @scottalanmiller said in Rebuild Time on a 96 Drive RAID 7 Array (RAIDZ3):

    @travisdh1 said in Rebuild Time on a 96 Drive RAID 7 Array (RAIDZ3):

    Seems like the perfect case to use RAIN, even if it's within a single system enclosure. @StarWind_Software LSFS, I'm looking at you. @KOOLER I am right in thinking this is the sort of thing LSFS could handle, right?

    RAIN in a single enclosure rarely does anything that RAID 10 does not. It's effectively all the same at that point (more or less.) If RAID 10 doesn't work, RAIN isn't going to work either (normally.) The issue here is "single enclosure."

    Wouldn't a properly configured single RAIN node make it easier to grow when it's time to add more storage?

    I've seen this with Exablox and it was a nice feature!

    Yes, if you are preparing for scale out. But if you are just doing it within the context of a single node, it doesn't change anything.

  • 2 Votes
    1 Posts
    2k Views
    No one has replied
  • Ubiquiti ER-X Initial Firmware Update

    7
    0 Votes
    7 Posts
    3k Views
    travisdh1T

    @travisdh1 said in Ubiquiti ER-X Initial Firmware Update:

    So I uploaded the 1.9.0 firmware file with scp (the ER-X doesn't have internet access yet, not final install.)

    add system image ER-e50.v1.9.0.4901118.tar

    Complained about not enough space available. Fine, uploaded through the gui, and it worked fine. ???

    I'll have to tackle the duel WAN tomorrow, after verifying I got all my documentation correct.

    Well, it's setup and being used. I'm have a feeling I'm going to have to limit http and https traffic with the QOS settings on it tho. Two 700k/300k DSL connections don't go very far 😞

    I also need to get the static routing figured out. I tried adding a static route to our web host (viviotech.net), and it still sends traffic out of whichever of the WAN ports it decides is better. Bet I forgot a NAT setting somewhere, now that I think about it?

    The boxes are amazing for the price.

  • Media Player Box

    15
  • CEH Training

    16
    3 Votes
    16 Posts
    2k Views
    IRJI

    @scottalanmiller said in CEH Training:

    @IRJ said in CEH Training:

    @scottalanmiller said in CEH Training:

    That's pretty cool.

    I am taking the cert test this week. I haven't scheduled it yet, but I am thinking friday.

    Good luck.

    Thanks. My test is scheduled for Thursday.

  • Acer Aspire R3-471t Accessing BIOS

    9
    0 Votes
    9 Posts
    6k Views
    gjacobseG

    @dafyre said in Acer Aspire R3-471t Accessing BIOS:

    @gjacobse said in Acer Aspire R3-471t Accessing BIOS:

    @hobbit666 said in Acer Aspire R3-471t Accessing BIOS:

    Is it Windows 10 laptop?

    Yes,.. the F2 and F12 keys do work, just very inconsistent results.

    I always bounce between F2, F10, F11, F12, and DEL.... Jackhammer between them all until desired results achieved.

    Jack hammer the needed keys.....

    0_1471264595864_1231542-pulp-fiction-desktop-backgrounds.jpg

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    9 Views
    No one has replied