My favorites | Sign in
Project Home Downloads Wiki Issues Source
Search
for
InstallOnUbuntu  
Quick Ubuntu Installation Guide
Updated Jan 9, 2012 by dorma...@rydia.net

NOTE The repos below are out of date!

  • Visit https://edge.launchpad.net/~awmcclain/+archive
  • Add the appropriate entry to your sources.list
  • Update the apt cache and install the mogile packages
  • sudo apt-get update
    sudo apt-get install mogilefsd mogstored
  • Edit the configuration file(s) at /etc/mogilefs/
  • Set up your database (instructions for this??)
  • Start the daemons
  • sudo /etc/init.d/mogilefsd start
    sudo /etc/init.d/mogstored start
Comment by phillip....@gmail.com, Oct 2, 2008

on Database Host:

mysql> CREATE DATABASE mogilefs; 
mysql> CREATE USER 'mogilefs'@'mogilehost.yourdomain.loc' IDENTIFIED BY 'sekrit'; 
mysql> GRANT SELECT,INSERT,UPDATE,DELETE ON mogilefs. TO 'mogilefs'@'mogilehost.yourdomain.loc'; 
mysql>flush privileges;

on Mogile Host use "mogdbsetup" (delivered with .deb):

mogdbsetup --dbhost=mogiledb.yourdomain.loc --dbname=mogilefs --dbuser=mogilefs --dbpassword=sekrit 
Comment by simonjgr...@gmail.com, Oct 13, 2008

You will also require the tools such as mogadm. These come from the same repository: sudo apt-get install mogilefs-utils

Comment by creative...@gmail.com, Dec 30, 2008

@ phillip.hagedorn

mysql> GRANT SELECT,INSERT,UPDATE,DELETE ON mogilefs.* TO 'mogilefs'@'mogilehost.yourdomain.loc';

Comment by goo...@kantert.net, Mar 17, 2010

mogilefs-utils is currently broken in this repository for ubuntu hardy. Try https://edge.launchpad.net/~yola/+archive/ppa or https://edge.launchpad.net/~bearnard/+archive/ppa instead.

Comment by phillip....@gmail.com, Jun 7, 2010

CREATE and ALTER are needed by mogdbsetup:

GRANT CREATE,ALTER,SELECT,INSERT,UPDATE,DELETE ON mogilefs. TO 'mogilefs'@'mogilehost.yourdomain.loc';

Comment by maksim.i...@gmail.com, Mar 2, 2011

Is there working version of init.d/ scripts for mogilefs? Can't find any... Working on Ubuntu10.10


Sign in to add a comment
Powered by Google Project Hosting