Deprecated: Optional parameter $shortcode declared before required parameter $args is implicitly treated as a required parameter in /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php on line 331

Warning: Cannot modify header information - headers already sent by (output started at /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php:331) in /home/ashishka/public_html/wp-content/plugins/all-in-one-seo-pack/app/Common/Meta/Robots.php on line 89

Warning: Cannot modify header information - headers already sent by (output started at /home/ashishka/public_html/wp-content/plugins/wp-cirrus/wp-cirrus.php:331) in /home/ashishka/public_html/wp-includes/feed-rss2.php on line 8
SSH | Web Hosting Stuff https://www.ashishkale.in Get solutions under one roof Sat, 05 Sep 2015 06:44:33 +0000 en-US hourly 1 How To Reset A Kloxo Or LxAdmin Password From SSH https://www.ashishkale.in/how-to-reset-a-kloxo-or-lxadmin-password-from-ssh/ https://www.ashishkale.in/how-to-reset-a-kloxo-or-lxadmin-password-from-ssh/#respond Sat, 05 Sep 2015 06:44:33 +0000 http://www.ashishkale.in/?p=714 How to Reset A Kloxo Or LxAdmin Password From SSH Kloxo is an another useful free control panel for web hosting management. When your VPS is installed by us with lxadmin the password will be the same as what you asked for on setup. If not try “admin” Note: if you reinstall yourself it will also be “admin” If you [...]

The post How To Reset A Kloxo Or LxAdmin Password From SSH first appeared on Web Hosting Stuff.

]]>
How to Reset A Kloxo Or LxAdmin Password From SSH

Kloxo is an another useful free control panel for web hosting management.

When your VPS is installed by us with lxadmin the password will be the same as what you asked for on setup.

If not try “admin”

Note: if you reinstall yourself it will also be “admin”

If you still can’t login:

Step 1 : Login via SSH server as root.

Step 2 : Execute the script.

cd /usr/local/lxlabs/kloxo/httpdocs

or

cd /usr/local/lxlabs/lxadmin/httpdocs

Step 3 : Restart Kloxo.

/usr/bin/lphp.exe ../bin/common/resetpassword.php master

Step 4 : Now try your password again.

If you still can’t get it to work, create a support ticket at Hostripples client area.

Reset a Kloxo password_ashishkale.in

That’s it!!

 

 

The post How To Reset A Kloxo Or LxAdmin Password From SSH first appeared on Web Hosting Stuff.

]]>
https://www.ashishkale.in/how-to-reset-a-kloxo-or-lxadmin-password-from-ssh/feed/ 0
How to Reboot your cpanel/whm in ssh https://www.ashishkale.in/how-to-reboot-your-cpanelwhm-in-ssh/ https://www.ashishkale.in/how-to-reboot-your-cpanelwhm-in-ssh/#respond Wed, 02 Sep 2015 06:40:25 +0000 http://www.ashishkale.in/?p=679   How to Reboot your cpanel/whm in ssh If you happen to mess up your ssh configuration some how you can reset the ssh config from Cpanel then restart your machine via ssh by using following command /etc/init.d/cpanel restart   Enjoy!!!                                       [...]

The post How to Reboot your cpanel/whm in ssh first appeared on Web Hosting Stuff.

]]>
 

Reboot your cpanel

How to Reboot your cpanel/whm in ssh

If you happen to mess up your ssh configuration some how you can reset the ssh config from Cpanel then restart your machine via ssh by using following command

/etc/init.d/cpanel restart

 

Enjoy!!!

 

                                                                          Or

 

 

If you cannot reboot your server manually, you can restart it by requesting a power cycle.

1) Log in to your Account Manager.

2) Click Servers.

3) Next to the server you want to use, click Manage.

4) Click Power.

5) Click Restart.

 

 

The post How to Reboot your cpanel/whm in ssh first appeared on Web Hosting Stuff.

]]>
https://www.ashishkale.in/how-to-reboot-your-cpanelwhm-in-ssh/feed/ 0
How to Configuring Self-Signed SSL / HTTPS Access https://www.ashishkale.in/how-to-configuring-self-signed-ssl-https-access/ https://www.ashishkale.in/how-to-configuring-self-signed-ssl-https-access/#respond Wed, 26 Aug 2015 06:45:31 +0000 http://www.ashishkale.in/?p=647 To Configuring Self-Signed SSL / HTTPS Access 1) To install OpenSSL on your VPS: apt-get -y install openssl   2) To generate a self-signed certificate that ZPanel will use to secure your connection by using following commands: openssl req -x509 -nodes -days 365 -newkey rsa:2048 -out /etc/pki/tls/certs/zpanel.crt -keyout /etc/pki/tls/certs/zpanel.key   3) To be configured to use the new certificate by using [...]

The post How to Configuring Self-Signed SSL / HTTPS Access first appeared on Web Hosting Stuff.

]]>
To Configuring Self-Signed SSL / HTTPS Access

1) To install OpenSSL on your VPS:

apt-get -y install openssl

 

2) To generate a self-signed certificate that ZPanel will use to secure your connection by using following commands:

openssl req -x509 -nodes -days 365 -newkey rsa:2048 -out /etc/pki/tls/certs/zpanel.crt -keyout /etc/pki/tls/certs/zpanel.key

 

3) To be configured to use the new certificate by using following commands:

nano /etc/httpd/conf.d/ssl.conf

 

4) Now, Find the SSLCertificateFile and SSLCertificateKeyFile entries and change them to :

SSLCertificateFile /etc/pki/tls/certs/zpanel.crt
SSLCertificateKeyFile /etc/pki/tls/certs/zpanel.key

 

5) Save changes and Exit from the file.

We need to redirect all HTTP based ZPanel login attempts to the secure HTTPS URL.

1) Login to ZPanel

 

2) Navigate the menu system as follows:

Zpanel -> Admin -> Module Admin -> Apache Admin

 

3) In Global Zpanel section, insert the following:

Redirect Permanent / https://[VPS FQDN]/

 

4) Now restart the Apache server on your VPS.

service apache2 restart

.
.
.
.
.
.

The installation is now complete!

You can now access your Ubuntu ZPanel installation via secure SSL (HTTPS) connections!

The post How to Configuring Self-Signed SSL / HTTPS Access first appeared on Web Hosting Stuff.

]]>
https://www.ashishkale.in/how-to-configuring-self-signed-ssl-https-access/feed/ 0
Simple way to protect SSH against or not protect against https://www.ashishkale.in/simple-way-to-protect-ssh-against-or-not-protect-against/ https://www.ashishkale.in/simple-way-to-protect-ssh-against-or-not-protect-against/#respond Fri, 17 Jul 2015 11:48:16 +0000 http://www.ashishkale.in/?p=370 SSH will protect against Seven important steps to Secure Shell protects against (again, from the README) Step 1) Eavesdropping of data transmitted over the network. Step 2) Manipulation of data at intermediate elements in the hosts. Step 3) IP address spoofing where an attack hosts pretends to be a trusted host by sending packets with the source address of the trusted [...]

The post Simple way to protect SSH against or not protect against first appeared on Web Hosting Stuff.

]]>
Protect SSh

SSH will protect against

Seven important steps to Secure Shell protects against (again, from the README)

Step 1) Eavesdropping of data transmitted over the network.

Step 2) Manipulation of data at intermediate elements in the hosts.

Step 3) IP address spoofing where an attack hosts pretends to be a trusted host by sending packets with the source address of the trusted host. Ssh even protects against a spoofer on the local network, who can pretend he is your router to the outside.

Step 4) DNS spoofing of trusted host names/IP addresses, where an attacker forges name server records

Step 5) IP source routing, where a host can pretend that an IP packet comes from another, trusted host.

Step 6) Interception of cleartext passwords and other data by intermediate hosts.

Step 7) Attacks based on listening to X authentication data and spoofed connection to the X11 server

 

SSH will not protect against

Secure Shell will not help you with anything that compromises your host’s security in some other way. Once an attacker has gained root access to a machine, he can then subvert ssh, too.

Step 1) Incorrect configuration or usages.

Step 2) A compromised root accounts.

Step 3) Insecure home directories: if an attacker can modify files in your home directory (e.g. via NFS) he may be able to fool SSH

 

 

The post Simple way to protect SSH against or not protect against first appeared on Web Hosting Stuff.

]]>
https://www.ashishkale.in/simple-way-to-protect-ssh-against-or-not-protect-against/feed/ 0
SSH Connection Sequence https://www.ashishkale.in/ssh-connection-sequence/ https://www.ashishkale.in/ssh-connection-sequence/#respond Tue, 14 Jul 2015 13:40:49 +0000 http://www.ashishkale.in/?p=363   The following series of events help protect the integrity of SSH communication. SSH Connection Sequence 1) A cryptographic handshake is made with the server 2) The connection between client and remote server is encrypted using symmetric cipher 3) Client authenticates itself 4) Client can now interact safely with remote server over encrypted connection    

The post SSH Connection Sequence first appeared on Web Hosting Stuff.

]]>
 

ssh

The following series of events help protect the integrity of SSH communication.

SSH Connection Sequence

1) A cryptographic handshake is made with the server

2) The connection between client and remote server is encrypted using symmetric cipher

3) Client authenticates itself

4) Client can now interact safely with remote server over encrypted connection

 

 

The post SSH Connection Sequence first appeared on Web Hosting Stuff.

]]>
https://www.ashishkale.in/ssh-connection-sequence/feed/ 0