When you need to delete a mySQL account and database for an I.T. student, do the following:
Log into the itunix.ccm.edu server via putty, and then access mySQL using the following command:
sudo mysql -u root
Use the code below to delete a new mySQL database for an I.T. student. Replace the variables lastname, username, and password with the correct student specific data. Don't forget the semicolons at the end of each line.
drop database lastname;
drop user 'username'@'localhost' identified by 'password';
drop user 'usernamel'@'192.168.0.254' identified by 'password';