Логика - она СОВСЕМ не про место на диске
CREATE TABLE `overflow` (
`id` tinyint(4) NOT NULL AUTO_INCREMENT,
`name` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=127 DEFAULT CHARSET=latin1;
-- ALTER TABLE test.overflow AUTO_INCREMENT = 0;
INSERT INTO `test`.`overflow` (`name`) VALUES ('test'); -- Error Code: 1062. Duplicate entry '127' for key 'PRIMARY'
# netstat -lptn4|grep :3306
tcp 0 0 8.8.8.8:3306 0.0.0.0:* LISTEN
cat /etc/hosts
127.0.0.1 localhost
8.8.8.8 google.com google
# The following lines are desirable for IPv6 capable hosts
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters