itmanager.blogs.comAlex Scoble's IT Notes - An Information Technology Blog

itmanager.blogs.com Profile

itmanager.blogs.com

Maindomain:blogs.com

Title:Alex Scoble's IT Notes - An Information Technology Blog

Description:My experiences as an IT professional - Anything that I write here is my personal opinion and should not be officially associated with any other entity

Keywords:computer security, IT, information technology, Linux, Windows...

Discover itmanager.blogs.com website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

itmanager.blogs.com Information

Website / Domain: itmanager.blogs.com
HomePage size:77.465 KB
Page Load Time:0.556385 Seconds
Website IP Address: 104.18.143.190
Isp Server: CloudFlare Inc.

itmanager.blogs.com Ip Information

Ip Country: United States
City Name: Phoenix
Latitude: 33.448379516602
Longitude: -112.07404327393

itmanager.blogs.com Keywords accounting

Keyword Count
computer security0
IT56
information technology0
Linux3
Windows1

itmanager.blogs.com Httpheader

Date: Sat, 08 Aug 2020 10:49:18 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Set-Cookie: __cfduid=ddf7e58accd4f7db799f987f018d590d71596883756; expires=Mon, 07-Sep-20 10:49:16 GMT; path=/; domain=.blogs.com; HttpOnly; SameSite=Lax; Secure
X-PhApp: oak-tp-web057
X-Webserver: oak-tp-web057
Vary: cookie,Accept-Encoding
X-Varnish: 1935231369
Age: 0
Via: 1.1 varnish
CF-Cache-Status: DYNAMIC
cf-request-id: 046f497f6c000095ffd9a57200000001
Expect-CT: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
Server: cloudflare
CF-RAY: 5bf8ab78ae7595ff-SJC
Content-Encoding: gzip

itmanager.blogs.com Meta Info

charset="utf-8"/
content="http://www.typepad.com/" name="generator"
content="computer security, IT, information technology, Linux, Windows" name="keywords"/
content="My experiences as an IT professional - Anything that I write here is my personal opinion and should not be officially associated with any other entity" name="description"/
content="width=device-width, initial-scale=1.0" name="viewport"/
content="Alex Scoble's IT Notes - An Information Technology Blog" property="og:title"/
content="Alex Scoble's IT Notes - An Information Technology Blog" property="og:site_name"/
content="blog" property="og:type"/
content="https://itmanager.blogs.com/notes/" property="og:url"/
content="My experiences as an IT professional - Anything that I write here is my personal opinion and should not be officially associated with any other entity" property="og:description"/
content="" property="fb:admins"/
content="https://up0.typepad.com/6a00d8341da43053ef0147e2a0cfbd970b-220si" property="og:image"/

104.18.143.190 Domains

Domain WebSite Title

itmanager.blogs.com Similar Website

Domain WebSite Title
itmanager.blogs.comAlex Scoble's IT Notes - An Information Technology Blog
python-notes.curiousefficiency.orgNick Coghlan’s Python Notes — Nick Coghlan's Python Notes 1.0 documentation
notes.ensemblevideo.comNotes from Ensemble Video - News, Notes and Tips from Ensemble Video
alextrevisan.comAlex Trevisan
alexstrohl.tumblr.comAlex Strohl
alexmeub.comAlex Meub
mcphscaseb.mywconline.comJ. Alex Trayford
alexcelaire.myportfolio.comAlex Celaire
alexonsager.netAlex Onsager
alexmaccaw.comAlex MacCaw
alkcm.bandcamp.comAlex Cameron
realestate.alexcooper.comAlex Cooper | Alex Cooper
gallery.photobokeh.comPhotoBokeh by Alex J Hernandez
alevine.chem.ucla.eduAlex J. Levine Group
alexhairandbeauty.webs.comAlex Hair And Beauty

itmanager.blogs.com Traffic Sources Chart

itmanager.blogs.com Alexa Rank History Chart

itmanager.blogs.com aleax

itmanager.blogs.com Html To Plain Text

My experiences as an IT professional - Anything that I write here is my personal opinion and should not be officially associated with any other entity Home Archives Profile Subscribe Monday, August 20, 2018 Using filebeat hint based autodiscover with kubernetes In case you ever try to use kubernetes hint based autodiscover in filebeat, I have a couple of sample gists that should help you get there beyond the Elastic co docs, which leave some key things out. https://gist.github.com/ITBlogger/f50632d643ec4cb241bdd41355b295ba Most notably, you no longer specify plugin or module configs and you have to put the annotations under 'spec.template.metadata.annotations' Hopefully, this helps anyone out who searches for filebeat kubernetes autodiscover hints Posted at 05:18 PM in DevOps | Permalink | Comments (0) Tags: devops, filebeat, kubernetes Reblog (0) Saturday, June 02, 2018 Working with Ansible and AWS EC2, SG, ASG and ELB tags I haven't blogged in a very long time, but felt this was something that should be shared. Sometimes tools deal with the same type of information inconsistently and that can cause you serious headaches and a lot of effort to resolve. In this particular case, Ansible requires AWS tags to be in list format for autoscaling groups (ASGs) and to be in dict format for elastic load balancers (ELBs) and security groups (SGs). If you try to use a list of tags for ELBs or SGs, you'll get the following error: "argument tags is of type <type 'list'> and we were unable to convert to dict: <type 'list'> cannot be converted to a dict" Of course, you'll get a similar but opposite error if you try to use tags in dict form for ASGs. "argument tags is of type <type 'dict'> and we were unable to convert to list: <type 'dict'> cannot be converted to a list" If you're like me, you want to define your config data once and manipulate it as needed. In our case we have a few hashes/lists of hashes of AWS tags that need to be combined to be useful with the various Ansible ec2 modules. You can see here https://gist.github.com/ITBlogger/a5b1ac1ab7ac2f12c4d7f6f77be359e7 that I've setup a gist of what I'm talking about You can go here https://gist.github.com/ITBlogger/a5b1ac1ab7ac2f12c4d7f6f77be359e7#file-aws_role_sample-L27 and see from line 27 to line 71 how we're manipulating the lists to combine them for one use and recreate them into dicts for the other usages. - name: change native_tags list to dict set_fact: merged_tags: '{{ merged_tags | combine( item ) }}' with_items: '{{ native_tags }}' The above shows how we're using the jinja2 combine filter and with_items loop to go over the list of tags and add them to the merged_tags dict which is used later. https://gist.github.com/ITBlogger/a5b1ac1ab7ac2f12c4d7f6f77be359e7#file-aws_role_sample-L41 You can also see in the playbook vars that we've initialized merged_tags as an empty dict `merged_tags: {}` https://gist.github.com/ITBlogger/a5b1ac1ab7ac2f12c4d7f6f77be359e7#file-aws_playbook_sample-L16 Hope this makes sense given the gist examples To create the list of tags from the multiple sources, we use the + operand: `merged_asg_tags: '{{ native_tags }} + {{ asg_native_tags }} + {{ asg_extra_tags }}'` https://gist.github.com/ITBlogger/a5b1ac1ab7ac2f12c4d7f6f77be359e7#file-aws_role_sample-L65 Also hope you understand that we're talking about AWS tags here and not Ansible tags, although the gist example does use Ansible tags as well. Posted at 08:00 PM in DevOps | Permalink | Comments (0) Tags: ansible, aws, combine, devops, dict, filter, jinja2, list, tags Reblog (0) Thursday, April 16, 2015 Using Ansible to manage sudoers in Linux This is an excellent blog post on how to use Ansible to config the /etc/sudoers file on Linux systems. https://raymii.org/s/tutorials/Ansible_-_Sudo_Safety_and_Sanity_Checks.html Posted at 02:15 PM | Permalink | Comments (0) | TrackBack (0) Reblog (0) No separate /var volume when booting Red Hat from iscsi Hope you never have to run in to this problem, but if you ever have to install Red Hat using an iSCSI boot disk do not set up /var as a separate partition. Doing so will seriously break the server because iSCSI state data is held in /var/lib/iscsi and Red Hat cannot access this data if /var is a separate lvm volume as it needs that data in order to mount /var. This applies to all versions of Red Hat. Posted at 11:34 AM | Permalink | Comments (0) | TrackBack (0) Reblog (0) Sunday, March 22, 2015 Chocolatey means never having to use Internet Explorer or any Microsoft browser ever again @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin That command means never again having to use IE or any other Microsoft browser. Follow by: choco install googlechrome Posted at 11:13 PM | Permalink | Comments (0) | TrackBack (0) Reblog (0) Monday, November 10, 2014 Ruby 1.8.7 Parsing CSV Files Without FasterCSV Working With CSV Files In Ruby 1.8.7 Without FasterCSV The following Ruby code sample shows how to bring in data from a csv file with headers in a way that allows you to manipulate the date by header name. inputfile = ARGV[0] csv = CSV.open(inputfile, 'r') Column = Struct.new(*(csv.shift.map { |f| f.to_sym })) columns = csv.inject([]) do |columns, row| columns << Column[*row] end csv.close columns.each do |c| column1 = c.column1header column2 = c.column2header column3 = c.column3header column4 = c.column4header <put your code that uses the column names to do whatever it is you need to do here> end Found this solution in the book " Enterprise Integration with Ruby by Maik Schmidt " Posted at 04:52 PM | Permalink | Comments (0) | TrackBack (0) Tags: csv, ruby, scripting Reblog (0) Wednesday, July 02, 2014 Any bets on when CentOS 7 will be released? Posted at 10:50 AM | Permalink | Comments (0) | TrackBack (0) Reblog (0) Saturday, June 21, 2014 Windows support is coming to Ansible soon. That's cool. Puppet needs the competition to keep them refining Puppet Enterprise. Posted at 01:25 PM | Permalink | Comments (0) | TrackBack (0) Reblog (0) Thursday, May 22, 2014 Here's hoping that all this experience that I'm gaining with the Ceph distributed storage solution on Linux won't go to waste. CRUSH FTW! Posted at 04:00 PM | Permalink | Comments (0) | TrackBack (0) Reblog (0) Friday, May 03, 2013 Networking for OpenStack When using Mirantis Fuel Web to build up an OpenStack cloud, it requires 6 separate networks to be created. Simplest way to do this is by using virtual networks (VLANs), however this presents a few challenges because of the complexities of configuring VLANs. This post is specific to Cisco switches, but may be relevant for other networking equipment as well. For test purposes, this was all done on one switch and each bare metal server had one interface cabled to the switch. In production environments, it is likely that, at a minimum, a completely separate storage network would also exist, but more complicated networking schemes are quite possible. For each port on the switch that will be connected to one of the bare metal servers, the following needs to be done: switchport mode trunk switchport trunk allowed vlan 10,100-104 switchport trunk native vlan 10 spanning-tree portfast trunk switchport nonegotiate Trunking mode must be used because each interface needs to be able to handle all 6 of the virtual networks. In the normal access mode, an interface can only communicate over a single VLAN. For each interface, it's a good practice to specify which vlans it is allowed to handle. Trunk native tells the switch that untagged traffic goes over this vlan. VLAN tags are the mechanism that allows a network interface to communicate over multiple discrete subnets. So in this case, only traffic going over vlans 100 through 104 will be tagged. Spanning-tree portfast trunk tells the switch that this port is...

itmanager.blogs.com Whois

"domain_name": "BLOGS.COM", "registrar": "Domain.com, LLC", "whois_server": "whois.domain.com", "referral_url": null, "updated_date": [ "2018-12-26 06:33:11", "2018-12-26T06:33:11" ], "creation_date": [ "1999-09-10 16:08:06", "1999-09-10T16:08:06" ], "expiration_date": [ "2020-09-10 16:08:06", "2020-09-10T16:08:06" ], "name_servers": [ "NOAH.NS.CLOUDFLARE.COM", "ROXY.NS.CLOUDFLARE.COM", "noah.ns.cloudflare.com", "roxy.ns.cloudflare.com" ], "status": [ "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited" ], "emails": [ "compliance@domain-inc.net", "corpdomains@endurance.com" ], "dnssec": "unsigned", "name": "Domain Manager", "org": "Endurance International Group", "address": "10 Corporate Drive", "city": "Burlington", "state": "MA", "zipcode": "01803", "country": "US"