Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

arangodb 1.4.4 #25484

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Library/Formula/arangodb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

class Arangodb < Formula
homepage 'http://www.arangodb.org/'
url 'https://www.arangodb.org/repositories/Source/ArangoDB-1.4.3.tar.gz'
sha1 '67abf1cf18dc19c11e3bde41a1fa4792fa4367d4'
url 'https://www.arangodb.org/repositories/Source/ArangoDB-1.4.4.tar.gz'
sha1 'e4b099a47f384761fc6aeddc003c85d11e33f40f'

head "https://github.com/triAGENS/ArangoDB.git", :branch => 'unstable'

Expand Down Expand Up @@ -56,7 +56,7 @@ def caveats; <<-EOS.undent
/usr/local/etc/arangodb/arangod.conf

Start ArangoDB server:
unix> /usr/local/sbin/arangod#{suffix}
unix> /usr/local/sbin/arangod#{suffix} --log.file -
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has this changed between minor versions?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When starting the server without "--log.file -" directly - i. e. not using launchctl - the output is log to the log in /usr/local/var/log/arangodb/arangodb.log.

That seems to confuse people, because the type "/usr/local/sbin/arangod" and see nothing at all (because everything goes into the log file). With the added option, the log is send to stdout instead.

You can start the server with or without the additional option. But the more sensible one seems the "log to stdout" one.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, thanks.


Start ArangoDB shell client (use empty password):
unix> /usr/local/bin/arangosh#{suffix}
Expand Down