Cleaning up Docker For Mac (Docker is eating my disk space)
- 23 Jun, 2017
The disk space on my mac is too short since i start to use docker. Using the management tools i found the file Docker.qcow2 with the size of 41,5 GB. Searching for a solution i found the following: " Docker For Mac uses a file called Docker.qcow2 that takes more and more disk space as time passes. Deleting images or containers does not decrease the size of this file." The script bellow do the job an keep your selected images. !/bin/bash Copyright 2017 Théo Chamley Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation t
Cleaning up Docker For Mac (Docker is eating my disk space)Read MoreHow to prevent Group Modifiers to modify some groups on Domino?
- 12 Jun, 2017
Last week a customer ask for a change in his Domino mail group management. Some people with the right to change groups (with the role GroupModifier) made a change on several groups and a big problem arrives with mail routing to this groups. The question was: How prevent Group Modifiers to modify some groups on Domino? O only found one solution : Change the permission on the group document. I created a simple agent and modify the group field "DocumentAccess" and put the Role ServerModifier. (Only admins has this role on Domino Directory) and also change the Group Owner to the group Administrators. The simple agent is bellow. FIELD DocumentAccess := "\ServerModifier"; SELECT @All
How to prevent Group Modifiers to modify some groups on Domino?Read MoreRunning my ChatBot application inside Docker Liberty profile container
- 23 May, 2017
I used the steps bellow to run my chatbot servlet application inside of a Docker container. 1 - Download WAS Liberty Docker image: docker pull websphere-liberty 2 - Create a Docker file with the following lines FROM websphere-liberty ADD ChatBot.war /opt/ibm/wlp/usr/servers/defaultServer/dropins/ ADD server.xml /opt/ibm/wlp/usr/servers/defaultServer/ ENV LICENSE accept ChatBot.war is my chatbot application. To add features and configuration for your server you need to update the server.xml. Do not forget to put host="" on httpEndpoint or you will not access the server from your browser. The server.xml is listed below javaee-7.0 localConnector-1.0 distributedMap-1.0 webCache-1.0
Running my ChatBot application inside Docker Liberty profile containerRead MoreWAS Liberty 17.0.0.1 does not work with Watson Java SDK
- 02 May, 2017
Today i publish a Java Web Application to Bluemix, using eclipse tools. I get the error bellow when access the app: Caused by: java.net.UnknownServiceException: Unable to find acceptable protocols. isFallback=false, modes=ConnectionSpec(cipherSuites=TLSECDHEECDSAWITHAES128GCMSHA256, TLSECDHERSAWITHAES128GCMSHA256, TLSDHERSAWITHAES128GCMSHA256, TLSECDHEECDSAWITHAES256CBCSHA, TLSECDHEECDSAWITHAES128CBCSHA, TLSECDHERSAWITHAES128CBCSHA, TLSECDHERSAWITHAES256CBCSHA, TLSDHERSAWITHAES128CBCSHA, TLSDHERSAWITHAES256CBCSHA, TLSRSAWITHAES128GCMSHA256, TLSRSAWITHAES128CBCSHA, TLSRSAWITHAES256CBCSHA, TLSRSAWITH3DESEDECBCSHA, tlsVersions=TLS12, TLS11, TLS10, supportsTlsExtensions=true), ConnectionSpe
WAS Liberty 17.0.0.1 does not work with Watson Java SDKRead MoreInstall atop to monitor Linux processes
- 27 Apr, 2017
To install atop on Centos you need to enable EPEL Repository RHEL/CentOS 7 64-Bit wget http://dl.fedoraproject.org/pub/epel/7/x8664/e/epel-release-7-9.noarch.rpm rpm -ivh epel-release-7-9.noarch.rpm Use yum install atop to install on your server. More information on this link http://www.tecmint.com/how-to-install-atop-to-monitor-logging-activity-of-linux-system-processes/
Install atop to monitor Linux processesRead MoreEnd of Service for WebSphere Portal 8.0.x
- 27 Apr, 2017
WebSphere Portal V8.0.x will be out of service on April 30 2018. Its time to plan the migration to 8.5 or 9.0 More information https://www-01.ibm.com/software/support/lifecycleapp/PLCDetail.wss?q45=T239753D93163X19
End of Service for WebSphere Portal 8.0.xRead MoreBypass IBM Web Content Manager Caching
- 21 Mar, 2017
If you have Basic or Advanced caching enabled in IBM® Web Content Manager, then Web Content Manager caches content artifacts independently of the cache settings that you configured for the Web Content Viewer portlet. To bypass the caching that is set in Web Content Manager, select the option Bypass Web Content Manager Caching. This setting applies to content artifacts that are rendered in this Web Content Viewer portlet only. This feature was added on CF11 for Portal/WCM
Bypass IBM Web Content Manager CachingRead MoreIBM Connections 6 on March 28
- 13 Mar, 2017
IBM today announced it is bringing new capabilities to enterprise social networks for a simpler collaboration across the workforce and employee onboarding experience. The latest version of IBM Connections also integrates with IBM Cloud Object Storage, providing companies an ability to scale their storage needs with their employee’s usage while improving storage costs. IBM Connections 6.0 has been redesigned to surface the most useful content from the user’s network. This new feature – called Orient Me – leverages a new containerized, API-driven architecture to bring the most relevant information for the user to engage with – providing an interactive experience. Read the full release news
IBM Connections 6 on March 28Read MoreHow to Resolve Another app is currently holding the yum lock
- 17 Feb, 2017
Yesterday i start to setup some new servers and need to install several libraries on Centos 7 Yum is the first option and when i start a command like yum install i got several erros and yum was locked. See this short video and solve the problem.
How to Resolve Another app is currently holding the yum lockRead MoreCreating The IHS Plugin for Liberty Profile
- 08 Feb, 2017
Yesterday i found this tutorial(https://jazz.net/wiki/bin/view/Deployment/CreateIHSPLUGINFORLIBERTYPROFILE) on how to setup WebSphere IHS plugin with Liberty profile. More information on Generating Plug-ins for Liberty Profile can be found here: Liberty Profile Plugin(http://www-01.ibm.com/support/knowledgecenter/SSEQTP8.5.5/com.ibm.websphere.wlp.doc/ae/twlpgenerateplugincfgxml.html?cp=SSEQTP8.5.5&lang=en)
Creating The IHS Plugin for Liberty ProfileRead MoreHow to enable gzip compression on IBM HTTP Server
- 06 Feb, 2017
One of the tuning activities is to turn on GZIP compression for HTTP requests. This tuning can save lots of network traffic and your page will load in a short time. Just put the lines bellow on the httpd.conf and restart the server LoadModule deflate\module modules/mod\deflate.so LoadModule headers\module modules/mod\headers.so Only the specified MIME types will be compressed. AddOutputFilterByType DEFLATE application/atom+xml AddOutputFilterByType DEFLATE application/atomcat+xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/json AddOutputFilterByType DEFLATE application/octet-stream AddOutputFilterByType DEFLATE application/x-javascript
How to enable gzip compression on IBM HTTP ServerRead MoreIBM Champion for Cloud
- 16 Jan, 2017
Last month i was nominated as IBM Champion for ICS 2017 and now IBM Champion for Cloud 2017 for the first time. Thank you to everyone and IBM who nominated me. It's an honor. What is an IBM Champion? "IBM Champions demonstrate both expertise in, and extraordinary support and advocacy for, IBM communities and solutions." !Screenshot2014-12-0221.53.15(http://www.mysphere.com.br/wp-content/uploads/2015/10/Screenshot2014-12-0221.53.15.png)
IBM Champion for CloudRead More