My favorites | Sign in
Project Logo
                
Search
for
Updated Feb 04, 2010 by awmcclain
InstallOnUbuntu  
Quick Ubuntu Installation Guide
  • 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.hagedorn, Oct 02, 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 simonjgreen.2509, 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 creativethings, Dec 30, 2008

@ phillip.hagedorn

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

Comment by j...@ciphron.de, Yesterday (25 hours ago)

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.


Sign in to add a comment
Powered by Google Project Hosting