Home > Developers > Wiki > Neem Admin
Views

neem is a Linux box at the Grameen Technology Center in Seattle. Please contact Adam Feuer or Adam Monsen (acting sysadmins) for the following:

  • IP address and full hostname for neem
  • a shell account

Shell Access

Access to neem is available via SSH. Please generate a keypair, and send the public key along with your preferred username to a sysadmin.

MySQL databases

Please create your own MySQL databases as needed. The naming convention is to prefix your username with the database name, as follows:

USERNAME_DBNAME

For instance, if user joe wanted a database to run the Mifos unit tests against, it should be named:

joe_mifostest

For all databases you create, please also create a database user account and give that account full access to all your databases.

Example:

CREATE DATABASE joe_mifos;
GRANT ALL ON joe_mifos.* TO joe IDENTIFIED BY 'password';
GRANT ALL ON joe_mifos.* TO 'joe'@'localhost' IDENTIFIED BY 'password';
CREATE DATABASE joe_mifostest;
GRANT ALL ON joe_mifostest.* TO joe IDENTIFIED BY 'password';
GRANT ALL ON joe_mifostest.* TO 'joe'@'localhost' IDENTIFIED BY 'password';


Grameen logo