Cloud and infrastructure professional with nearly two decades of experience in enterprise IT environments, spanning public cloud, private cloud, and hybrid architectures.
It is not usually necessary to uninstall Windows Internal Database, but sometimes you may need to uninstall or remove Windows Internal Database. It is not possible to remove this application with Add or Remove Programs, and it will not be uninstalled. Because multiple applications and services use the same instance of Windows Internal Database, removing these applications and services does not remove the data store. Important: Uninstalling Windows Internal Database is not recommended, because it may affect other applications that may be using the same database instance. To uninstall Windows Internal Database Open a command shell. On 32-bit platforms: msiexec /x {CEB5780F-1A70-44A9-850F-DE6C4F6AA8FB} callerid=ocsetup.exe On 64-bit platforms: msiexec /x {BDD79957-5801-4A2D-B09E-852E7FA64D01} callerid=ocsetup.exe
Installing update rollups on DAG members is a straight forward task. We have to make sure that all the active databases have been moved to a different DAG member, activation of all databases on the server to be patched is blocked, mailbox database copy is suspended etc. Basically, the procedure is straightforward and should be followed per DAG member: 1.Appoint (next) DAG member; 2.Move away all active copies on that DAG member; 3.Prevent copies from activating on that DAG member; 4.Perform maintenance, e.g. down or upgrade DAG member; 5.Enable possible activation on that DAG member again; 6.Optionally redistribute database copies. Microsoft has two new scripts in the ?C:\Program Files\Microsoft\Exchange Server\v14\Scripts? folder of Exchange 2010 SP1. StartDAGServerMaintenance.ps1 and StopDAGServerMaintenance.ps1. In order to install a rollup on 2010 SP1 , follow the…
If you have an advanced Video Card, you can sometimes have trouble installing the drivers. A fast and easy way to install your Video drivers is to use a program called Envy. Envy can help you with your initial installation, and any time you have to reinstall because of a Kernel update. 1- Open your favorite terminal 2- type in sudo apt-get install envyng-gtk 3- Launch EnvyNG's GUI by selecting it in the "Applications/System Tools" menu.
If the system needs more memory resources and the RAM is full, inactive pages in memory are moved to the swap space. Swap space is a portion of a hard disk drive (HDD) that is used for virtual memory. It can be whole disk partition or just a file inside an existing partition or a combination of swap partitions and swap files. We will see how to manage SWAP Partitions on RHEL 6.x or CentOS 6.x Steps: 1. Show current SWAP allocation free -m swapon -s 2. Create additional SWAP space from new partition Reboot is required at this step 3. Make swap mkswap /dev/sdb2 UUID=8bced662-e967-4861-9bac-6df8957b3eb5 4. Update /etc/fstab UUID=8bced662-e967-4861-9bac-6df8957b3eb5 swap swap defaults 0 0 5. Re-reads /etc/fstab for swap swapon -a 6. Show swap usage summary by device swapon -s free…
Configure Manuel Failover for Entire Mailbox Server Let?s say you want to disable entire DAG member node from being considered in the Automatic Activation Process. In other words, you want to configure manual failover for DAG member. You can use the following command to prevent any databases on a specific mailbox server in DAG from being considered in the Automatic Activation (automatic failover) Process: Set-MailboxServer -Identity MailboxServerName -DatabaseCopyAutoActivationPolicy Blocked To allow database copies to be activated again, I would replace ?Blocked? with ?Unrestricted?: Set-MailboxServer -Identity MailboxServerName -DatabaseCopyAutoActivationPolicy Unrestricted
Local Continuous Replication (LCR) is a single server solution that provides high availability for Exchange Server 2007. Once you enable a local replica of a storage group, LCR copies any changes to the storage group to the replica. This process is called Log Shipping. In this how-to, you will learn how to configure Local Continuous Replication (LCR) in Exchange Server 2007 Mailbox Server Role. Log on to Exchange Server 2007. Click Start, and then point to All Programs, then Microsoft Exchange and click Exchange Management Console. Expand Microsoft Exchange and click the Server Configuration in the Console Tree. Click the server name that has mailbox server role in the results pane. And in the action page, click Manage Mailbox Role. In the work pane, right click First Sorage Group and click…
The default Command Prompt (CMD.exe) directory is usually your Documents and Settings \ Username directory. Most of the time you navigate away from it because you need to access files that cannot be accessed from there. If you wish to change the default startup directory for Command Prompt, use the steps listed below To change the default Command Prompt directory: 1- Click Start, Run and type Regedit.exe 2- Navigate to the path HKEY_CURRENT_USER \ Software \ Microsoft \ Command Processor 3- In the right-pane, double-click Autorun and set the startup folder path, for example by " CD /d C:\ " without quotes. If Autorun value is missing, you need to create one, of type REG_SZ (String Value) in the above location. Example1: To set the startup directory to C:\Windows, set the Autorun…
After we have installed BIND as a master DNS server (centos01) (as explained in my recent video), we can now set up a secondary DNS server (centos02) with BIND on CentOS. centos02 acts as a backup if there are problems with centos01. This tutorial will show you how to setup and configure Secondary (Slave) BIND DNS Server on RHEL 6.x or CentOS 6.x Note: centos01.linuxlab.local is Primary (Master) DNS server for linuxlab.local domain We'll make centos02.linuxlab.local ( 192.168.0.22) as secondary dns server for linuxlab.local domain Steps: 1. Define centos02 as Name Server in the primary zone 2. Install bind on other server 3. Configure /etc/named.conf on centos02 (secondary dns server) 4. Allow zone transfer to only our secondary dns server in primary dns server allow-transfer { 192.168.0.22; }; 5. start…
Domain controllers use a special shared folder named SYSVOL to replicate logon scripts and Group Policy object files to other domain controllers. Windows 2000 Server and Windows Server 2003 use File Replication Service (FRS) to replicate SYSVOL, whereas Windows Server 2008 uses the newer DFS Replication service when in domains that use the Windows Server 2008 domain functional level, and FRS for domains that run older domain functional levels. To use DFS Replication to replicate the SYSVOL folder, you can use the procedure that is discussed in this video tutorial to migrate replication to DFS Replication. Pre-Requisites: Check Active Directory health using DCDiag and Repadmin and make sure there are not errors. Use net share from elevated command prompt on all DCs to check Netlogon and SYSVOL share status. Change…