Search found 54 matches

by Martin
Mon Jan 09, 2017 7:05 pm
Forum: Hosting Control Panels
Topic: I don't remember litespeed WebAdmin Console password, how to reset it?
Replies: 1
Views: 7670

Re: I don't remember litespeed WebAdmin Console password, how to reset it?

Hello, Log into server as root. Go to directory /usr/local/lsws/admin/misc and run the below script root@server[/usr/local/lsws/admin/misc]# ./admpass.sh User name [admin]: Password: Retype password: Enter new admin password twice. ------------------------------ Martin N Linux Support Engineer. Nixt...
by Martin
Wed Jan 04, 2017 6:25 pm
Forum: Hosting Control Panels
Topic: How to check whether docker is installed ?
Replies: 1
Views: 7743

Re: How to check whether docker is installed ?

Type the below commands to check whether docker is installed correctly. Command : docker version Client: Version: 1.12.5 Server: Version: 1.12.5 API version: 1.24 OR Command : docker run hello-world Hello from Docker! This message shows that your installation appears to be working correctly. -------...
by Martin
Tue Jan 03, 2017 5:52 pm
Forum: Hosting Control Panels
Topic: how to install ansible on ubuntu server?
Replies: 1
Views: 7574

Re: how to install ansible on ubuntu server?

Log into your ubuntu server via SSH and run the below command to install 'Ansible' sudo apt-add-repository ppa:ansible/ansible sudo apt-get update sudo apt-get install -y ansible ------------------------------ Martin N Linux Support Engineer. Nixtree Solutions Managed Full Server Backups https://www...
by Martin
Wed Dec 28, 2016 10:59 am
Forum: Hosting Control Panels
Topic: how to check inode usage of a cpanel account
Replies: 1
Views: 7609

Re: how to check inode usage of a cpanel account

Hello, Login to WHM and enable the option 'Display File Usage information in the cPanel stats bar (inode count)' to 'On' in 'Tweak Settings'. Now you can see inode usage in cPanel. ------------------------------ Martin N Linux Support Engineer. Nixtree Solutions Managed Full Server Backups https://w...
by Martin
Wed Dec 28, 2016 10:43 am
Forum: Hosting Control Panels
Topic: how to check whether windows server 2012 is 32bit or 64 bit
Replies: 1
Views: 7727

Re: how to check whether windows server 2012 is 32bit or 64 bit

Open command prompt and type the below command to check the architecture. Command : wmic OS get OSArchitecture Example : C:\Users\Administrator> wmic OS get OSArchitecture OSArchitecture 64-bit ============================= Martin Linux Support Engineer. Nixtree Solutions Managed Full Server Backups...
by Martin
Wed Dec 28, 2016 8:50 am
Forum: Hosting Control Panels
Topic: SMTP error from remote mail server after initial connection: 554 5.7.1 You are not allowed to connect
Replies: 1
Views: 8336

Re: SMTP error from remote mail server after initial connection: 554 5.7.1 You are not allowed to connect

Hello, Error shows 'You are not allowed to connect'. Contact the owner of the remote server and ask them why it is not allowed to connect. Your IP address might be blocked by the remote server. You can try sending email by configuring a different mail IP. ============================= Martin Linux S...
by Martin
Wed Dec 28, 2016 8:17 am
Forum: Hosting Control Panels
Topic: check_mysql has determined that there are corrupted database tables
Replies: 1
Views: 7466

Re: check_mysql has determined that there are corrupted database tables

Login to server via SSH and run the below command to repair the db mysqlcheck -r eximstats mysqlcheck -r -A (to repair all dbs) ============================= Martin Linux Support Engineer. Nixtree Solutions Managed Full Server Backups https://www.nixtree.com/managed-backups.php Follow us on : https:...
by Martin
Wed Dec 28, 2016 8:11 am
Forum: Hosting Control Panels
Topic: You do not have permission to create subdomains of the server’s hostname
Replies: 1
Views: 7784

Re: You do not have permission to create subdomains of the server’s hostname

You must login to WHM and change "Allow users to park subdomains of the server’s hostname" to 'On' in Tweak settings. ============================= Martin Linux Support Engineer. Nixtree Solutions Managed Full Server Backups https://www.nixtree.com/managed-backups.php Follow us on : https:...
by Martin
Wed Dec 28, 2016 8:05 am
Forum: Hosting Control Panels
Topic: how to take all mysql database backup using script?
Replies: 1
Views: 7349

Re: how to take all mysql database backup using script?

Use the below script to take backup of all databases on the server. mkdir /home/mysqldump cd /home/mysqldump root@server [~]# vi db-backup.sh #!/bin/sh for i in `mysql -e'show databases' | grep -v 'Database\|performance_schema\|information_schema'` ; do mysqldump $i > /home/mysqldump/$i.sql done ===...
by Martin
Mon Dec 05, 2016 5:03 am
Forum: Hosting Control Panels
Topic: inode usage is 100%. How to check whats using inode?
Replies: 1
Views: 7242

Re: inode usage is 100%. How to check whats using inode?

Hello, Run the below command on your server to check the inode usage. ======= Command : echo "Inode usage for: $(pwd)" ; for d in `find -maxdepth 1 -type d |cut -d\/ -f2 |grep -xv . |sort`; do c=$(find $d |wc -l) ; printf "$c\t\t- $d\n" ; done ; printf "Total: \t\t$(find $(p...