Cita:
Iniciado por huesos52
ya probaste creandola estando dentro de mysql?
mysql -uroot -ppassword
create database rs;
Gracias huesos52, veo que dependiendo de como accedas a mysql los resultados varian a la hora de mostrar las BBDD:
Código:
t@t-laptop:/home/aplis_sf/rs/config$ mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 369
Server version: 5.0.51a-3ubuntu5.4 (Ubuntu)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
+--------------------+
1 row in set (0.00 sec)
mysql> exit
Bye
t@t-laptop:/home/aplis_sf/rs/config$ mysql -uroot -p**
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 370
Server version: 5.0.51a-3ubuntu5.4 (Ubuntu)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| jobeet |
| mysql |
| rs |
+--------------------+
4 rows in set (0.01 sec)
mysql>
De todos modos, al acceder a phpmyadmin tan solo me aparecen las BBDD "information_schema" y "mysql", alguna idea?