Re: Can't create database

2006-11-02 Thread Gerald L. Clark
Mário Gamito wrote: Hi, I've installed MySQL 5.0.27, but can't create databases. I get "ERROR 1006 (HY000): Can't create database 'contineo' (errno: 28)" In the log file i have this: "InnoDB: Error: auto-extending data file ./ibdata1 is of a different

Re: Can't create database

2006-11-02 Thread Rolando Edwards
T-0500 US/Eastern Subject: Can't create database Hi, I've installed MySQL 5.0.27, but can't create databases. I get "ERROR 1006 (HY000): Can't create database 'contineo' (errno: 28)" In the log file i have this: "InnoDB: Error: auto-extending data fi

Can't create database

2006-11-02 Thread Mário Gamito
Hi, I've installed MySQL 5.0.27, but can't create databases. I get "ERROR 1006 (HY000): Can't create database 'contineo' (errno: 28)" In the log file i have this: "InnoDB: Error: auto-extending data file ./ibdata1 is of a different size InnoDB: 0 pages (r

Re: ERROR 1006: Can't create database

2005-01-28 Thread Jordan Morgan
Thanks! That makes senses. And once I chmod as instructed, I can create directory in the mysql folder. Tom Crimmins wrote: [snip] How can find the user mysql password? The hosting company which I got the dedicated server package from set that up of course. Should I go to phpAdmin and reset that p

RE: ERROR 1006: Can't create database

2005-01-28 Thread Tom Crimmins
[snip] How can find the user mysql password? The hosting company which I got the dedicated server package from set that up of course. Should I go to phpAdmin and reset that password so that I know what it is from now on? [/snip] The mysql linux user should not be able to login interactivly, just

Re: ERROR 1006: Can't create database

2005-01-28 Thread Jordan Morgan
go to phpAdmin and reset that password so that I know what it is from now on? Thanks again! Jordan Tom Crimmins wrote: [snip] I'm using version 3.23.58. I tried to create a database foo using phpAdmin(logged in as root) and got: ERROR 1006: Can't create database 'foo'. (err

Re: ERROR 1006: Can't create database

2005-01-27 Thread beacker
>ERROR 1006: Can't create database 'foo'. (errno: 13) errno 13 is 'Permission denied' >drwx--x--x 2 mysql root 4096 Sep 15 10:34 mysql locate the directory that contains the 'test' and 'mysql' databases. This will be the directory that you

RE: ERROR 1006: Can't create database

2005-01-27 Thread Tom Crimmins
[snip] I'm using version 3.23.58. I tried to create a database foo using phpAdmin(logged in as root) and got: ERROR 1006: Can't create database 'foo'. (errno: 13) ... drwx--x--x 2 mysql root 4096 Sep 15 10:34 mysql [/snip] >perror 13 Error code 13: Permission denied F

ERROR 1006: Can't create database

2005-01-27 Thread Jordan Morgan
Hi, I'm really stuck here. I'm using version 3.23.58. I tried to create a database foo using phpAdmin(logged in as root) and got: ERROR 1006: Can't create database 'foo'. (errno: 13) I checked [EMAIL PROTECTED] in the user table and it has all priviledges. Went to li

Re: Can't create Database

2004-01-12 Thread robert_rowe
It looks like you didn't specify a user. Try this: mysql -u root -p It will prompt you for the password that you set up for the root account. After you enter it you will get a mysql> prompt. Now type: create database newdatabase; This will create a new database called newdatabase. You can l

Can't create Database

2004-01-12 Thread Chris L. White
Ok got MySQL running and I have MyODBC installed as well. In any event. I have the test database and I can see it. I need to create a new database and it is not letting me do that. It tells me access denied for user ' ' @' localhost. I used the syntax mysqladmin create database . Have I done s

Re: ERROR 1006: Can't create database 'X'. (errno: 13)

2003-12-11 Thread Paul DuBois
quot;data". all files and directories of var in this new directory -data-. I changed with mysql mysql all this file and directories (group and owner). And I made : create database X; ERROR 1006: Can't create database 'X'. (errno: 13) I hope what I explain is clear! What did I forget

ERROR 1006: Can't create database 'X'. (errno: 13)

2003-12-11 Thread N L
data to data in the other volume and not anymore as it was to var in the same volume before. I copied all files and directories of var in this new directory -data-. I changed with mysql mysql all this file and directories (group and owner). And I made : create database X; ERROR 1006: Can't c

Can't create database

2001-12-23 Thread Lawrence Bowie
All: I have been trying to just simply create a database and I receive the following error: mysql> create database MyCollection; ERROR 1006: Can't create database 'MyCollection'. (errno: 13) I know it is a privilege problem but I cannot figure out where it is located. i h

RE: ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-18 Thread Matthew Smith
What does df show? -Original Message- From: John Lepone [mailto:[EMAIL PROTECTED]] Sent: 17 December 2001 20:41 To: '[EMAIL PROTECTED]' Subject: Re: ERROR 1006: Can't create database 'mynewdb'. (errno: 28) I don't think I'm out of room on the volu

Re: ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-17 Thread Robert Alexander
Hi John, Just listing the files and directories in your data directory won't tell you (or anyone else here) if you're out of disk space. Try: $ df -k to show your disk free space in K. or, if you're in a directory, try $ du -sk * to show you a disk usage summary, in K, of the things in the dir

Re: ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-17 Thread John Lepone
I don't think I'm out of room on the volume. Below is the directory listing: -rw-rw1 mysqlmysql 0 Dec 13 07:09 mandrake-bin.001 -rw-rw1 mysqlmysql 0 Dec 13 07:12 mandrake-bin.002 -rw-rw1 mysqlmysql 0 Dec 13 07:17 mandrake-bin.003

Re: ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-17 Thread Michael Brunson
27;\h' for help. Type '\c' to clear the | buffer. | | mysql> CREATE DATABASE mynewdb; | ERROR 1006: Can't create database 'mynewdb'. (errno: 28) | mysql> | | | Likewise, if I try to add a table to an existing D

RE: ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-17 Thread Christopher Schreiber
e '\c' to clear the buffer. mysql> CREATE DATABASE mynewdb; ERROR 1006: Can't create database 'mynewdb'. (errno: 28) mysql> Likewise, if I try to add a table to an existing DB I get the following: mysq

RE: ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-17 Thread Carsten H. Pedersen
> mysql> CREATE DATABASE mynewdb; > ERROR 1006: Can't create database 'mynewdb'. (errno: 28) > mysql> [carsten@tsort carsten]$ perror 28 Error code 28: No space left on device - Maybe clearing up some disk space would h

ERROR 1006: Can't create database 'mynewdb'. (errno: 28)

2001-12-17 Thread John Lepone
mysql> CREATE DATABASE mynewdb; ERROR 1006: Can't create database 'mynewdb'. (errno: 28) mysql> Likewise, if I try to add a table to an existing DB I get the following: mysql> use test; Database changed

Re: error can't create database (error 13)

2001-04-27 Thread Miguel Angel Solórzano
n create dbName. I get the error: > >mysqladmin: Create failed; error: 'Can't create database 'dbName'. (errno: >13)' > >Has anyone run into this? I am making a beginner mistake? I would >appreciate any one to

error can't create database (error 13)

2001-04-26 Thread Brent and Maria
abase. I try to do this in mysql and using mysqladmin create dbName. I get the error: mysqladmin: Create failed; error: 'Can't create database 'dbName'. (errno: 13)' Has anyone run into this? I am making a beginner mistake? I would appreciate any one to p