// Grant appropriate permissions for people to access create database XDADMIN3 default charset 'UTF8'; grant all on XDADMIN3.* to 'k-int'@localhost identified by 'k-int'; grant all on XDADMIN3.* to 'k-int'@localhost.localdomain identified by 'k-int'; grant all on XDADMIN3.* to 'k-int'@'%' identified by 'k-int'; FLUSH PRIVILEGES; create database xdadmin; grant all on xdadmin.* to 'k-int'@localhost identified by 'k-int'; grant all on xdadmin.* to 'k-int'@localhost.localdomain identified by 'k-int'; grant all on xdadmin.* to 'k-int'@'%' identified by 'k-int'; FLUSH PRIVILEGES; create database OpenCRM; grant all on OpenCRM.* to 'k-int'@localhost identified by 'k-int'; grant all on OpenCRM.* to 'k-int'@localhost.localdomain identified by 'k-int'; grant all on OpenCRM.* to 'k-int'@'%' identified by 'k-int'; FLUSH PRIVILEGES; create database SAL; grant all on SAL.* to 'k-int'@localhost identified by 'k-int'; grant all on SAL.* to 'k-int'@localhost.localdomain identified by 'k-int'; grant all on SAL.* to 'k-int'@'%' identified by 'k-int'; FLUSH PRIVILEGES;