-
Notifications
You must be signed in to change notification settings - Fork 9
Service Modulus
Cintia Del Rio edited this page Jul 15, 2022
·
13 revisions
Deprecated No license (in-house).
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.
sudo service tomcat restart
Via bamboo deployments:
- for Modulus Core: https://ci.openmrs.org/deploy/viewDeploymentProjectEnvironments.action?id=28344321
- for Modulus UI: https://ci.openmrs.org/deploy/viewDeploymentProjectEnvironments.action?id=29655041
https://wiki.openmrs.org/display/projects/How+to+install+Modulus+and+Modulus+UI
- /var/log/tomcat7/catalina.out
Since this feature is broken in the UI, and we're going away from this application, you may want to do this manually.
- ssh modules.openmrs.org
- ssh -u root -p
- this password is available in the ITSM team lastpass
- 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
- To find the primary key of the user you want to make a maintainer,
select id from user where username = 'darius';
insert into module_user (module_maintainers_id, user_id) values (:module_pk, :user_pk_);
Read this before updating this wiki.