homecomputerlab.com Report : Visit Site


  • Ranking Alexa Global: # 6,876,170

    Server:nginx/1.9.3 (Ubuntu)...

    The main IP address: 84.92.55.199,Your server United Kingdom,Pool ISP:Plusnet Plc.  TLD:com CountryCode:GB

    The description :proudly served to you via raspberrypi home status notes owncloud cctv about twitter -- rss feed 2013 06.30 compile error for nrpe plugins – arch linux & raspberry pi category: linux , raspberry pi...

    This report updates in 17-Jun-2018

Created Date:2010-12-29
Changed Date:2016-12-22
Expires Date:2018-12-29

Technical data of the homecomputerlab.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host homecomputerlab.com. Currently, hosted in United Kingdom and its service provider is Plusnet Plc. .

Latitude: 50.21667098999
Longitude: -5.2833299636841
Country: United Kingdom (GB)
City: Pool
Region: England
ISP: Plusnet Plc.

the related websites

    skyuser.co.uk bbcshop.com dbpoweramp.com preachtheword.com pearsonlongman.com bbc.co.uk gumtree.com foobar2000.org emu.com quran.com microchip.com 

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx/1.9.3 (Ubuntu) containing the details of what the browser wants and will accept back from the web server.

Content-Encoding:gzip
Transfer-Encoding:chunked
Vary:Accept-Encoding, Cookie
Server:nginx/1.9.3 (Ubuntu)
Connection:keep-alive
Cache-Control:max-age=3, must-revalidate
Date:Sun, 17 Jun 2018 04:32:18 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns.123-reg.co.uk. hostmaster.homecomputerlab.com. 2011112314 86400 3600 1209600 14400
ns:ns.123-reg.co.uk.
ns2.123-reg.co.uk.
ipv4:IP:84.92.55.199
ASN:6871
OWNER:PLUSNET UK Internet Service Provider, GB
Country:GB
mx:MX preference = 20, mail exchanger = mx1.123-reg.co.uk.
MX preference = 10, mail exchanger = mx0.123-reg.co.uk.

HtmlToText

proudly served to you via raspberrypi home status notes owncloud cctv about twitter -- rss feed 2013 06.30 compile error for nrpe plugins – arch linux & raspberry pi category: linux , raspberry pi / tag: nagios / 2 comments i ran into an error compiling the nagios nrpe plugins on my arch linux raspberry pi as follows: in file included from localcharset.c:28:0: ./stdio.h:456:1: error: ‘gets’ undeclared here (not in a function) make[4]: *** [localcharset.o] error 1 make[4]: leaving directory `/root/nagios-plugins-1.4.16/gl' make[3]: *** [all-recursive] error 1 make[3]: leaving directory `/root/nagios-plugins-1.4.16/gl' make[2]: *** [all] error 2 make[2]: leaving directory `/root/nagios-plugins-1.4.16/gl' make[1]: *** [all-recursive] error 1 make[1]: leaving directory `/root/nagios-plugins-1.4.16' make: *** [all] error 2 a quick google search brought me to the following page with details of the patch to fix the error: http://bugzilla.redhat.com/show_bug.cgi?id=835621#c6 edit the nagios-plugins-1.4.16/gl/stdio.in.h file and search for the following lines: #undef gets _gl_warn_on_use (gets, "gets is a security hole - use fgets instead"); add the following if statement as follows: #if defined gets #undef gets _gl_warn_on_use (gets, "gets is a security hole - use fgets instead"); #endif your plugins should now compile successfully and you can continue your install as normal. steps for a normal install are detailed below: 1 pacman -s base-devel 2 tar -xvf nagios-plugins-1.4.16.tar.gz 3 cd nagios-plugins-1.4.16 4 ./configure 5 make 6 make install 7 chown nagios.nagios /usr/local/nagios 8 chown -r nagios.nagios /usr/local/nagios/libexec 9 tar -xvf nrpe-2.14.tar.gz 10 cd nrpe-2.14 11 ./configure 12 make all 13 make install-plugin 14 make install-daemon 15 make install-daemon-config 16 make install-xinetd 17 nano /etc/xinetd.d/nrpe add server ip address 18 nano /etc/services add nrpe 5666/tcp 19 pacman -s xinetd 20 systemctl start xinetd 21 netstat | grep 5666 22 /usr/local/nagios/libexec/check_nrpe -h localhost 23 systemctl enable xinetd 24 nano /usr/local/nagios/etc/nrpe.cfg 25 systemctl restart xinetd 2013 06.30 nagios install howto: category: linux / tag: nagios / add comment 1 useradd -m -s /bin/bash nagios 2 passwd nagios 3 groupadd nagcmd 4 usermod -a -g nagcmd nagios 5 usermod -a -g nagcmd www-data 6 wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-3.5.0.tar.gz 7 wget http://prdownloads.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.16.tar.gz 8 tar -xvzf nagios-3.5.0.tar.gz 9 cd nagios/ 10 ./configure --with-command-group=nagcmd 11 make all 12 make install 13 make install-init 14 make install-config 15 make install-commandmode 16 nano /usr/local/nagios/etc/objects/contacts.cfg 17 make install-webconf 18 htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin 19 /etc/init.d/apache2 reload 20 cd .. 21 tar -xvzf nagios-plugins-1.4.16.tar.gz 22 cd nagios-plugins-1.4.16/ 23 apt-get install libssl-dev 24 ./configure --with-nagios-user=nagios --with-nagios-group=nagios 25 make 26 make install 27 ln -s /etc/init.d/nagios /etc/rcs.d/s99nagios 28 /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg 29 /etc/init.d/nagios start verify nagios config before re/starting nagios services: /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg there is essentially a 4-step process for adding new nagios nrpe plugins, 2 steps will need to be carried on the client and then a further 2 steps will need to be carried out on the server as follows: *directory structure below assumes you’ve compiled from source without changing the default install path. 1. on the client, copy the new nagios nrpe plugin to the following directory: /usr/local/nagios/libexec/ 2. on the client, add the command check for the new plugin here: /usr/local/nagios/etc/nrpe.cfg 3. on the server, define the new command check here: /usr/local/nagios/etc/objects/commands.cfg 4. on the server, add the new command you’d like to be checked on the client here: /usr/local/nagios/etc/objects/linux-servers.cfg finally, as always you must remember to restart the nagios/nrpe services on both the server and the client when ever any changes are made to your config files. screenshot of servers monitored by nagios :) 2013 06.11 wireshark category: cisco , linux , security / tags: no tag / 1 comment we had an interesting issue this week with video conferencing where ~20min into a vc call we would lose audio into one of our offices. audio from this office would still be sent to all other offices and could be heard by everyone else in other offices on the call, but we just couldn’t hear them. then 5-10min later incoming video would then freeze on our screen however to all other offices dialled into the call our video feed would still continue to be received smoothly. after a few calls with different service providers and confirming firewall config was correct and then removing our firewall config completely for testing purposes, we were still experiencing the issues and were no closer to an answer, it was finally time to break out wireshark for some packet capturing/debugging, if anything to prove that everything was working properly as expected on the network layer. below is the config needed to setup port mirroring on the switch stack: monitor session 1 source interface gigabitethernet 1/0/10 monitor session 1 destination interface gigabitethernet 1/0/35 show monitor session 1 and how to install wireshark and run as a regular user on ubuntu: sudo apt-get install wireshark sudo groupadd wireshark sudo usermod -a -g wireshark <user> sudo chgrp wireshark /usr/bin/dumpcap sudo chmod 750 /usr/bin/dumpcap sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap sudo getcap /usr/bin/dumpcap sudo chmod +x /usr/bin/dumpcap log out and back into unity and you should be good to start packet capturing. 2013 06.09 nginx + php + mariadb + wordpress on archlinux on a raspberry pi category: linux , raspberry pi , wordpress / tag: nginx / 5 comments install nginx and start the service: pacman -s install nginx systemctl start nginx test default html homepage is loading: http://192.168.123.123 you should be greeted by the default html ‘welcome to nginx’ page now to get php working: there are a few ways you can get php to serve via nginx and plenty of blogs that discuss the different options available including pros and cons of each method. the method i’ve chosen is to proxy requests to php-fpm via the fcgi protocol using unix sockets. first i’m going to neaten up my nginx.conf file and separate my virtual hosts file similar to debian simply because i like my config files that way. to do so we’ll move everything after the server{ directive into a debian style virtual hosts file and add the following line at the end of your nginx.conf file: nano /etc/nginx/nginx.conf include /etc/nginx/sites-enabled/*; mkdir sites-enabled nano /etc/nginx/sites-enabled/default paste everything after the server{ directive into your virtual hosts file. the virtual hosts file will still be a bit of a mess, but we’ll tidy this up later, for now i just wanted to separate the config. next install php components: pacman -s php php-fpm ensure that php is listening in the right place: nano /etc/php/php-fpm.conf ;listen = 127.0.0.1:9000 listen = /run/php-fpm/php-fpm.sock now i’m going to tidy up my virtual hosts file to serve php and remove any extraneous config at the same time: nano /etc/nginx/sites-enabled/default server { listen 80; server_name www..com; root /var/www; index index.html index.htm index.php; location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/run/php-fpm/php-fpm.sock; fastcgi_index index.php; include fastcgi.conf; } } next we need to ensure that php is allowed to execute from our web root directory: nano /etc/php/php.ini open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/var/www/ restart both php-fpm and nginx: systemctl restart php

URL analysis for homecomputerlab.com


http://www.homecomputerlab.com/nginx-php-mariadb-wordpress-on-archlinux-on-a-raspberry-pi#comments
http://www.homecomputerlab.com/tag/64bit
http://www.homecomputerlab.com/tag/scripting
http://www.homecomputerlab.com/tag/clustered
http://www.homecomputerlab.com/category/cisco
http://www.homecomputerlab.com/tag/cisco-2
http://www.homecomputerlab.com/tag/amazon-ec2
http://www.homecomputerlab.com/tag/esxi
http://www.homecomputerlab.com/nginx-php-mariadb-wordpress-on-archlinux-on-a-raspberry-pi
http://www.homecomputerlab.com/tag/syslog
http://www.homecomputerlab.com/notes
http://www.homecomputerlab.com/owncloud
http://www.homecomputerlab.com/tag/ssh-2
http://www.homecomputerlab.com/tag/management
http://www.homecomputerlab.com/creating-a-self-signed-ssl-certificate
timetools.co.uk

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: HOMECOMPUTERLAB.COM
Registry Domain ID: 1632461646_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.meshdigital.com
Registrar URL: http://www.domainbox.com
Updated Date: 2016-12-22T00:00:00Z
Creation Date: 2010-12-29T00:00:00Z
Registrar Registration Expiration Date: 2018-12-29T00:00:00Z
Registrar: WEBFUSION LIMITED
Registrar IANA ID: 1515
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.8779770099
Reseller: 123Reg/Webfusion
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: Tyrell Beveridge
Registrant Organization: Tyrell Beveridge
Registrant Street: 3 Cecil Court
Registrant City: London
Registrant State/Province: Hertfordshire
Registrant Postal Code: EN5 5PE
Registrant Country: GB
Registrant Phone: +44.7843022989
Registrant Phone Ext:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID:
Admin Name: Tyrell Beveridge
Admin Organization: Tyrell Beveridge
Admin Street: 3 Cecil Court
Admin City: London
Admin State/Province: Hertfordshire
Admin Postal Code: EN5 5PE
Admin Country: GB
Admin Phone: +44.7843022989
Admin Phone Ext:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID:
Tech Name: 123reg
Tech Organization: 123reg
Tech Street: The Shipping Building
Tech Street: Old Vinyl Factory
Tech Street: 252 - 254 Blyth Road
Tech City: Hayes
Tech State/Province: Middlesex
Tech Postal Code: UB3 1HA
Tech Country: GB
Tech Phone: +44.3454502310
Tech Phone Ext:
Tech Fax Ext:
Tech Email: [email protected]
Name Server: ns.123-reg.co.uk
Name Server: ns2.123-reg.co.uk
DNSSEC: unsigned
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2017-07-21T10:39:20Z <<<

For more information on Whois status codes, please visit https://icann.org/epp


The Data in this WHOIS database is provided
for information purposes only, and is designed to assist persons in
obtaining information related to domain name registration records.
It's accuracy is not guaranteed. By submitting a
WHOIS query, you agree that you will use this Data only for lawful
purposes and that, under no circumstances will you use this Data to:
(1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail(spam);
or (2) enable high volume, automated, electronic processes that
apply to this WHOIS or any of its related systems. The provider of
this WHOIS reserves the right to modify these terms at any time.
By submitting this query, you agree to abide by this policy.

LACK OF A DOMAIN RECORD IN THE WHOIS DATABASE DOES
NOT INDICATE DOMAIN AVAILABILITY.

  REGISTRAR 123-REG LIMITED

  REFERRER http://www.meshdigital.com

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =homecomputerlab.com

  PORT 43

  SERVER whois.123-reg.co.uk

  ARGS homecomputerlab.com

  PORT 43

  TYPE domain

DOMAIN

  NAME homecomputerlab.com

NSERVER

  NS.123-REG.CO.UK 212.67.202.2

  NS2.123-REG.CO.UK 62.138.132.21

STATUS
clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
clientTransferProhibited https://icann.org/epp#clientTransferProhibited
clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited

  CHANGED 2016-12-22

  CREATED 2010-12-29

  EXPIRES 2018-12-29

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uhomecomputerlab.com
  • www.7homecomputerlab.com
  • www.hhomecomputerlab.com
  • www.khomecomputerlab.com
  • www.jhomecomputerlab.com
  • www.ihomecomputerlab.com
  • www.8homecomputerlab.com
  • www.yhomecomputerlab.com
  • www.homecomputerlabebc.com
  • www.homecomputerlabebc.com
  • www.homecomputerlab3bc.com
  • www.homecomputerlabwbc.com
  • www.homecomputerlabsbc.com
  • www.homecomputerlab#bc.com
  • www.homecomputerlabdbc.com
  • www.homecomputerlabfbc.com
  • www.homecomputerlab&bc.com
  • www.homecomputerlabrbc.com
  • www.urlw4ebc.com
  • www.homecomputerlab4bc.com
  • www.homecomputerlabc.com
  • www.homecomputerlabbc.com
  • www.homecomputerlabvc.com
  • www.homecomputerlabvbc.com
  • www.homecomputerlabvc.com
  • www.homecomputerlab c.com
  • www.homecomputerlab bc.com
  • www.homecomputerlab c.com
  • www.homecomputerlabgc.com
  • www.homecomputerlabgbc.com
  • www.homecomputerlabgc.com
  • www.homecomputerlabjc.com
  • www.homecomputerlabjbc.com
  • www.homecomputerlabjc.com
  • www.homecomputerlabnc.com
  • www.homecomputerlabnbc.com
  • www.homecomputerlabnc.com
  • www.homecomputerlabhc.com
  • www.homecomputerlabhbc.com
  • www.homecomputerlabhc.com
  • www.homecomputerlab.com
  • www.homecomputerlabc.com
  • www.homecomputerlabx.com
  • www.homecomputerlabxc.com
  • www.homecomputerlabx.com
  • www.homecomputerlabf.com
  • www.homecomputerlabfc.com
  • www.homecomputerlabf.com
  • www.homecomputerlabv.com
  • www.homecomputerlabvc.com
  • www.homecomputerlabv.com
  • www.homecomputerlabd.com
  • www.homecomputerlabdc.com
  • www.homecomputerlabd.com
  • www.homecomputerlabcb.com
  • www.homecomputerlabcom
  • www.homecomputerlab..com
  • www.homecomputerlab/com
  • www.homecomputerlab/.com
  • www.homecomputerlab./com
  • www.homecomputerlabncom
  • www.homecomputerlabn.com
  • www.homecomputerlab.ncom
  • www.homecomputerlab;com
  • www.homecomputerlab;.com
  • www.homecomputerlab.;com
  • www.homecomputerlablcom
  • www.homecomputerlabl.com
  • www.homecomputerlab.lcom
  • www.homecomputerlab com
  • www.homecomputerlab .com
  • www.homecomputerlab. com
  • www.homecomputerlab,com
  • www.homecomputerlab,.com
  • www.homecomputerlab.,com
  • www.homecomputerlabmcom
  • www.homecomputerlabm.com
  • www.homecomputerlab.mcom
  • www.homecomputerlab.ccom
  • www.homecomputerlab.om
  • www.homecomputerlab.ccom
  • www.homecomputerlab.xom
  • www.homecomputerlab.xcom
  • www.homecomputerlab.cxom
  • www.homecomputerlab.fom
  • www.homecomputerlab.fcom
  • www.homecomputerlab.cfom
  • www.homecomputerlab.vom
  • www.homecomputerlab.vcom
  • www.homecomputerlab.cvom
  • www.homecomputerlab.dom
  • www.homecomputerlab.dcom
  • www.homecomputerlab.cdom
  • www.homecomputerlabc.om
  • www.homecomputerlab.cm
  • www.homecomputerlab.coom
  • www.homecomputerlab.cpm
  • www.homecomputerlab.cpom
  • www.homecomputerlab.copm
  • www.homecomputerlab.cim
  • www.homecomputerlab.ciom
  • www.homecomputerlab.coim
  • www.homecomputerlab.ckm
  • www.homecomputerlab.ckom
  • www.homecomputerlab.cokm
  • www.homecomputerlab.clm
  • www.homecomputerlab.clom
  • www.homecomputerlab.colm
  • www.homecomputerlab.c0m
  • www.homecomputerlab.c0om
  • www.homecomputerlab.co0m
  • www.homecomputerlab.c:m
  • www.homecomputerlab.c:om
  • www.homecomputerlab.co:m
  • www.homecomputerlab.c9m
  • www.homecomputerlab.c9om
  • www.homecomputerlab.co9m
  • www.homecomputerlab.ocm
  • www.homecomputerlab.co
  • homecomputerlab.comm
  • www.homecomputerlab.con
  • www.homecomputerlab.conm
  • homecomputerlab.comn
  • www.homecomputerlab.col
  • www.homecomputerlab.colm
  • homecomputerlab.coml
  • www.homecomputerlab.co
  • www.homecomputerlab.co m
  • homecomputerlab.com
  • www.homecomputerlab.cok
  • www.homecomputerlab.cokm
  • homecomputerlab.comk
  • www.homecomputerlab.co,
  • www.homecomputerlab.co,m
  • homecomputerlab.com,
  • www.homecomputerlab.coj
  • www.homecomputerlab.cojm
  • homecomputerlab.comj
  • www.homecomputerlab.cmo
Show All Mistakes Hide All Mistakes