The firewall entries I published before resolved the issue for me. Add: GRANT ALL PRIVILEGES ON *.* TO 'repl'@'localhost' IDENTIFIED BY 'BBB2013repl' WITH GRANT OPTION; GRANT ALL PRIVILEGES ON *.* TO 'repl'@'%' IDENTIFIED BY 'BBB2013repl' WITH GRANT OPTION;
On 28 July 2014 14:41, <[email protected]> wrote: > hi simon, > > i have same problem to accessing database remotely from beagal bone, > so what d solution for that > > On Monday, July 1, 2013 1:03:08 AM UTC+5:30, [email protected] wrote: >> >> Simon, >> >> Fixed the problem. It seems like for some reason all accounts had lost >> their privileges. So I had to start mysqld with --skip-grant-tables and >> then repair mysql.user table manually. >> >> Thanks for all the help. >> Hemant >> >> On Sunday, June 30, 2013 12:30:56 AM UTC-7, Simon Platten wrote: >>> >>> Hi Hemant, >>> >>> Can you be more specific in what you are asking? I only had to create >>> one additional user for replication purposes. The priveledges I set for >>> that are: >>> >>> GRANT ALL PRIVILEGES ON *.* TO 'repl'@'localhost' IDENTIFIED BY >>> 'BBB2013repl' WITH GRANT OPTION; >>> GRANT ALL PRIVILEGES ON *.* TO 'repl'@'%' IDENTIFIED BY 'BBB2013repl' >>> WITH GRANT OPTION; >>> >>> >>> On 29/06/2013 11:33 PM, [email protected] wrote: >>> >>> Simon, >>> >>> Is there any account with ALL privileges after the installation? Could >>> not find any way to create one that allows schema creation etc. >>> >>> Thanks. >>> - Hemant >>> >>> On Wednesday, May 29, 2013 11:42:42 PM UTC-7, Simon Platten wrote: >>>> >>>> The reason I chose mySQL is because I've got two BBB configured to run >>>> in HA mode, which means that they are doing the same job as a much larger >>>> server set-up and so far its working really well. >>>> >>>> SQLlite is ok for Android applications or very small applications, but >>>> like MS Access because everything is in one file, if you loose that file >>>> you loose everything. With mySQL and other database's you have lots of >>>> options to repair and recover the data. >>>> >>>> >>>> >>>> On Tuesday, 28 May 2013 18:34:49 UTC+1, Simon Platten wrote: >>>>> >>>>> I'm trying to enable remote access to a mySQL database running on a >>>>> beaglebone Black board. I have mySQL installed and running, but I cannot >>>>> access it remotely, I believe this is a firewall issue and I've added the >>>>> following to /etc/sysconfig/iptables: >>>>> >>>>> *filter >>>>> :INPUT ACCEPT [32:2424] >>>>> :FORWARD ACCEPT [0:0] >>>>> :OUTPUT ACCEPT [25:2380] >>>>> -A INPUT -i eth0 -p tcp -m tcp --dport 3306 -j ACCEPT >>>>> COMMIT >>>>> >>>>> This configuration was table from the same file on a server running >>>>> Centos 6, not sure if its correct for Angstrom, can anyone tell me if this >>>>> is correct and if they're is anything else I need to do? >>>>> >>>>> Thank you, >>>>> >>>> -- >>> For more options, visit http://beagleboard.org/discuss >>> --- >>> You received this message because you are subscribed to a topic in the >>> Google Groups "BeagleBoard" group. >>> To unsubscribe from this topic, visit https://groups.google.com/d/ >>> topic/beagleboard/TOZG62o_OBA/unsubscribe. >>> To unsubscribe from this group and all its topics, send an email to >>> [email protected]. >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >>> >>> >>> >>> -- >>> >>> Kind Regards, >>> Simon A. Platten >>> >>> >>> <http://zxing.org/w/decode?u=http%3A%2F%2Favasig.com%2Fimages%2Fqrcode.png&full=true> >>> [image: >>> View Simon Platten's profile on LinkedIn] >>> <http://uk.linkedin.com/in/simonplatten> About Me... >>> <http://about.me/SPlatten> >>> >> -- > For more options, visit http://beagleboard.org/discuss > --- > You received this message because you are subscribed to a topic in the > Google Groups "BeagleBoard" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/beagleboard/TOZG62o_OBA/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- <http://about.me/SPlatten> [image: Simon Platten on about.me] Simon Platten about.me/SPlatten <http://about.me/SPlatten> -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
