10th
JAN

VPS Reseller Program

Posted by admin under Reseller, Tips and tricks

We are proud to present our VPS reseller program, no setup fees, pay as you sell, create your own brand, we can handle support for YOUR clients (branding options revoked in that case)

Here are the ground rules, you have to make 3 sales in one month. In return you will receive a coupon code which discounts 15% of all VPS packages including addons. If you don’t make 3 sales in one month you will be billed with the regular price for the previous and next month for any VPS servers you might have sold and your reseller coupon will be removed.

Depending on the amount of VPS sales you make you will receive more discounted prices, up to 50%

If you wish to create your own packages that option is available too upon request.

These terms aren’t final and they’re negotiable.

Please contact us if you’re interested in joining our VPS reseller program.

4th
JAN

Resetting MySQL root password

Posted by admin under Tips and tricks

Login via ssh as root and issue the following commands

/etc/init.d/mysql stop # or /etc/init.d/mysqld stop depending on your linux distribution

mysqld_safe --skip-grant-tables &

mysql -uroot

update user set Password=PASSWORD('new-password-goes-here') WHERE User='root';

flush privileges;

exit

killall -9 mysqld;killall -9 mysqld_safe

/etc/init.d/mysql star # or /etc/init.d/mysqld start depending on your linux distribution