- yum install mysql mysql-sever
- mv /var/lib/mysql/* /new_place/*
- chown -r mysql:mysql /new_place
- rmdir /var/lib/mysql
- cd /var/lib
- ln -s /new_place mysql
- vi /etc/my.cnf
- datadir=/new_place
- socket=/new_place/mysql.sock
- mysql_install_db --user=mysql --ldata=/new_place
- mysqld_safe --datadir=/new_place --user=mysql &
- /etc/init.d/mysqld start
- mysql
- GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; (da permisos al user root para conectarse de cualquier maquina, obviamente para usar solo en testing)
- Edit /etc/my.cnf. Add:
[mysqld]
max_allowed_packet=32M // maximo tamaño para attachments...
max_connections=550 // Asumiendo 5 nodos con 100 connections por nodo + 10% para liberar connections...
Comments