Category: Hosting

  • Centos 7 and firewalld to allow SNMP

    Centos 7 and firewalld to allow SNMP

    We need to add a profile for SNMP to use UDP 161.  Edit /etc/firewalld/services/snmp.xml <?xml version=”1.0″ encoding=”utf-8″?> <service> <short>SNMP</short> <description>SNMP protocol</description> <port protocol=”udp” port=”161″/> </service> 2.  Reload the firewall:  firewall-cmd –reload 3.  Add it to the public zone:  firewall-cmd –zone=public –add-service snmp –permanent 4.  Reload the firewall again. It should…

  • Virtual Servers/Workstations not showing up in WSUS

    Virtual Servers/Workstations not showing up in WSUS

    Issue:  Virtual servers/workstations deployed from the same image do not show up in WSUS.  You notice that in WSUS groups that the machine listing rotates machine names everytime you refresh, but never lists them separately. Cause:  This is caused by having the same SSID when deployed.  When sysprep is not…

  • Rewrite Rule – Force https

    Rewrite Rule – Force https

    Issue:  You have a particular domain on a Windows server that you want to force the URL to rewrite to the SSL certificate that is installed.  ie. http://www.domain.com –> https://www.domain.com Option 1:  If you know how to edit the web.config file, just paste the following text within your system.webserver tags: <rule…

  • CBS.log file huge?  Can I delete the files?

    CBS.log file huge? Can I delete the files?

    Problem:  In the c:\windows\Logs\CBS folder, you see that there is a huge cbs.log file and/or other cbspersist_0000.cab files that are huge in size (some over 2Gb).  Can these be deleted? Resolution:  In short, yes, IF you are sure that there is nothing wrong with the system in question.  Typically, if…

  • WSUS 3.0 sp2 not showing Windows 2012 servers

    WSUS 3.0 sp2 not showing Windows 2012 servers

    Problem:  WSUS does not display the Windows 2012 servers even though group policy has been applied.  You run gpresult /r and see that there are no issues group policy-wise. Resolution:  WSUS needs to be updated with the following patch.  This will allow for the servers to be displayed properly. https://support.microsoft.com/en-us/kb/2734608

  • Extended partition via diskpart, Windows not showing extra space

    Extended partition via diskpart, Windows not showing extra space

    Issue:  After adding disk space to a VM, you run diskpart to extend the partition. Diskpart shows it is extended, but Windows explorer does not recognize the extra disk space.                     Resolution:  This is a pretty simple fix.  While still in…

  • Postfix outgoing address change

    Postfix outgoing address change

    ISSUE:  When you install Postfix, the default outgoing address on that server will be apache@machinename.local. RESOLUTION:  To change the outgoing address or the FROM address from your mailings, make the following changes: edit the /etc/postfix/main.cf file change the mydomain field to your mail domain [mydomain = mydomain.com] Add the following…

  • URL Rewrite Module in Windows 2012, where is it?

    URL Rewrite Module in Windows 2012, where is it?

    Issue:  Where is the URL Rewrite Module in Windows 2012? Description:  You may have noticed that after installing all the features in the IIS role in Windows 2012, that the URL Rewrite Module is NOWHERE to be found.  This feature was part of the Windows 2008/R2 implementation, but for Windows…

  • vSphere Client 5.0 and Windows 8/10

    vSphere Client 5.0 and Windows 8/10

    Did you upgrade your OS from Windows 7 to either 8/8.1 or 10? If so, you may find that you may not be able to open the console to your virtual machines if you have hosts running ESXi 5.0.  There is a very quick and simple fix for this. You…

  • MySQL Cheat Sheet

    MySQL Cheat Sheet

    I grew accustomed to using MySQL GUI tools, but found that they can be quite daunting to use, ESPECIALLY a big pain to use is the MySQL Workbench suite.  If you MUST use a GUI interface, try SQLYog.  Simple and to the point. If you are looking for MySQL command line, here…