For me and other guys, specially in UK.

Some pics fro DownDetector / eBay

Under root user execute:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password';
Edit your my.cnf, generally located in bind-address = 127.0.0.1.
#bind-address = 127.0.0.1
Restart mysql
service mysql restart
![]()
I wanted to make sure you saw the new research report from Cloud Spectator, Benchmarking a NoSQL Database on Bare Metal versus Public Cloud. Cloud Spectator’s benchmark tests confirm the price-performance advantages of running big data workloads in bare-metal environments over comparable virtual offerings from Amazon Web Services and Rackspace.
Example findings include:
Internap outperformed Rackspace by 5x and Amazon by 51% on throughput speed when loading data into the database.
Internap had 59% less latency than Amazon and 32% less latency than Rackspace when testing a balanced workload.
The equivalent monthly price of hosting an Aerospike database on Internap’s bare-metal servers was at least 78% less expensive than doing so on Amazon I2 or Rackspace Performance Server.





Know more about Martin Fowler.
NoSQL Intro by Martin Fowler.
Like a blog it captures small items on many topics which are mostly read through my feed. Like a wiki, however, each entry is a wikiWord as I try to organize the bliki through named concepts. I write the entries to be things that are valid for a long time, and most bliki posts are just as valid now as when I wrote them.
The bliki, like much of the website, has grown and now has over 400 entries. The tags are probably the best way to explore it. There is also a page with all the recent bliki entries. All bliki entries are put, with full text, into my news feed.
mysqldump -u [uname] -p db_name > ~/db_backup.sql
Copy the generated file, on your user’s home to the new server with scp.
scp ~/db_backup.sql [email protected]:/home/username
Login into the mysql
mysql -u root -p
Create the database
create database database_name;
mysql> use database_name;
mysql> source /full/path/your_file.sql;
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
grant all privileges on database.* to username@localhost identified by 'password'; FLUSH PRIVILEGES;
Links
http://www.usgs.gov/newsroom/article.asp?ID=3813&from=rss#.U38lL5RdWuc
http://www.sciencedirect.com/science/article/pii/S0048969706006978
http://www.crdt.org.kh/2013/09/mekong-river-pollution/
http://fmanha.com.br/blogs/esdras/2011/06/25/peixe-panga-do-rio-mais-poluido-do-vietnam-para-a-mesa-dos-campistas/

I just caught a rackspace host ssh’ing!