WordPress founder Matt Mullenweg: social and mobile is the "fourth phase of our evolution"

WordPress was first for pure blogging, then became embraced as a CMS (though some people still deny this), is seeing growth and innovation in being used as an application platform (I think we’re about a third of the way through that), and just now starting to embrace social and mobile — the fourth phase of our evolution.

MySQL-Zugang wieder herstellen

... root-user der MySQL-Datenbank gelöscht? Ich weiß, ich weiß ... das sollte nicht passieren ... aber es gibt Rettung:

sudo /etc/init.d/mysql stop

sudo mysqld_safe --skip-grant-tables &
sudo cat /var/lib/mysql/FILENAME.err

mysql -u root mysql
INSERT INTO mysql.user (Host, User, Password, Select_priv, Insert_priv, Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv, Index_priv, Alter_priv, Show_db_priv, Super_priv, Create_tmp_table_priv, Lock_tables_priv, Execute_priv, Repl_slave_priv, Repl_client_priv, Create_view_priv, Show_view_priv, Create_routine_priv, Alter_routine_priv, Create_user_priv, Event_priv, Trigger_priv) VALUES('%','root3',PASSWORD('__my_password__'), 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y');

ps -fe |grep mysql
sudo kill -9 PID1 PID2

sudo /etc/init.d/mysql start

MySQL-Datenbank verweigert Zugriff?

Wenn die MySQL-Datenbank den Zugriff verweigert ...

Warning: mysql_connect(): [2002] Es konnte keine Verbindung hergestellt werden,da der Zielcomputer die Verbindung verweigerte.

... ist in "/etc/mysql/my.cnf" wahrscheinlich die Zeile

bind-address           = 127.0.0.1

eingetragen; dies durch "bind-address = 0.0.0.0" ersetzen -- nach "sudo /etc/init.d/mysql restart" sollte es dann funktioneren.