06/06/2013 Par PJ Michel Dansmysql, pense-bête Splitter un dump mysql avec Bash, en 1 dump par table #!/bin/bash file=$1 # the input file directory="$file-splitted" # the output directory output="$directory/header" # the first file containing the header GREP="DROP TABLE" # what we are looking for mkdir $directory #… Read More
27/01/2013 Par PJ Michel DansDebian, mysql, pense-bête Collectd, monitorer mysql coté collectd Host "localhost" User "collectd" Password "Secrets of the Universe with Philo" Database "mysql" # MasterStats true coté Ligne de commande mysql -u root mysql> CREATE USER ‘collectd’@'localhost’ IDENTIFIED… Read More
09/07/2012 Par PJ Michel Dansmysql MySQL Error 23 on Linux | Chris Johnson’s Blog If you have ever encountered a “23 error” you are most likely running MySQL on a windows machine. The error looks something like this: ERROR 23 (HY000): Out of resources… Read More
26/03/2012 Par PJ Michel DansDebian, mysql With a Little Help from my Friend | How to recreate root account in MySQL Today I was trying to log in to mysql database administration on one of my hosting machines and as I was getting ‘permission denied for user rott@localhost’ I tried to… Read More
05/04/2011 Par PJ Michel DansHebergement, mysql Audit MySQL – tmp_table_size & max_heap_table_size | dasini.net – Journal d’un expert MySQL Je suis amené à réaliser régulièrement des audits de serveurs MySQL.Voici le premier volet d’une série d’articles où je vais essayer de vous donner quelques points clés pour mieux comprendre… Read More
06/11/2010 Par PJ Michel DansDebian, Hebergement, Linux, mysql SysAdmin Tips » Reset du mot de passe root de MySQL En cas d’oubli du mot de passe root de MySQL, il est possible de trouver une solution sans s’arracher les cheveux. Il est en effet possible, via la console ssh,… Read More
04/11/2010 Par PJ Michel DansHebergement, mysql Importer et exporter des données sous MySQL Exporter une base de données MySQL avec mysqldump La commande mysql permet d'exporter l'intégralité d'une base de données hébergée par MySQL de façon efficace mais n'offre pas la souplesse nécessaire… Read More
04/11/2010 Par PJ Michel DansDebian, Hebergement, mysql HowtoMySQL – Infogerance Evolix – Trac Search: Login Settings Help/Guide About Trac Wiki Timeline Roadmap View Tickets Search Wiki Navigation Start Page Index by Title Index by Date Last Change Howto MySQL ¶ Documentation officielle :… Read More
02/11/2010 Par PJ Michel DansLinux, mysql Desactiver innodb Pour desactiver innodb, de mysql et gagner en performance sur un système un peu juste, il suffit d'ajouter cette ligne au /etc/my.cnf skip-innodb Puis de relancer mysql Read More