To recursively chmod directories only, use this command: find /some/folder -type d -exec chmod 755 {} \; This will recursively search your directory tree (starting at directory ‘folder’) and chmod 755 all direc...
Read More...
Use this command to create a new username, with a password, but no grant permissions. CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; Use this command to remove a username. DROP USER 'username'@'localhost'; ...
Read More...