Advertisement
Guest User

Untitled

a guest
Aug 26th, 2013
580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. C:\wamp\bin\mysql\mysql5.5.24\bin>mysql -h localhost -u root -p
  2. Enter password: **********
  3. mysql: Unknown OS character set 'cp720'.
  4. mysql: Switching to the default character set 'latin1'.
  5. Welcome to the MySQL monitor. Commands end with ; or \g.
  6. Your MySQL connection id is 3
  7. Server version: 5.5.24 MySQL Community Server (GPL)
  8.  
  9. Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
  10.  
  11. Oracle is a registered trademark of Oracle Corporation and/or its
  12. affiliates. Other names may be trademarks of their respective
  13. owners.
  14.  
  15. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  16.  
  17. mysql> set GLOBAL read_only = false;
  18. Query OK, 0 rows affected (0.00 sec)
  19.  
  20. mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1';
  21. ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables opt
  22. ion so it cannot execute this statement
  23. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement