How To Set Up Apache Virtual Hosts on CentOS 6

About Virtual Hosts
Virtual Hosts are used to run more than one domain off of a single IP address. This is especially useful to people who need to run several sites off of one virtual private server. The sites display different information to the visitors, depending on with which the users accessed the site.There is no limit to the number of virtual hosts that can be added to a VPS.

Read more

Find All The Files Owned By a Particular User / Group

Find file owned by a group Use the following syntax:find directory-location -group {group-name} -name {file-name} Where, directory-location : Locate the file in this directory path. -group {group-name} : Find the file belongs to group-name. -name {file-name} : The file name or a search pattern In this example, locate or find all files belongs to a … Read more