Astbss is free Open Source Software Licensed under GPL and maintained and developed by a community

Create a new MySQL User

Create a new MySQL User
GRANT ALL ON astsmb.* TO astuser@localhost IDENTIFIED BY 'password';
GRANT SELECT ON astsmb.* TO astuser@localhost IDENTIFIED BY 'password';

GRANT SELECT ON astsmb.* TO voxsrv1@'127.0.0.1' IDENTIFIED BY 'password';

On some old OS versions you may have to use this command to use the old MySQL Password encryption
SET PASSWORD FOR 'astsmb'@'localhost' = OLD_PASSWORD('password');

This is how to view MySQL Users
SHOW GRANTS FOR 'astsmb'@'127.0.0.1';
select Host,User,Password from mysql.user;
drop user astsmb;

Please replace 127.0.0.7 with your valid IP address. For MySQL security it is safer to grant access by user IP address and not to all IP addresses. Use of VPN or SSL tunnelling is the preferred option.