Skip to content

Service Modulus

Cintia Del Rio edited this page Jul 15, 2022 · 13 revisions

License

Deprecated No license (in-house).

Description of the service

In-house made software to upload and download Openmrs modules. https://github.com/openmrs/openmrs-contrib-modulus Being migrated to https://talk.openmrs.org/t/replacing-modulus-design-thoughts/9619 add-ons.

How to access it

How to restart it

sudo service tomcat restart

How to upgrade it

Via bamboo deployments:

How to setup

https://wiki.openmrs.org/display/projects/How+to+install+Modulus+and+Modulus+UI

Logs location

  • /var/log/tomcat7/catalina.out

How to manually make someone a maintainer of a module

Since this feature is broken in the UI, and we're going away from this application, you may want to do this manually.

  1. ssh modules.openmrs.org
  2. ssh -u root -p
    • this password is available in the ITSM team lastpass
  3. To find the primary key of the module you want to modify, go through the modulus UI and get it from the URI of the show module page
  4. To find the primary key of the user you want to make a maintainer, select id from user where username = 'darius';
  5. insert into module_user (module_maintainers_id, user_id) values (:module_pk, :user_pk_);
Clone this wiki locally