Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Thanks mate, Just what I was looking for. It seemed to be a different way of doing things in Leopard than previous versions. Cheers, Mitch
- thanks, i couldnt remember.
- I did this in Garage band, but if forced me to trip the song to 8 seconds in order to send it to itunes ringtones - any ideas on this? Using the new 3GS.
- Please dont remove this Folder, It occupies only 315 MB and is useful for your Office 2003.... SRIKANTH
- that still wont work and i got no idea about registery could use help
5 年 ago
5 年 ago
This only work's for the localhost how do i create an account that can be accesd by any ip and not from the same pc of the server ???? 8O
5 年 ago
grant all on accounts.* to jsmith@workstation identified by 'Secret15';
grant all on accounts.* to jsmith@10.100.15.2 identified by 'Secret15';
A dubious alternative, one with serious security consequences (you've been warned) is to allow access to jsmith from anywhere:
grant all on accounts.* to jsmith@% identified by 'Secret15';
In this context, the % symbol is a wildcard permitting access from any host. An important note - from my experience, it is necessary to create the localhost access control in addition to a specific host or global access control. If you do not, connections from localhost may not function properly.
4 年 ago
I read that flushing privileges is only neccessary if you use insert instead of grant:
"The reason for using FLUSH PRIVILEGES when you create accounts with INSERT is to tell the server to re-read the grant tables. Otherwise, the changes will go unnoticed until you restart the server. With GRANT, FLUSH PRIVILEGES is unnecessary."
Quote from http://dev.mysql.com/doc/mysql/en/Adding_users.html
4 年 ago
4 年 ago
I read that flushing privileges is only neccessary if you use insert instead of grant:
"The reason for using FLUSH PRIVILEGES when you create accounts with INSERT is to tell the server to re-read the grant tables. Otherwise, the changes will go unnoticed until you restart the server. With GRANT, FLUSH PRIVILEGES is unnecessary."
Quote from http://dev.mysql.com/doc/mysql/en/Adding_users.html
4 年 ago
4 年 ago
7 ヶ月 ago