Saturday, July 7, 2012

Accessing FTP accounts for Enkompass control panel!

July 9, 2011 by  
Filed under Enkompass

Many wonder why when connecting to an Enkompass environment they now have to change the format of the username from the common format of  username or username@domain to domain|username. Note in the example below that the format is domain.tld|username per the new formatting in IIS7   Status:    Connecting to 10.1.104.142:21… Status:    Connection established, waiting for [...]

How do I find out Linux Resource utilization to detect system bottlenecks?

October 9, 2009 by  
Filed under General

vmstat command reports information about processes, memory, paging, block IO, traps, and cpu activity. However, a real advantage of vmstat command output – is to the point and (concise) easy to read/understand. The output of vmstat command use to help identify system bottlenecks. Please note that Linux vmstat does not count itself as a running [...]

MySQL database import-export from Shell

September 2, 2009 by  
Filed under General

The control panels provide GUI for import / export databases. However, it is very easy doing the same from shell. Exporting Database mysqldump dbname > exportfile.sql This will export the database to exportfile.sql. You can optionally compress the file to save bandwidth during server to server transfer. Run the following command: gzip exportfile.sql Database Import [...]