mysql - What SQL privileges is it best to use to satisy requirements of most popular CMS -
what privileges better use satisfy requirements of popular content management systems?
is safe say:
grant privileges on sitex.* sitex@localhost
or better use like:
grant select, insert, update, delete, create, drop, references, index, alter, create temporary tables, lock tables, execute, create view, show view, create routine, alter routine on sitex.* sitex@localhost
this depends on cms large extent (assuming mean content management system).
keep in mind specific requirements may vary implementations. example things, delete may not want support.
this being said, usually in common case, want support database operations on tables cms expects use. again, not case. need take individual instance requirements account.
Comments
Post a Comment