Scanning Virus after an Update

If suddenly the realization hits that it’s been more than a week since you updated your virus-signature file, you better scan your computer for viruses immediately — particularly if you’re the active type (lots of e-mail, file sharing, file swapping, opening mail from strangers, and other such cyber-exuberance). The more time that has gone by … Read more

Adding User Accounts mysql – asterisk database

MySQL Cluster

Create mysql user id after logging through root user. mysql -u root -p yourpasswordforroot CREATE USER ‘monty’@’localhost’ IDENTIFIED BY ‘some_pass’; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON bankaccount*. TO ‘monty’@’localhost’; FLUSH PRIVILEGES;