Fellows (and ladies), Am new to the RoR group here on google. I installed MySQL using the Brew Install bundler, and now I''m having difficulty getting MySQL to automatically launch at startup. I''m on a Mac -- with 10.8 (Mountain Lion), I''ve tried installing the startup prefs into the Control Panel, and that''s not working. I''ve also searched the web pretty diligently, and can''t find a solution. Suggestions? Kirk -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CANC89qyzikdoQ7irq0aMLW6qz%2Bmmj%3DzXoeA1q4%3D3%2BqNBvwgxRg%40mail.gmail.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.
Robert Walker
2013-Jun-07 13:23 UTC
Re: I''m feeling stupid -- about getting MySQL to start up
Kirk Keeter wrote in post #1111621:> Fellows (and ladies), > > Am new to the RoR group here on google. > > I installed MySQL using the Brew Install bundler, and now I''m having > difficulty getting MySQL to automatically launch at startup. > > I''m on a Mac -- with 10.8 (Mountain Lion), > > I''ve tried installing the startup prefs into the Control Panel, and > that''s > not working. > > I''ve also searched the web pretty diligently, and can''t find a solution.Did you read the post install instructions after installing with Homebrew? To connect: mysql -uroot To have launchd start mysql at login: ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents Then to load mysql now: launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist Or, if you don''t want/need launchctl, you can just run: mysql.server start -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/2447754b32cd5b78d5e142c8cb99c9c2%40ruby-forum.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.
Benjamin Iandavid Rodriguez
2013-Jun-07 15:34 UTC
Re: Re: I''m feeling stupid -- about getting MySQL to start up
you can also try: $ brew info mysql to list all the required steps to start mysql, alternatively you can run brew doctor to see if your system requires additional configuration, for instance if your path has /local/bin before /usr/local/bin it might be posible that you are using the mysql instance installed by Mac OSX instead of the Home Brew installed one. 2013/6/7 Robert Walker <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org>> Kirk Keeter wrote in post #1111621: > > Fellows (and ladies), > > > > Am new to the RoR group here on google. > > > > I installed MySQL using the Brew Install bundler, and now I''m having > > difficulty getting MySQL to automatically launch at startup. > > > > I''m on a Mac -- with 10.8 (Mountain Lion), > > > > I''ve tried installing the startup prefs into the Control Panel, and > > that''s > > not working. > > > > I''ve also searched the web pretty diligently, and can''t find a solution. > > Did you read the post install instructions after installing with > Homebrew? > > > To connect: > mysql -uroot > > To have launchd start mysql at login: > ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents > Then to load mysql now: > launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist > Or, if you don''t want/need launchctl, you can just run: > mysql.server start > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/2447754b32cd5b78d5e142c8cb99c9c2%40ruby-forum.com?hl=en-US > . > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAHRDpXpR6%2BFcjDWJEgzVeLnV4OEnMxkqqEUk-3qDu663wFCfRA%40mail.gmail.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.
Alberto Grespan
2013-Jun-08 01:40 UTC
Re: I''m feeling stupid -- about getting MySQL to start up
try typing: $ brew info mysql this is some of the info that shows up. "To connect: mysql -uroot To have launchd start mysql at login: ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents Then to load mysql now: launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist Or, if you don''t want/need launchctl, you can just run: mysql.server start" On Thursday, June 6, 2013 12:45:44 PM UTC-4:30, Kirk Keeter wrote:> > Fellows (and ladies), > > Am new to the RoR group here on google. > > I installed MySQL using the Brew Install bundler, and now I''m having > difficulty getting MySQL to automatically launch at startup. > > I''m on a Mac -- with 10.8 (Mountain Lion), > > I''ve tried installing the startup prefs into the Control Panel, and that''s > not working. > > I''ve also searched the web pretty diligently, and can''t find a solution. > > Suggestions? > > Kirk >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/b21a3c61-7a01-4667-acb9-77e8f574254d%40googlegroups.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.