Skip to content

Instantly share code, notes, and snippets.

@giacomomacri
Created November 10, 2011 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giacomomacri/1354661 to your computer and use it in GitHub Desktop.
Save giacomomacri/1354661 to your computer and use it in GitHub Desktop.
Different MongoDB Version with homebrew

Homebrew non supporta l'installazione scegliendo la versione da installare.

Il mio caso è stato : Ho installato mongodb2.0 ma ho bisogno di mongodb1.8

brew create http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-1.8.4.tgz

Questo crea un file ruby: /user/local/Library/Formula/mongodb-osx-x86_64.rb

Per aprire questo file (homebrew chiama formula) :

brew edit mongodb-osx-x86_64
(allegato sotto)

per capire che comandi bisgona fare all'interno ho controllato con il mongodb2.0 già installato :

brew edit mongodb
(allegato sotto)

infine

brew install mongodb-osx-x86_64-1.8.4

ed ho due versioni di mongo installate con homebrew..

Utile questa guida di homebrew https://github.com/mxcl/homebrew/wiki/Formula-Cookbook

require 'formula'
require 'hardware'
class MongodbOsxX8664 < Formula
url 'http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-1.8.1.tgz'
homepage 'http://www.mongodb.org/'
md5 'e446ba61cc8898fa2ffd5046953155ca'
# depends_on 'cmake'
def install
# system "./configure", "--disable-debug", "--disable-dependency-tracking",
# "--prefix=#{prefix}"
# # system "cmake . #{std_cmake_parameters}"
# system "make install"
# Copy the prebuilt binaries to prefix
prefix.install Dir['*']
# Create the data and log directories under /var
(var+'mongodb').mkpath
(var+'log/mongodb').mkpath
# Write the configuration files and launchd script
(prefix+'mongod.conf').write mongodb_conf
(prefix+'org.mongodb.mongod.plist').write startup_plist
(prefix+'org.mongodb.mongod.plist').chmod 0644
end
def test
# This test will fail and we won't accept that! It's enough to just
# replace "false" with the main program this formula installs, but
# it'd be nice if you were more thorough. Test the test with
# `brew test mongodb-osx-x86_64`. Remove this comment before submitting
# your pull request!
system "false"
end
def mongodb_conf
conf = ""
conf += <<-EOS.undent
# Store data in #{var}/mongodb instead of the default /data/db
dbpath = #{var}/mongodb
# Only accept local connections
bind_ip = 127.0.0.1
EOS
if ARGV.include? '--nojournal'
conf += <<-EOS.undent
# Disable Write Ahead Logging
nojournal = true
EOS
end
if ARGV.include? '--rest'
conf += <<-EOS.undent
# Enable the REST interface on the HTTP Console (startup port + 1000)
rest = true
EOS
end
return conf
end
def startup_plist
return <<-EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.mongodb.mongod</string>
<key>ProgramArguments</key>
<array>
<string>#{bin}/mongod</string>
<string>run</string>
<string>--config</string>
<string>#{prefix}/mongod.conf</string>
</array>
<key>RunAtLoad</key>
<false/>
<key>KeepAlive</key>
<false/>
<key>UserName</key>
<string>#{`whoami`.chomp}</string>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/mongodb/output.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/mongodb/output.log</string>
</dict>
</plist>
EOS
end
end
require 'formula'
require 'hardware'
class Mongodb < Formula
homepage 'http://www.mongodb.org/'
packages = {
:x86_64 => {
:url => 'http://fastdl.mongodb.org/osx/mongodb-osx-x86_64-2.0.0.tgz',
:md5 => '01776ae81c9bf12708f8a4f8a2d8c28e',
:version => '2.0.0-x86_64'
},
:i386 => {
:url => 'http://fastdl.mongodb.org/osx/mongodb-osx-i386-2.0.0.tgz',
:md5 => '0a93663d1ceaed9fc99979ef17fbe32d',
:version => '2.0.0-i386'
}
}
package = (Hardware.is_64_bit? and not ARGV.include? '--32bit') ? packages[:x86_64] : packages[:i386]
url package[:url]
md5 package[:md5]
version package[:version]
skip_clean :all
def options
[
['--32bit', 'Override arch detection and install the 32-bit version.'],
['--nojournal', 'Disable write-ahead logging (Journaling)'],
['--rest', 'Enable the REST Interface on the HTTP Status Page'],
]
end
def install
# Copy the prebuilt binaries to prefix
prefix.install Dir['*']
# Create the data and log directories under /var
(var+'mongodb').mkpath
(var+'log/mongodb').mkpath
# Write the configuration files and launchd script
(prefix+'mongod.conf').write mongodb_conf
(prefix+'org.mongodb.mongod.plist').write startup_plist
(prefix+'org.mongodb.mongod.plist').chmod 0644
end
def caveats
s = ""
s += <<-EOS.undent
If this is your first install, automatically load on login with:
mkdir -p ~/Library/LaunchAgents
cp #{prefix}/org.mongodb.mongod.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.mongodb.mongod.plist
If this is an upgrade and you already have the org.mongodb.mongod.plist loaded:
launchctl unload -w ~/Library/LaunchAgents/org.mongodb.mongod.plist
cp #{prefix}/org.mongodb.mongod.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.mongodb.mongod.plist
Or start it manually:
mongod run --config #{prefix}/mongod.conf
EOS
if ARGV.include? "--nojournal"
s += ""
s += <<-EOS.undent
Write Ahead logging (Journaling) has been disabled.
EOS
else
s += ""
s += <<-EOS.undent
MongoDB 1.8+ includes a feature for Write Ahead Logging (Journaling), which has been enabled by default.
To disable journaling, use --nojournal.
EOS
end
return s
end
def mongodb_conf
conf = ""
conf += <<-EOS.undent
# Store data in #{var}/mongodb instead of the default /data/db
dbpath = #{var}/mongodb
# Only accept local connections
bind_ip = 127.0.0.1
EOS
if ARGV.include? '--nojournal'
conf += <<-EOS.undent
# Disable Write Ahead Logging
nojournal = true
EOS
end
if ARGV.include? '--rest'
conf += <<-EOS.undent
# Enable the REST interface on the HTTP Console (startup port + 1000)
rest = true
EOS
end
return conf
end
def startup_plist
return <<-EOS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>org.mongodb.mongod</string>
<key>ProgramArguments</key>
<array>
<string>#{bin}/mongod</string>
<string>run</string>
<string>--config</string>
<string>#{prefix}/mongod.conf</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>UserName</key>
<string>#{`whoami`.chomp}</string>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/mongodb/output.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/mongodb/output.log</string>
</dict>
</plist>
EOS
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment