Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
user
mysql
%
User
GRANT
FLUSH PRIVILEGES
Host
%
localhost
FLUSH PRIVILEGES
localhost
Host
user
localhost
%
--skip-grant-tables
Host
User
mysql> SELECT Host, User, Password FROM user;
+-----------+-----------+------------------+
| Host | User | Password |
+-----------+-----------+------------------+
| localhost | root | 27427c4764cd551d |
| % | root | 27427c4764cd551d |
| localhost | kun | 287368c779c87hk3 |
| % | kun | 287368c779c87hk3 |
+-----------+-----------+------------------+
user
INSERT INTO user(Host,User,Password)
VALUES ('localhost','root',
PASSWORD(
'mypassword'
)
);
PASSWORD()
Host
User
--skip-grant-tables
mysql -uroot -p
mysql -uroot -p --host=192.168.0.1
host
user
mysqladmin shutdown
mysqld
mysql
mysqld
mysql
mysqld
mysql --host=192.168.0.1