My RamNode VPS Got Hacked

I have a 128MB VPS with RamNode which I use only for storage of backup files. Yesterday, I got a surprising message from RamNode: “Your VPS has been using a high CPU load for an extended period of time. Please reduce your usage to comply with our AUP and notify us once you’ve done so.

Read More

create database and new user in mysql with ssh

I keep forgetting how to do this. So, I will log it here once and for all: Log into mysql: mysql -u root -p Create a database: create database name_of_database; Create a new user: CREATE USER ‘newuser’@’localhost’ IDENTIFIED BY ‘password’; Give new user all the priviliges: GRANT ALL PRIVILEGES ON * . * TO ‘newuser’@’localhost’;

Read More