Question

Hello fellow stackoverflowers,

I am trying to follow the django intro tutorial using nitrous.io When I run manage.py syncdb it creates a few tables till it hits the auth_user table. Then it throws the following error:

Creating table auth_user 
DatabaseError: (1114, "The table 'auth_user' is full")  

I don't know how to fix this error. I am running mysql 5.6.13

Could someone please take the time to help! Thanks a lot for taking the time.

Was it helpful?

Solution

It looks similar to another question (ERROR 1114 (HY000): The table is full)

I would suggest you to try the same fix by changing/adding the following line in your my.cnf:

innodb_data_file_path = ibdata1:10M:autoextend:max:512M
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top