MySQL

mysql-logo

Standaard MySQL commando’s

  Gebruikers Gebruikers bekijken. use mysql; select * from user; Gebruiker toegevoegen aan mysql. In het onderstaande voorbeeld krijgt de gebruiker “user” alle rechten over alle databases CREATE USER ‘user’@’%’ IDENTIFIED BY ‘some_pass’; GRANT ALL PRIVILEGES ON *.* TO ‘user’@’%’ WITH GRANT OPTION; flush privileges; Verwijder de history van MYSQL: rm -f /root/.mysqlhistory

Standaard MySQL commando’s Meer lezen »

CAP theorema

Databases zijn nooit helemaal perfect En brengen altijd problemen met zich mee. Dit heet ook wel het CAP theorema. Het CAP theorema, ook bekend als Brewers theorema, stelt dat het onmogelijk is voor een gedistribueerd computersysteem om gelijktijdig aan de volgende drie voorwaarden te voldoen: Consistency Alle nodes in het systeem zien dezelfde data op

CAP theorema Meer lezen »

Script to Automatically change current MySQL server in wp-config.php to another MySQL host to minimize WordPress and Joomla downtimes

I’m running a two servers for a couple of home hosted websites. One of the servers is serving as Apache host1 and has configured MySQL running on it and the second is used just for database host2 – (has another MySQL configured on it). The MySQL servers are not configured to run as a MySQL MASTER and MySQL SLAVE (no mysql

Script to Automatically change current MySQL server in wp-config.php to another MySQL host to minimize WordPress and Joomla downtimes Meer lezen »