SSH refusing connection with message “no hostkey alg”
If you try to ssh to your server and getting this error: no hostkey alg Try to run this command at your terminal: ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key ssh-keygen -t…
If you try to ssh to your server and getting this error: no hostkey alg Try to run this command at your terminal: ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key ssh-keygen -t…
First, you need to get MySQL installers from https://dev.mysql.com/downloads/mysql/#downloads I ran following command to get MySQL 5.6.14(32bit): wget -O mysql-5.6.14.deb https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.14-debian6.0-i686.deb/from/http://cdn.mysql.com/ Install dependency sudo apt-get install libaio1 Then install Mysql…
Recently I tried to playing around with Amazon EC2 server. After subscribing & setup my server, it will give you cert pem key to access the server instead of entering…
If you want to find how much your database size in MySQL, you can run this command in mysql console: If you want the output in MB’s: mysql> SELECT table_schema…
Clam AntiVirus is an open source (GPL) anti-virus toolkit for UNIX, designed especially for e-mail scanning on mail gateways. It provides a number of utilities including a flexible and scalable…
One day you may find a bunch of requests in a short period of time with unusual and suspicious user agent in your Apache web server’s logs. Something like Made…
configure.ac:15: error: possibly undefined macro: AM_INIT_AUTOMAKE If this token and others are legitimate, please use m4_pattern_allow See the Autoconf documentation You can use this solution to solve it. – sudo…
SSH is an acronym for Secure Socket sHell, which provides a secure connection access to a remote machine. By using this SSH Bruteforce tool, you can test security stuff like…
Lets say you wanted to count the number of unique IP addresses hitting your Apache server. It’s very easy to do in a Linux (or compatible) shell. In this tutorial,…
ssh-copy-id has known problems with handling non-standard ports. For example if you try to connect with different port than 22 e.g. 1337. To overcome this issue, you should use a…