nav-left cat-right
cat-right

How to reset MySQL root password using Ensim Contr...

Follow the steps below if you want to reset MySQL root password using Ensim. 1. Login to Ensim control panel as administrator. 2. Click on MySQL (under WebServer category) –> Change MySQL password. 3. Enter new password under “Change MySQL root Password” Try logging into MySQL after changing the password. If you are uanble to login using the new password, please check the box “Force Password...

sitelookup usage:...

usage: sitelookup [ -w <wp_user> ] [ -s <site_handle> ] [ -d <domain> ] [ -u <site_admin> ] [ -a ] [ domain,wp_user,site_handle,site_root,site_admin ] -w:wp_user is the top level unix user (admin1) -s:site_handle is the site equivalent of wp_user (site1) -d:domain is the hostname for a site (myco.com) -u:site_admin is the username for a site (bob) -a:returns info on all sites

Mysql root passwords on Ensim servers...

Do you want to get mysql root passwords from your Ensim servers. Here are the ways to get it: Windows: 1. Start –> Run 2.  regedit 3. HKEY_LOCAL_MACHINE/software/ensim/services/mysql will give you the root password Linux: Login to the server as root and run the script: ensim-python -c “import sys;sys.path.append(\”/usr/lib/opcenter/mysql\”);import mysqlbe;print mysqlbe.read_mysqlpass()” OR ensim-python...

Ensim control panel and its version...

You can see Ensim control panel version when you login to the control panel. Linux–> https://<ensim server>:19638/isp/ Windows–> https://<ensim server>/admin/ In order to get Ensim control panel version from Linux console, use any of the following commands: /usr/bin/getapplversion OR /usr/lib/opcenter/VERSION

List all domains in an Ensim server with ips...

You can use this command to see all domains hosted in an Ensim server with corresponding IPs: ListAllVirtDomains | awk ‘{print $1, $3}’ Also, the command below will show you total number of domains.  ListAllVirtDomains |awk ‘{print $1, $3}’ |wc -l

Check mail usage of all domains on Ensim server...

Hi, To find the mail usage of all domains in the ensim server : du -hcl –max-depth=1 /home/virtual/admin*/var/spool/ | grep [k,M,G] OR for i in /home/virtual/site*;do echo -n “`basename $i` “;cd $i/fst/var/spool/;du -h| grep [k,M,G]; done

How to Create a New Login Account for Ensim Contro...

Don’t know the login details for Ensim control panel?. Here is the way to create a new login acccount for Ensim control panel. Do the following from your shell prompt (Don’t want to be done from the Ensim server itself ) bash-3.1$ htpasswd -nb new_user password new_user:3iaS7Csm2/WYk bash-3.1$ Add the output (ie, new_user:3iaS7Csm2/WYk) to /etc/opcenter/webhost/passwd file of the Ensim server. Now, you should...