Thứ Ba, 14 tháng 8, 2018

Microsoft Visual C++ Redistributable All Versions Direct Download Links

Microsoft Visual C++ Redistributable is the library that is having components which are required by many Applications to run, and the Apps which you develop on Visual C++ require components of the Microsoft Visual C++ Redistributable. These packages are used to run the contents that are developed or written in the C++ programming language.There are many Microsoft Redistributable packages installed on your System. You can view...
Read More

Thứ Tư, 8 tháng 8, 2018

How To Install Java on CentOS and Fedora

Introduction This tutorial will show you how to install Java on CentOS 7 (also 6 and 6.5), modern Fedora releases, and RHEL. Java is a popular software platform that allows you to run Java applications and applets. The installation of the following versions of Java are covered: OpenJDK 8 OpenJDK 7 OpenJDK 6 Oracle Java 9 Oracle Java 8 Feel free to skip to your desired section using the Contents button on the sidebar! Prerequisites Before...
Read More

Thứ Ba, 7 tháng 8, 2018

How To Install and Configure SNMP on CentOS

IntroductionSNMP, or Simple Network Management Protocol, is widely used to communicate with and monitor network devices, servers, and more, all via IP. In this case, we’ll be installing an SNMP agent on a CentOS 6.5 server, which will allow for collection of data from our server, and make the information available to a remote SNMP manager.Pre-Flight Check    These instructions are intended for installing SNMP and...
Read More

PowerShell says “execution of scripts is disabled on this system.”

You can bypass this policy by adding -ExecutionPolicy ByPass when running PowerShell powershell -ExecutionPolicy ByPass -File script.ps1   For Windows 7, Windows 8, Windows Server 2008 R2 or Windows Server 2012, run the following commands as Administrator: x86 (32 bit) Open C:\Windows\SysWOW64\cmd.exe Run the command powershell Set-ExecutionPolicy RemoteSigned x64 (64 bit) Open C:\Windows\system32\cmd.exe Run the command...
Read More

Thứ Hai, 6 tháng 8, 2018

Faster SQL queries with RAM Disk

Faster SQL queries with RAM Disk We have been having performance issue with our SQL Server database. Specifically, certain kinds of frequently executed stored procedures were causing high IO throughput on SQL Server tempdb files. The server utilizes multiple 15K RPM drives in RAID 10 configuration. Even with this setup, we were seeing near constant 100% utilization of the disk IO system. In previous version of SQL Server it...
Read More

Chủ Nhật, 5 tháng 8, 2018

MySQL Won’t Start – InnoDB Corruption and Recovery

Databases get corrupted for many reasons. In my case, our SAN (or your hard drive) went down during writes to the database from a power failure. InnoDB corruption can cause all of the databases running on that server to become inaccessible.I have to say what everyone else out there says, “Backup, Backup, and Backup”. Make sure that you maintain a good backup schedule by running a dump script to get your dbs back in order in case...
Read More