Skip to main content

Posts

Showing posts from May, 2015

Microsoft Active Directory

> What Intrasite and Intersite Replication? Intrasite is the replication within the same site & intersite the replication between sites. > What is lost & found folder in ADS? It’s the folder where you can find the objects missed due to conflict. Ex: you created a user in OU which is deleted in other DC & when replication happed ADS didn’t find the OU then it will put that in Lost & Found Folder. > What is Garbage collection? Garbage collection is the process of the online defragmentation of active directory. It happens every 12 Hours. > What System State data contains? Contains Startup files, Registry Com + Registration Database Memory Page file System files AD information Cluster Service information SYSVOL Folder >What is the difference between Windows 2000 Active Directory and Windows 2003 Active Directory? Is there any difference in 2000 Group Polices and 2003 Group Polices? What is meant by ADS and ADS ser...

How Do I Enable Remote Access To MySQL Database Server?

By default remote access to the MySQL database server is disabled for security reasons. However, some time you need to provide remote access to database server from home or a web server. This post will explain how to setup a user account and access a mysql server remotely on a Linux or Unix-like systems. Task: MySQL Server Remote Access You need type the following commands which will allow remote connections to a mysql server. Step # 1: Login Using SSH (if server is outside your data center) First, login over ssh to remote MySQL database server. You may need to login to your MySQL server as the root user: ssh user@server1.cyberciti.biz ### login as the root using su or sudo ## su #sudo -s OR directly login as root user: ssh root@server1.cyberciti.biz Step # 2: Edit the my.cnf file Once connected you need to edit the MySQL server configuration file my.cnf using a text editor such as vi: If you are using Debian Linux file is located at /etc...