Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to shut down rethinkdb running on Mac OSX

Note: We love RethinkDB but our current project does not use it so we need to free up resources on our local machine ...

We installed RethinkDB using homebrew:

brew update && brew install rethinkdb

And added the rethinkdb process to our plist as per the instructions in: http://rethinkdb.com/docs/start-on-startup/

But now we need to shut it down to free-up the 8080 port for another service.

What command do we need to run? (thanks!)

like image 378
nelsonic Avatar asked Aug 17 '15 09:08

nelsonic


People also ask

How do I restart RethinkDB?

You can use the Services tab in Task Manager to monitor, stop, and restart the service. By default, REthinkDB is set to automatically start on system startup. If the user is local, the <domain> is the name of the server; otherwise, it's the name of the Windows Domain or Active Directory the user record is located in.

How do I run RethinkDB?

RethinkDB uses three ports to operate—the HTTP web UI port, the client drivers port, and the intracluster traffic port. You can connect the browser to the web UI port to administer the cluster right from your browser, and connect the client drivers to the client driver port to run queries from your application.


1 Answers

Do this in the terminal

check to see if you started it using brew

$ brew services list

stop rethinkdb:

$ brew services stop rethinkdb

restart:

$ brew services start rethinkdb
like image 90
Freddie Cabrera Avatar answered Sep 20 '22 00:09

Freddie Cabrera