Student Reviews
( 5 Of 5 )
1 review
Video of Understanding MySQL Users in Apache HTTP Server course by theurbanpenguin channel, video No. 11 free certified online
More videos like this online at http://www.theurbanpenguin.com
MySQL can make use of its own user accounts. These accounts are stored in the mysql.user table. The default user created at the install is root. The root user is the server administrator. We can create more users when logged in as root or another user with the correct permissions. If we create a user as:
create user bob
This equate to bob@'%' meaning he can log on from any host
create user bob@localhost
creates an account from bob that can only be used on the server