Advertisement
Guest User

Untitled

a guest
Mar 12th, 2017
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. mysql> mysql -h <localhost> -u <root> -p <MC33079PG> -e 'SHOW GLOBAL STATUS;'
  2. -> ;
  3. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql -h <localhost> -u <root> -p <MC33079PG> -e 'SHOW GLOBAL STATUS;'' at line 1
  4. mysql> mysql -h <127.0.0.1> -u <root> -p <MC33079PG> -e 'SHOW GLOBAL STATUS;'
  5. -> ;
  6. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql -h <127.0.0.1> -u <root> -p <MC33079PG> -e 'SHOW GLOBAL STATUS;'' at line 1
  7. mysql> mysql -h <127.0.0.1> -u <root> -p <MC33079PG> -e SHOW GLOBAL STATUS;
  8. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mysql -h <127.0.0.1> -u <root> -p <MC33079PG> -e SHOW GLOBAL STATUS' at line 1
  9. mysql> exit
  10. Bye
  11. root@29905:~# mysql -h <localhost> -u <root> -p <MC33079PG> -e 'SHOW GLOBAL STATUS;'
  12. -bash: localhost: No such file or directory
  13. root@29905:~# mysql -h <127.0.0.1> -u <root> -p <MC33079PG> -e 'SHOW GLOBAL STATUS;'
  14. -bash: 127.0.0.1: No such file or directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement