Application Monitoring Research
daniel Fri, 02/08/2019 - 4:31pm
- Read more about Application Monitoring Research
- Log in to post comments
MySql / ORM Research
daniel Fri, 02/08/2019 - 11:01am
- Read more about MySql / ORM Research
- Log in to post comments
supervisord-restarting-and-reloading
daniel Fri, 02/08/2019 - 10:55am
Supervisord is a great daemon for managing application processes. However it does not have a reload option, and restart works different than we get used to. These command makes the following effects.
service supervisor restart
Restart supervisor service without making configuration changes available. It stops, and re-starts all managed applications.
supervisorctl restart
Restart application without making configuration changes available. It stops, and re-starts the application.
If you create a new configuration. None of the commands above will make it available. If you want to apply your configuration changes in both existing and new configurations, start applications in new configurations, and re-start all managed applications, you should run:
service supervisor stop
service supervisor start
If you do not want to re-start all managed applications, but make your configuration changes available, use this command:
supervisorctl reread
This command only updates the changes. It does not restart any of the managed applications, even if their configuration has changed. New application configurations cannot be started, neither. (See the “update” command below)
supervisorctl update
Restarts the applications whose configuration has changed.
Note: After the update command, new application configurations becomes available to start, but do not start automatically until the supervisor service restarts or system reboots (even if autostart option is not disabled). In order to start new application, e.g app2, simply use the following command:
supervisorctl start app2
- Read more about supervisord-restarting-and-reloading
- Log in to post comments
Spring Reactive / Websockets research
daniel Fri, 02/08/2019 - 10:14am
- Read more about Spring Reactive / Websockets research
- Log in to post comments
Get all solr contents
daniel Fri, 02/08/2019 - 10:12am
- Read more about Get all solr contents
- Log in to post comments
Programmatically fetch version of maven artifact
daniel Fri, 02/08/2019 - 10:08am
- Read more about Programmatically fetch version of maven artifact
- Log in to post comments
Encrypting your maven repo password
daniel Fri, 02/08/2019 - 10:05am
- Read more about Encrypting your maven repo password
- Log in to post comments
Documenting Architecture Decisions
daniel Fri, 02/08/2019 - 10:02am
- Read more about Documenting Architecture Decisions
- Log in to post comments
Kotlin Research
daniel Fri, 02/08/2019 - 9:52am
Generating code via annotations in kotlin
Awesome Kotlin - curated lists of links for Kotlin
- Read more about Kotlin Research
- Log in to post comments
10 tips for failing badly at microservices
daniel Fri, 02/08/2019 - 9:51am
- Read more about 10 tips for failing badly at microservices
- Log in to post comments
