tcp 0 0 0.0.0.0:8333 0.0.0.0:* LISTEN 1579/bitcoin
What does "ps -fp1579" show?
Seems like process id 1579 is still running. Probably you forgot to stop the bitcoin process before removing the bitcoin files. Any Unix allows open files to be deleted, but they are just unlinked. They will get deleted as soon as the last open handle closes.
You could just try "kill -9 1579", although I wouldn't recommend it without checking first.