SlideShare a Scribd company logo
1 of 65
Download to read offline
The Latest, Ultimative Final Ver­
sion, Current Release, Approved,
Last Minute Changes Included
Post-Installation Checklist
Sjaak Ursinus
ilionx
Martin Leyrer
IBM
PLATINUM & CHAMPAGNE SPONSORS
GOLD SPONSORS
SILVER SPONSORS
BRONZE SPONSORS
Martin Leyrer - IBM
•
Working 5 years for IBM
as an IT-Specialist
•
ICS product stack since
1995
•
Twitter → leyrer
•
Linkedin →
www.linkedin.com/in/leyrer
●
Blog → www.leyon.at
Sjaak Ursinus - ilionx
•
Working 11 Years for ilionx as a
consultant
•
Working with IBM Connections
since Jan 2007
•
IBM Champion since start of program
•
Twitter → sursinus
•
Skype → sursinus
•
Linkedin → www.linkedin.com/in/sursinus
•
Various other social website’s
Why ?
•
Even we forget things
•
Info is scattered across the
Connections documentation
•
So far no singular check list has
emerged
•
Overview of „optional“ configuration
steps
Disclaimer
•
NOT an installation guide
•
Probably incomplete
•
Biased towards what we think is
useful
•
If you want to add something, please
let us know
01. Increase Number of
Open Files (Linux only)
•
default is: 1024 open files/process
•
recommended limit: 8192
•
Martins recomendation: 65536
•
„ulimit -n“ to check
•
To change, edit
/etc/security/limits.conf
icuser soft nofile 65536
icuser hard nofile 65536
02. JDBC Connection
Pool Size
•
Initial WebSphere JDBC pool size:
10 connections/connection pool
•
Connections 5.0 CR1 Performance
Tuning Guide has recommendations
•
Use scripts from „Connections
Administration & Scripting 101“ to
set automatically
03. JVM Heap Size
•
Connections needs „sufficient“ heap
space, esp. Search
•
Connections 5.0 CR1 Performance
Tuning Guide has recommendations
•
Use scripts from „Connections
Administration & Scripting 101“ to
set automatically
04. Change Websphere
Default Log Language
•
Open Websphere Integrated Solution Console
•
Go to Servers->Server Types -> „Websphere
application servers“ and select server you
want to change
•
Server Infrastructure → Java and Process
Management → Process definition →
Additional properties → Java Virtual Machine
•
Add to “Generic JVM arguments”:
-Duser.language=en -Duser.region=GB
05. Proper IHS TLS Settings
SSLProtocolDisable SSLv2 SSLv3
SSLCompression off
SSLCipherSpec ALL NONE
SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
SSLCipherSpec ALL TLS_RSA_WITH_AES_128_GCM_SHA256
SSLCipherSpec ALL TLS_RSA_WITH_AES_256_GCM_SHA384
SSLCipherSpec ALL TLS_RSA_WITH_AES_128_CBC_SHA256
SSLCipherSpec ALL TLS_RSA_WITH_AES_256_CBC_SHA256
SSLCipherSpec ALL TLS_RSA_WITH_AES_128_CBC_SHA
SSLCipherSpec ALL TLS_RSA_WITH_AES_256_CBC_SHA
# Enable strict CBC padding
# https://www-01.ibm.com/support/docview.wss?uid=swg21692502
SSLAttributeSet 471 1
Header add Strict-Transport-Security "max-age=15768000"
06. Redirect All Traffic To
HTTPS
06. Redirect All Traffic To
HTTPS
●
httpd.conf
LoadModule rewrite_module
modules/mod_rewrite.so
RewriteEngine on
RewriteRule ^(.*)
https://social.example.com/$1/
[R,L]
<IfModule mod_ibm_ssl.c>
...
07. File Downloads Through
IBM HTTP Server
•
Improves performance significantly
•
Available for files stored in
– Activities
– Files
– Libraries
– Mobile
– Wikis
•
Advanced Setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/install/t_install_post_files_downloads.dita?lang=en
08. Add A Reverse Caching
Proxy
•
„Optional“ configuration
•
Improves performance, especially
over wide area networks (WAN)
•
Lots of options:
– WebSphere Edge Components
– Nginx
– Varnish
– Apache
– Squid
09. Push Notifications for
Mobile
•
Notifications are sent, when the
following events occur:
– The user is invited to join a community.
– The user is invited to join a person's
network.
– A task is assigned to the user.
– A user is @mentioned.
– A comment is added to content that the
user owns.
– A synced file is modified on the server and
updated on the user's mobile device.
09. Push Notifications for
Mobile
•
The following ports must be open on
each node in the cluster where the
Mobile application is installed:
– Android
●
Port 443 (HTTPS only)
– iOS
●
Ports 2195 and 2196
09. Push Notifications for
Mobile
•
Check out & edit mobile-config.xml
•
<Push enabled="true">
•
<RememberPassword>true</Remem
berPassword>
...
•
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/overview/t_configure_push-note_mobile.dita?lang=en
10. Email-Notification
Sender
•
Default: generic email address, such
as connections-admin@example.com
•
Displayname and Email-Address can
be changed
•
Globally or per app
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_act_managing_notifications.dita?lang=en
10. Email-Notification
Sender
•
notification-config.xml
<properties>
<property name="globalSenderName">IBM
Connections Administrator</property>
<property name="globalSenderEmail
Address">global-admin@example.com
</property>
</properties>
11. Email-Notification
Mobile Links
•
Not included by default
•
Adds link to notification that opens in
mobile Connections app
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_notifications_include_mobile_links.dita?
lang=en
11. Email-Notification
Mobile Links
•
notification-config.xml
•
<properties>
•
...
<includeMobileLinksInNotifications>
true</includeMobileLinksInNotificati
ons>
•
...
•
</properties>
12. Email-Notification
TLS Links
•
Per default E-Mail Notifications
contain only http links
•
Today, Connections should be https
only
•
Easy setup
LotusConnections-config.xml:
<forceConfidentialCommunications enabled="true"/>
12. Email-Notification
TLS Links
•
LotusConnections-config.xml
•
<forceConfidentialCommunications
enabled="true"/>
13. Add Search Languages
•
Not everyone speaks & creates
english-only conten
•
You can have multiple languages
•
You have to define one primary
language
•
Recreate Searchindex after adding
languages
13. Add Search Languages
wsadmin -lang jython -user wasadmin -password [PWD]
execfile("searchAdmin.py")
SearchCellConfig.checkOutConfig("D:/temp",
"ic-cell")
SearchCellConfig.enableDictionary("fr",
"${SEARCH_DICTIONARY_DIR}")
SearchCellConfig.enableDictionary("de",
"${SEARCH_DICTIONARY_DIR}")
SearchCellConfig.enableDictionary("it",
"${SEARCH_DICTIONARY_DIR}")
SearchCellConfig.setDefaultDictionary("de")
SearchCellConfig.checkInConfig("D:/temp", "ic-cell")
14. More Language Related
Search Settings
•
For better multilingual support set
•
search.ignore.punctuation.enabled
•
search.language.sensitivity.enabled
•
oneToTwoMapping.enabled
14. More Language Related
Search Settings
•
Set via wsadmin command
LCConfigService.updateConfig()
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/r_admin_common_props_wsadmin.dita?lang=en
15. Enable User To Set
Language Preference
15. Enable User To Set
Language Preference
•
Default: User interface is displayed in
the language set by the locale
settings of the web browser.
•
Easy Setup:
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_common_enable_lang_change.dita?
lang=en
15. Enable User To Set
Language Preference
•
LotusConnections-config.xml
<languageSelector cookieDomain=""
cookieName="" defaultLanguage=""
enabled="true"usePermanentCookie
="false">
<language lang="en">English</language>
<language lang="de">Deutsch</language>
<language
lang="fr">Franu00e7ais</language>
</languageSelector>
16. Enable URL Preview
16. Enable URL Preview
•
Connections (WAS) needs to be able
to access „The Internet“
•
Can facilitate a Proxy
•
Easy to set-up
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_news_url_preview_config.dita?lang=en
17. Enable Sync For Files
17. Enable Sync For Files
•
Not always enabled by default, so
verify
•
Enable before deploying the Client-
Plugin
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_enabling_file_sync.dita?lang=en
17. Enable Sync For Files
•
files-config.xml
<fileSync enabled="true">
<clientDownloadLink enabled="true"
url="http://public.dhe.ibm.com/
software/dw/ibm/connections/IBMConnec
tionsMSDesktop.zip"/>
<autoVersioning enabled="true"/>
</fileSync>
18. Enable Sync For Mobile
18. Enable Sync For Mobile
•
Not enabled by default
•
Consider enabling file download via
IHS beforehand
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/overview/t_configure_FileSync.dita?lang=en
18. Enable Sync For Mobile
•
mobile-config.xml
<FileSync enabled="true">
<InactiveDevicesPurgeThreshold>180</I
nactiveDevicesPurgeThreshold>
<AutoSync>true</AutoSync>
</FileSync>
19. Enable Round-Trip
Editing For Files
19. Enable Round-Trip
Editing For Files
●
Not enabled by default.
●
Enable before deploying the Client-
Plugin
●
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin/
admin/t_admin_enabling_roundtrip_edit.dita?lang=en
20. Modify Maximum File
and Library Size
Default maximum file size is 512 MB
•
Default personal library: 512 MB
•
Default Community library: 512 MB
•
•
There are limits for files in Wikis,
Activities, … as well, but try to
educate your users to store files in
„Files“
20. Modify Maximum File
and Library Size
•
Change via FilesPolicyService
•
Modify „Default Policy“
•
Create new policies for different user
groups
•
Numbers > 2GB must add an "L"!
eg: 2GB are given as „2147483648L“
•
Easy setup:
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_files_library_maxsize.dita?lang=en
21. Assigning tasks to
multiple people
•
Marked as completed when all
assigned users mark the item
complete
•
An activity owner can also mark the
activity complete
21. Assigning tasks to
multiple people
•
Disabled by default
•
Watch out for „side-effects“ with
Notes-Plugin and mobile apps.
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/r_admin_activities_props.dita?lang=en
21. Assigning tasks to
multiple people
•
oa-config.xml
<property
name="feature.multiAssignment.enabled
">true</property>"
25. Community Events
Default View
25. Community Events
Default View
•
widgets-config.xml file:
<widgetDef defId="Calendar"
...
<item name="defaultView"
value="grid" />
•
Easy setup
http://www.lbenitez.com/2013/11/tip-how-to-change-
default-view-of.html
24. Default Widgets For
Communities
24. Default Widgets For
Communities
widget-config.xml
<template id="default">
<widgetInstance uiLocation="col2statusposts"
defIdRef="StatusUpdates"
instanceId="StatusUpdates1"/>
<widgetInstance uiLocation="col2" defIdRef="Forum"
instanceId="ForumInstance1"/>
<widgetInstance uiLocation="col2"
defIdRef="Bookmarks"
instanceId="BookmarksInstance1"/>
<widgetInstance uiLocation="col2" defIdRef="Files"
instanceId="FilesInstance1"/>
</template>
24. Default Widgets For
Communities
widget-config.xml
<template id="default">
<widgetInstance uiLocation="col2statusposts"
defIdRef="StatusUpdates"
instanceId="StatusUpdates1"/>
<widgetInstance uiLocation="col2"
defIdRef="Calendar" instanceId="CalendarInstance1"/>
<widgetInstance uiLocation="col2" defIdRef="Forum"
instanceId="ForumInstance1"/>
<widgetInstance uiLocation="col2"
defIdRef="Bookmarks"
instanceId="BookmarksInstance1"/>
<widgetInstance uiLocation="col2" defIdRef="Files"
instanceId="FilesInstance1"/>
</template>
24. Default Widgets For
Communities
24. Default Widgets For
Communities
•
Easy Setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/t_admin_communities_change_default_widgets.dita?
lang=en
22. Table Of Contents
Macro for Wikis
22. Table Of Contents
Macro for Wikis
•
Disabled by default
•
Room for improvement
•
Option for more macros
•
Support?
•
Easy Setup
http://www.stoeps.de/activate-customize-table-of-contents-
macro-in-ibm-connections-wiki/
23. Wiki Syntax Tab
23. Wiki Syntax Tab
Disabled by default
•
Enable in wikis-config.xml via
editor.wikitexttab.enabled
•
Easy Setup:
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/admin/r_admin_wikis_config_properties2.dita?lang=en
26. Community Activities
View
26. Community Activities
View
•
oa-config.xml file:
<properties>
<property name=
"feature.communityActivitiesView.
enabled">true</property>
</properties>
•
Easy setup
http://www.lbenitez.com/2013/11/tip-how-to-change-
default-view-of.html
27. Microbrowser Support
27. Microbrowser Support
•
Not enabled by default
•
Renders Connections for mobile
device webbrowsers
•
Useful when the mobile App is not
available
•
Easy setup
http://www-
01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin
/overview/c_use_microbrowser.dita?lang=en
28. Bonus Tip:
App Password
•
Check out the Social Connecions 9
session „IBM Connections – Beyond a
standard installation – Fasten your
seatbelt!“
by Maik Weber and Stefan Heßler for
details.
Links
•
Connections Administration &
Scripting 101
http://scripting101.org/
•
IBM Connections V5 CR1 Tuning
guide
http://www-
10.lotus.com/ldd/lcwiki.nsf/dx/IBM_Connection
_V5_CR1_Tuning_guide
Questions
Sjaak Ursinus
Ilionx
Twitter → sursinus
Skype → sursinus
Linkedin → www.linkedin.com/in/sursinus
Various other social website’s
Martin Leyrer
IBM Austria
E-mail: martin.leyrer@at.ibm.com
Twitter: http://www.twitter.com/leyrer
Blog: http://www.leyon.at
Slideshare:
http://www.slideshare.net/Martin.Leyrer
END

More Related Content

What's hot

KoprowskiT-Difinify2017-SQL_Security_In_The_Cloud
KoprowskiT-Difinify2017-SQL_Security_In_The_CloudKoprowskiT-Difinify2017-SQL_Security_In_The_Cloud
KoprowskiT-Difinify2017-SQL_Security_In_The_CloudTobias Koprowski
 
NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...
NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...
NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...Cisco DevNet
 
EBS in an hour: Build a Vision instance - FAST - in Oracle Virtualbox
EBS in an hour: Build a Vision instance - FAST - in Oracle VirtualboxEBS in an hour: Build a Vision instance - FAST - in Oracle Virtualbox
EBS in an hour: Build a Vision instance - FAST - in Oracle Virtualboxjpiwowar
 
What’s new in SharePoint 2016 Beta 2?
What’s new in SharePoint 2016 Beta 2?What’s new in SharePoint 2016 Beta 2?
What’s new in SharePoint 2016 Beta 2?Jason Himmelstein
 
Cooking with Chef on Windows: 2015 Edition
Cooking with Chef on Windows: 2015 EditionCooking with Chef on Windows: 2015 Edition
Cooking with Chef on Windows: 2015 EditionJulian Dunn
 
Cloud computing 3702
Cloud computing 3702Cloud computing 3702
Cloud computing 3702Jess Coburn
 
Chef and PowerShell Desired State Configuration
Chef and PowerShell Desired State ConfigurationChef and PowerShell Desired State Configuration
Chef and PowerShell Desired State ConfigurationJulian Dunn
 
Pitfalls of Migration to SharePoint 2010
Pitfalls of Migration to SharePoint 2010Pitfalls of Migration to SharePoint 2010
Pitfalls of Migration to SharePoint 2010Dan Usher
 
Windows Loves Drupal
Windows Loves DrupalWindows Loves Drupal
Windows Loves DrupalAcquia
 
MySQL Security and Standardization at PayPal - Percona Live 2019
MySQL Security and Standardization at PayPal - Percona Live 2019MySQL Security and Standardization at PayPal - Percona Live 2019
MySQL Security and Standardization at PayPal - Percona Live 2019Yashada Jadhav
 
Stacki at the Seattle Scalability Meetup
Stacki at the Seattle Scalability MeetupStacki at the Seattle Scalability Meetup
Stacki at the Seattle Scalability MeetupStackIQ
 
Iis it-slideshares.blogspot.com
Iis it-slideshares.blogspot.comIis it-slideshares.blogspot.com
Iis it-slideshares.blogspot.comphanleson
 
Hosting Web Sites on Microsoft Small Business Server 2000
Hosting Web Sites on Microsoft Small Business Server 2000 Hosting Web Sites on Microsoft Small Business Server 2000
Hosting Web Sites on Microsoft Small Business Server 2000 webhostingguy
 
AEM (CQ) Dispatcher Security and CDN+Browser Caching
AEM (CQ) Dispatcher Security and CDN+Browser CachingAEM (CQ) Dispatcher Security and CDN+Browser Caching
AEM (CQ) Dispatcher Security and CDN+Browser CachingAndrew Khoury
 
Jurijs Velikanovs Direct NFS - Why and How?
Jurijs Velikanovs Direct NFS - Why and How?Jurijs Velikanovs Direct NFS - Why and How?
Jurijs Velikanovs Direct NFS - Why and How?Andrejs Vorobjovs
 
Cooking on Windows without the Windows Cookbook
Cooking on Windows without the Windows CookbookCooking on Windows without the Windows Cookbook
Cooking on Windows without the Windows CookbookChef Software, Inc.
 

What's hot (20)

KoprowskiT-Difinify2017-SQL_Security_In_The_Cloud
KoprowskiT-Difinify2017-SQL_Security_In_The_CloudKoprowskiT-Difinify2017-SQL_Security_In_The_Cloud
KoprowskiT-Difinify2017-SQL_Security_In_The_Cloud
 
NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...
NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...
NetDevOps for the Network Dude: How to get started with API's, Ansible and Py...
 
EBS in an hour: Build a Vision instance - FAST - in Oracle Virtualbox
EBS in an hour: Build a Vision instance - FAST - in Oracle VirtualboxEBS in an hour: Build a Vision instance - FAST - in Oracle Virtualbox
EBS in an hour: Build a Vision instance - FAST - in Oracle Virtualbox
 
What’s new in SharePoint 2016 Beta 2?
What’s new in SharePoint 2016 Beta 2?What’s new in SharePoint 2016 Beta 2?
What’s new in SharePoint 2016 Beta 2?
 
Cooking with Chef on Windows: 2015 Edition
Cooking with Chef on Windows: 2015 EditionCooking with Chef on Windows: 2015 Edition
Cooking with Chef on Windows: 2015 Edition
 
Cloud computing 3702
Cloud computing 3702Cloud computing 3702
Cloud computing 3702
 
Chef and PowerShell Desired State Configuration
Chef and PowerShell Desired State ConfigurationChef and PowerShell Desired State Configuration
Chef and PowerShell Desired State Configuration
 
EVOLVE'13 | Enhance | Permission Sensitive Caching | Paul McMahon & Jason Rap...
EVOLVE'13 | Enhance | Permission Sensitive Caching | Paul McMahon & Jason Rap...EVOLVE'13 | Enhance | Permission Sensitive Caching | Paul McMahon & Jason Rap...
EVOLVE'13 | Enhance | Permission Sensitive Caching | Paul McMahon & Jason Rap...
 
Pitfalls of Migration to SharePoint 2010
Pitfalls of Migration to SharePoint 2010Pitfalls of Migration to SharePoint 2010
Pitfalls of Migration to SharePoint 2010
 
Windows Loves Drupal
Windows Loves DrupalWindows Loves Drupal
Windows Loves Drupal
 
MySQL Security and Standardization at PayPal - Percona Live 2019
MySQL Security and Standardization at PayPal - Percona Live 2019MySQL Security and Standardization at PayPal - Percona Live 2019
MySQL Security and Standardization at PayPal - Percona Live 2019
 
SQL Server 2014 Backup to Azure - SQL Saturday CR 2015
SQL Server 2014 Backup to Azure - SQL Saturday CR 2015SQL Server 2014 Backup to Azure - SQL Saturday CR 2015
SQL Server 2014 Backup to Azure - SQL Saturday CR 2015
 
Stacki at the Seattle Scalability Meetup
Stacki at the Seattle Scalability MeetupStacki at the Seattle Scalability Meetup
Stacki at the Seattle Scalability Meetup
 
Web deploy
Web deployWeb deploy
Web deploy
 
Windows Loves drupal
Windows Loves drupalWindows Loves drupal
Windows Loves drupal
 
Iis it-slideshares.blogspot.com
Iis it-slideshares.blogspot.comIis it-slideshares.blogspot.com
Iis it-slideshares.blogspot.com
 
Hosting Web Sites on Microsoft Small Business Server 2000
Hosting Web Sites on Microsoft Small Business Server 2000 Hosting Web Sites on Microsoft Small Business Server 2000
Hosting Web Sites on Microsoft Small Business Server 2000
 
AEM (CQ) Dispatcher Security and CDN+Browser Caching
AEM (CQ) Dispatcher Security and CDN+Browser CachingAEM (CQ) Dispatcher Security and CDN+Browser Caching
AEM (CQ) Dispatcher Security and CDN+Browser Caching
 
Jurijs Velikanovs Direct NFS - Why and How?
Jurijs Velikanovs Direct NFS - Why and How?Jurijs Velikanovs Direct NFS - Why and How?
Jurijs Velikanovs Direct NFS - Why and How?
 
Cooking on Windows without the Windows Cookbook
Cooking on Windows without the Windows CookbookCooking on Windows without the Windows Cookbook
Cooking on Windows without the Windows Cookbook
 

Viewers also liked

No, I’m not retired!
No, I’m not retired!No, I’m not retired!
No, I’m not retired!LetsConnect
 
Enrich your customer experience by socialising it using IBM Connections
Enrich your customer experience by socialising it using IBM Connections Enrich your customer experience by socialising it using IBM Connections
Enrich your customer experience by socialising it using IBM Connections LetsConnect
 
Accelerate social adoption social connections 2015
Accelerate social adoption social connections 2015Accelerate social adoption social connections 2015
Accelerate social adoption social connections 2015LetsConnect
 
How connected systems are transforming the Future of Work
How connected systems are transforming the Future of Work How connected systems are transforming the Future of Work
How connected systems are transforming the Future of Work LetsConnect
 
Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...
Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...
Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...LetsConnect
 
The Butterfly Effect – or how you can measure and improve business productivity
The Butterfly Effect – or how you can measure and improve business productivity The Butterfly Effect – or how you can measure and improve business productivity
The Butterfly Effect – or how you can measure and improve business productivity LetsConnect
 
10 insights to foster enterprise social adoption, that you already know
10 insights to foster enterprise social adoption, that you already know10 insights to foster enterprise social adoption, that you already know
10 insights to foster enterprise social adoption, that you already knowLetsConnect
 
IBM Connections Antipatterns
IBM Connections AntipatternsIBM Connections Antipatterns
IBM Connections AntipatternsLetsConnect
 
Viral Adoption of Connections via Activities - Increase User Productivity and...
Viral Adoption of Connections via Activities - Increase User Productivity and...Viral Adoption of Connections via Activities - Increase User Productivity and...
Viral Adoption of Connections via Activities - Increase User Productivity and...LetsConnect
 
Auto-create activities – Let’s get rid of checklists
Auto-create activities – Let’s get rid of checklistsAuto-create activities – Let’s get rid of checklists
Auto-create activities – Let’s get rid of checklistsLetsConnect
 
From Social What to Social WOW! How to design social user experiences that ma...
From Social What to Social WOW! How to design social user experiences that ma...From Social What to Social WOW! How to design social user experiences that ma...
From Social What to Social WOW! How to design social user experiences that ma...LetsConnect
 
What’s Coming in IBM Connections Next?
What’s Coming in IBM Connections Next? What’s Coming in IBM Connections Next?
What’s Coming in IBM Connections Next? LetsConnect
 
Managing Meeting Minutes – A concept for a Connections addon
Managing Meeting Minutes – A concept for a Connections addonManaging Meeting Minutes – A concept for a Connections addon
Managing Meeting Minutes – A concept for a Connections addonLetsConnect
 
Using IBM Domino Data in IBM Connections – a real life story
Using IBM Domino Data in IBM Connections – a real life storyUsing IBM Domino Data in IBM Connections – a real life story
Using IBM Domino Data in IBM Connections – a real life storyLetsConnect
 
The anatomy of the perfect collaboration use case
The anatomy of the perfect collaboration use caseThe anatomy of the perfect collaboration use case
The anatomy of the perfect collaboration use caseLetsConnect
 
Rock the ActivityStream API
Rock the ActivityStream APIRock the ActivityStream API
Rock the ActivityStream APILetsConnect
 
OAuth 2.0 for developers – the technology you need but never really learned
OAuth 2.0 for developers – the technology you need but never really learnedOAuth 2.0 for developers – the technology you need but never really learned
OAuth 2.0 for developers – the technology you need but never really learnedLetsConnect
 
Extend and Surround – how to integrate IBM Software at customers using Adobe ...
Extend and Surround – how to integrate IBM Software at customers using Adobe ...Extend and Surround – how to integrate IBM Software at customers using Adobe ...
Extend and Surround – how to integrate IBM Software at customers using Adobe ...LetsConnect
 
Internal crowdsourcing @ Bosch – The why and the how
Internal crowdsourcing @ Bosch – The why and the howInternal crowdsourcing @ Bosch – The why and the how
Internal crowdsourcing @ Bosch – The why and the howLetsConnect
 

Viewers also liked (19)

No, I’m not retired!
No, I’m not retired!No, I’m not retired!
No, I’m not retired!
 
Enrich your customer experience by socialising it using IBM Connections
Enrich your customer experience by socialising it using IBM Connections Enrich your customer experience by socialising it using IBM Connections
Enrich your customer experience by socialising it using IBM Connections
 
Accelerate social adoption social connections 2015
Accelerate social adoption social connections 2015Accelerate social adoption social connections 2015
Accelerate social adoption social connections 2015
 
How connected systems are transforming the Future of Work
How connected systems are transforming the Future of Work How connected systems are transforming the Future of Work
How connected systems are transforming the Future of Work
 
Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...
Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...
Win, Win, Win: Changing Attitudes, Adopting Social and Going Green – A Custom...
 
The Butterfly Effect – or how you can measure and improve business productivity
The Butterfly Effect – or how you can measure and improve business productivity The Butterfly Effect – or how you can measure and improve business productivity
The Butterfly Effect – or how you can measure and improve business productivity
 
10 insights to foster enterprise social adoption, that you already know
10 insights to foster enterprise social adoption, that you already know10 insights to foster enterprise social adoption, that you already know
10 insights to foster enterprise social adoption, that you already know
 
IBM Connections Antipatterns
IBM Connections AntipatternsIBM Connections Antipatterns
IBM Connections Antipatterns
 
Viral Adoption of Connections via Activities - Increase User Productivity and...
Viral Adoption of Connections via Activities - Increase User Productivity and...Viral Adoption of Connections via Activities - Increase User Productivity and...
Viral Adoption of Connections via Activities - Increase User Productivity and...
 
Auto-create activities – Let’s get rid of checklists
Auto-create activities – Let’s get rid of checklistsAuto-create activities – Let’s get rid of checklists
Auto-create activities – Let’s get rid of checklists
 
From Social What to Social WOW! How to design social user experiences that ma...
From Social What to Social WOW! How to design social user experiences that ma...From Social What to Social WOW! How to design social user experiences that ma...
From Social What to Social WOW! How to design social user experiences that ma...
 
What’s Coming in IBM Connections Next?
What’s Coming in IBM Connections Next? What’s Coming in IBM Connections Next?
What’s Coming in IBM Connections Next?
 
Managing Meeting Minutes – A concept for a Connections addon
Managing Meeting Minutes – A concept for a Connections addonManaging Meeting Minutes – A concept for a Connections addon
Managing Meeting Minutes – A concept for a Connections addon
 
Using IBM Domino Data in IBM Connections – a real life story
Using IBM Domino Data in IBM Connections – a real life storyUsing IBM Domino Data in IBM Connections – a real life story
Using IBM Domino Data in IBM Connections – a real life story
 
The anatomy of the perfect collaboration use case
The anatomy of the perfect collaboration use caseThe anatomy of the perfect collaboration use case
The anatomy of the perfect collaboration use case
 
Rock the ActivityStream API
Rock the ActivityStream APIRock the ActivityStream API
Rock the ActivityStream API
 
OAuth 2.0 for developers – the technology you need but never really learned
OAuth 2.0 for developers – the technology you need but never really learnedOAuth 2.0 for developers – the technology you need but never really learned
OAuth 2.0 for developers – the technology you need but never really learned
 
Extend and Surround – how to integrate IBM Software at customers using Adobe ...
Extend and Surround – how to integrate IBM Software at customers using Adobe ...Extend and Surround – how to integrate IBM Software at customers using Adobe ...
Extend and Surround – how to integrate IBM Software at customers using Adobe ...
 
Internal crowdsourcing @ Bosch – The why and the how
Internal crowdsourcing @ Bosch – The why and the howInternal crowdsourcing @ Bosch – The why and the how
Internal crowdsourcing @ Bosch – The why and the how
 

Similar to The Latest, Ultimative Final Version, Current Release, Approved, Last Minute Changes Included Post-Installation Checklist

SharePoint On-Premises Nirvana
SharePoint On-Premises NirvanaSharePoint On-Premises Nirvana
SharePoint On-Premises NirvanaJohn Calvert
 
Prescriptive System Security with InSpec
Prescriptive System Security with InSpecPrescriptive System Security with InSpec
Prescriptive System Security with InSpecAll Things Open
 
Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019Mandi Walls
 
Build Automation of PHP Applications
Build Automation of PHP ApplicationsBuild Automation of PHP Applications
Build Automation of PHP ApplicationsPavan Kumar N
 
Splunk: Forward me the REST of those shells
Splunk: Forward me the REST of those shellsSplunk: Forward me the REST of those shells
Splunk: Forward me the REST of those shellsAnthony D Hendricks
 
Standardizing and Managing Your Infrastructure - MOSC 2011
Standardizing and Managing Your Infrastructure - MOSC 2011Standardizing and Managing Your Infrastructure - MOSC 2011
Standardizing and Managing Your Infrastructure - MOSC 2011Brian Ritchie
 
Build A Cloud Day London - Introduction
Build A Cloud Day London - IntroductionBuild A Cloud Day London - Introduction
Build A Cloud Day London - IntroductionShapeBlue
 
Seven steps to better security
Seven steps to better securitySeven steps to better security
Seven steps to better securityMichael Pignataro
 
Python in the serverless era (PyCon 2017)
Python in the serverless era (PyCon 2017)Python in the serverless era (PyCon 2017)
Python in the serverless era (PyCon 2017)Benny Bauer
 
REST in Piece - Administration of an Oracle Cluster/Database using REST
REST in Piece - Administration of an Oracle Cluster/Database using RESTREST in Piece - Administration of an Oracle Cluster/Database using REST
REST in Piece - Administration of an Oracle Cluster/Database using RESTChristian Gohmann
 
Cloud patterns applied
Cloud patterns appliedCloud patterns applied
Cloud patterns appliedLars Fronius
 
SharePoint 2014: Where to save my data, for devs!
SharePoint 2014: Where to save my data, for devs!SharePoint 2014: Where to save my data, for devs!
SharePoint 2014: Where to save my data, for devs!Ben Steinhauser
 
IBM Think 2018 - IBM Connections Troubleshooting
IBM Think 2018 -  IBM Connections TroubleshootingIBM Think 2018 -  IBM Connections Troubleshooting
IBM Think 2018 - IBM Connections TroubleshootingNico Meisenzahl
 
Moving from SBS to Azure
Moving from SBS to AzureMoving from SBS to Azure
Moving from SBS to AzureRobert Crane
 
Saving Time And Effort With QuickBase Api - Sergio Haro
Saving Time And Effort With QuickBase Api - Sergio HaroSaving Time And Effort With QuickBase Api - Sergio Haro
Saving Time And Effort With QuickBase Api - Sergio HaroQuickBase, Inc.
 
Sa106 – practical solutions for connections administrators
Sa106 – practical solutions for connections administratorsSa106 – practical solutions for connections administrators
Sa106 – practical solutions for connections administratorsSharon James
 
Adm02. IBM Connections Adminblast
Adm02. IBM Connections AdminblastAdm02. IBM Connections Adminblast
Adm02. IBM Connections Adminblastpanagenda
 
InSpec For DevOpsDays Amsterdam 2017
InSpec For DevOpsDays Amsterdam 2017InSpec For DevOpsDays Amsterdam 2017
InSpec For DevOpsDays Amsterdam 2017Mandi Walls
 
Presentation to SAIT Students - Dec 2013
Presentation to SAIT Students - Dec 2013Presentation to SAIT Students - Dec 2013
Presentation to SAIT Students - Dec 2013Think Media Inc.
 

Similar to The Latest, Ultimative Final Version, Current Release, Approved, Last Minute Changes Included Post-Installation Checklist (20)

SharePoint On-Premises Nirvana
SharePoint On-Premises NirvanaSharePoint On-Premises Nirvana
SharePoint On-Premises Nirvana
 
Prescriptive System Security with InSpec
Prescriptive System Security with InSpecPrescriptive System Security with InSpec
Prescriptive System Security with InSpec
 
Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019Prescriptive Security with InSpec - All Things Open 2019
Prescriptive Security with InSpec - All Things Open 2019
 
Build Automation of PHP Applications
Build Automation of PHP ApplicationsBuild Automation of PHP Applications
Build Automation of PHP Applications
 
ITB2017 - Keynote
ITB2017 - KeynoteITB2017 - Keynote
ITB2017 - Keynote
 
Splunk: Forward me the REST of those shells
Splunk: Forward me the REST of those shellsSplunk: Forward me the REST of those shells
Splunk: Forward me the REST of those shells
 
Standardizing and Managing Your Infrastructure - MOSC 2011
Standardizing and Managing Your Infrastructure - MOSC 2011Standardizing and Managing Your Infrastructure - MOSC 2011
Standardizing and Managing Your Infrastructure - MOSC 2011
 
Build A Cloud Day London - Introduction
Build A Cloud Day London - IntroductionBuild A Cloud Day London - Introduction
Build A Cloud Day London - Introduction
 
Seven steps to better security
Seven steps to better securitySeven steps to better security
Seven steps to better security
 
Python in the serverless era (PyCon 2017)
Python in the serverless era (PyCon 2017)Python in the serverless era (PyCon 2017)
Python in the serverless era (PyCon 2017)
 
REST in Piece - Administration of an Oracle Cluster/Database using REST
REST in Piece - Administration of an Oracle Cluster/Database using RESTREST in Piece - Administration of an Oracle Cluster/Database using REST
REST in Piece - Administration of an Oracle Cluster/Database using REST
 
Cloud patterns applied
Cloud patterns appliedCloud patterns applied
Cloud patterns applied
 
SharePoint 2014: Where to save my data, for devs!
SharePoint 2014: Where to save my data, for devs!SharePoint 2014: Where to save my data, for devs!
SharePoint 2014: Where to save my data, for devs!
 
IBM Think 2018 - IBM Connections Troubleshooting
IBM Think 2018 -  IBM Connections TroubleshootingIBM Think 2018 -  IBM Connections Troubleshooting
IBM Think 2018 - IBM Connections Troubleshooting
 
Moving from SBS to Azure
Moving from SBS to AzureMoving from SBS to Azure
Moving from SBS to Azure
 
Saving Time And Effort With QuickBase Api - Sergio Haro
Saving Time And Effort With QuickBase Api - Sergio HaroSaving Time And Effort With QuickBase Api - Sergio Haro
Saving Time And Effort With QuickBase Api - Sergio Haro
 
Sa106 – practical solutions for connections administrators
Sa106 – practical solutions for connections administratorsSa106 – practical solutions for connections administrators
Sa106 – practical solutions for connections administrators
 
Adm02. IBM Connections Adminblast
Adm02. IBM Connections AdminblastAdm02. IBM Connections Adminblast
Adm02. IBM Connections Adminblast
 
InSpec For DevOpsDays Amsterdam 2017
InSpec For DevOpsDays Amsterdam 2017InSpec For DevOpsDays Amsterdam 2017
InSpec For DevOpsDays Amsterdam 2017
 
Presentation to SAIT Students - Dec 2013
Presentation to SAIT Students - Dec 2013Presentation to SAIT Students - Dec 2013
Presentation to SAIT Students - Dec 2013
 

More from LetsConnect

Installing Component Pack 6.0.0.6
Installing Component Pack 6.0.0.6Installing Component Pack 6.0.0.6
Installing Component Pack 6.0.0.6LetsConnect
 
Oh $h@# - How to deal with emotional outbursts and hate in social situations
Oh $h@# - How to deal with emotional outbursts and hate in social situationsOh $h@# - How to deal with emotional outbursts and hate in social situations
Oh $h@# - How to deal with emotional outbursts and hate in social situationsLetsConnect
 
It is not About Connections vs Office 365 - You can have the best of the both...
It is not About Connections vs Office 365 - You can have the best of the both...It is not About Connections vs Office 365 - You can have the best of the both...
It is not About Connections vs Office 365 - You can have the best of the both...LetsConnect
 
Using ibm connections to enhance university courses
Using ibm connections to enhance university coursesUsing ibm connections to enhance university courses
Using ibm connections to enhance university coursesLetsConnect
 
IBM Connections 6 Component Pack
IBM Connections 6 Component PackIBM Connections 6 Component Pack
IBM Connections 6 Component PackLetsConnect
 
IBM Connections 6.0 CR3 New Features
IBM Connections 6.0 CR3 New FeaturesIBM Connections 6.0 CR3 New Features
IBM Connections 6.0 CR3 New FeaturesLetsConnect
 
10 years of IBM Connections
10 years of IBM Connections10 years of IBM Connections
10 years of IBM ConnectionsLetsConnect
 
IBM Collaboration Framework in action: Customer success stories
IBM Collaboration Framework in action: Customer success storiesIBM Collaboration Framework in action: Customer success stories
IBM Collaboration Framework in action: Customer success storiesLetsConnect
 
Design for the Digital Workspace
Design for the Digital WorkspaceDesign for the Digital Workspace
Design for the Digital WorkspaceLetsConnect
 
New Ways to Deliver Business Outcomes with INtelligent Workstream Collaboration
New Ways to Deliver Business Outcomes with INtelligent Workstream CollaborationNew Ways to Deliver Business Outcomes with INtelligent Workstream Collaboration
New Ways to Deliver Business Outcomes with INtelligent Workstream CollaborationLetsConnect
 
Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...
Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...
Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...LetsConnect
 
There is nothing more practical than a good theory
There is nothing more practical than a good theoryThere is nothing more practical than a good theory
There is nothing more practical than a good theoryLetsConnect
 
Kubernetes Basics for Connections Admins
Kubernetes Basics for Connections AdminsKubernetes Basics for Connections Admins
Kubernetes Basics for Connections AdminsLetsConnect
 
Intelligent Collaboration driving Digital Transformation
Intelligent Collaboration driving Digital TransformationIntelligent Collaboration driving Digital Transformation
Intelligent Collaboration driving Digital TransformationLetsConnect
 
Developing IBM Connections Community Apps using Domino
Developing IBM Connections Community Apps using DominoDeveloping IBM Connections Community Apps using Domino
Developing IBM Connections Community Apps using DominoLetsConnect
 
IBM Connections - Have it YOUR Way!
IBM Connections - Have it YOUR Way!IBM Connections - Have it YOUR Way!
IBM Connections - Have it YOUR Way!LetsConnect
 
You Get What You Give
You Get What You GiveYou Get What You Give
You Get What You GiveLetsConnect
 
Building Custom ibm Watson Workspace Templates to make you and your team more...
Building Custom ibm Watson Workspace Templates to make you and your team more...Building Custom ibm Watson Workspace Templates to make you and your team more...
Building Custom ibm Watson Workspace Templates to make you and your team more...LetsConnect
 
ICS INtegration with Node-RED and Open Source
ICS INtegration with Node-RED and Open SourceICS INtegration with Node-RED and Open Source
ICS INtegration with Node-RED and Open SourceLetsConnect
 
Communities as the fundament of social learning
Communities as the fundament of social learningCommunities as the fundament of social learning
Communities as the fundament of social learningLetsConnect
 

More from LetsConnect (20)

Installing Component Pack 6.0.0.6
Installing Component Pack 6.0.0.6Installing Component Pack 6.0.0.6
Installing Component Pack 6.0.0.6
 
Oh $h@# - How to deal with emotional outbursts and hate in social situations
Oh $h@# - How to deal with emotional outbursts and hate in social situationsOh $h@# - How to deal with emotional outbursts and hate in social situations
Oh $h@# - How to deal with emotional outbursts and hate in social situations
 
It is not About Connections vs Office 365 - You can have the best of the both...
It is not About Connections vs Office 365 - You can have the best of the both...It is not About Connections vs Office 365 - You can have the best of the both...
It is not About Connections vs Office 365 - You can have the best of the both...
 
Using ibm connections to enhance university courses
Using ibm connections to enhance university coursesUsing ibm connections to enhance university courses
Using ibm connections to enhance university courses
 
IBM Connections 6 Component Pack
IBM Connections 6 Component PackIBM Connections 6 Component Pack
IBM Connections 6 Component Pack
 
IBM Connections 6.0 CR3 New Features
IBM Connections 6.0 CR3 New FeaturesIBM Connections 6.0 CR3 New Features
IBM Connections 6.0 CR3 New Features
 
10 years of IBM Connections
10 years of IBM Connections10 years of IBM Connections
10 years of IBM Connections
 
IBM Collaboration Framework in action: Customer success stories
IBM Collaboration Framework in action: Customer success storiesIBM Collaboration Framework in action: Customer success stories
IBM Collaboration Framework in action: Customer success stories
 
Design for the Digital Workspace
Design for the Digital WorkspaceDesign for the Digital Workspace
Design for the Digital Workspace
 
New Ways to Deliver Business Outcomes with INtelligent Workstream Collaboration
New Ways to Deliver Business Outcomes with INtelligent Workstream CollaborationNew Ways to Deliver Business Outcomes with INtelligent Workstream Collaboration
New Ways to Deliver Business Outcomes with INtelligent Workstream Collaboration
 
Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...
Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...
Power up your Salesforce Opportunities by using IBM Watson Workspace as your ...
 
There is nothing more practical than a good theory
There is nothing more practical than a good theoryThere is nothing more practical than a good theory
There is nothing more practical than a good theory
 
Kubernetes Basics for Connections Admins
Kubernetes Basics for Connections AdminsKubernetes Basics for Connections Admins
Kubernetes Basics for Connections Admins
 
Intelligent Collaboration driving Digital Transformation
Intelligent Collaboration driving Digital TransformationIntelligent Collaboration driving Digital Transformation
Intelligent Collaboration driving Digital Transformation
 
Developing IBM Connections Community Apps using Domino
Developing IBM Connections Community Apps using DominoDeveloping IBM Connections Community Apps using Domino
Developing IBM Connections Community Apps using Domino
 
IBM Connections - Have it YOUR Way!
IBM Connections - Have it YOUR Way!IBM Connections - Have it YOUR Way!
IBM Connections - Have it YOUR Way!
 
You Get What You Give
You Get What You GiveYou Get What You Give
You Get What You Give
 
Building Custom ibm Watson Workspace Templates to make you and your team more...
Building Custom ibm Watson Workspace Templates to make you and your team more...Building Custom ibm Watson Workspace Templates to make you and your team more...
Building Custom ibm Watson Workspace Templates to make you and your team more...
 
ICS INtegration with Node-RED and Open Source
ICS INtegration with Node-RED and Open SourceICS INtegration with Node-RED and Open Source
ICS INtegration with Node-RED and Open Source
 
Communities as the fundament of social learning
Communities as the fundament of social learningCommunities as the fundament of social learning
Communities as the fundament of social learning
 

Recently uploaded

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 

Recently uploaded (20)

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 

The Latest, Ultimative Final Version, Current Release, Approved, Last Minute Changes Included Post-Installation Checklist

  • 1. The Latest, Ultimative Final Ver­ sion, Current Release, Approved, Last Minute Changes Included Post-Installation Checklist Sjaak Ursinus ilionx Martin Leyrer IBM
  • 2. PLATINUM & CHAMPAGNE SPONSORS GOLD SPONSORS SILVER SPONSORS BRONZE SPONSORS
  • 3. Martin Leyrer - IBM • Working 5 years for IBM as an IT-Specialist • ICS product stack since 1995 • Twitter → leyrer • Linkedin → www.linkedin.com/in/leyrer ● Blog → www.leyon.at
  • 4. Sjaak Ursinus - ilionx • Working 11 Years for ilionx as a consultant • Working with IBM Connections since Jan 2007 • IBM Champion since start of program • Twitter → sursinus • Skype → sursinus • Linkedin → www.linkedin.com/in/sursinus • Various other social website’s
  • 5. Why ? • Even we forget things • Info is scattered across the Connections documentation • So far no singular check list has emerged • Overview of „optional“ configuration steps
  • 6. Disclaimer • NOT an installation guide • Probably incomplete • Biased towards what we think is useful • If you want to add something, please let us know
  • 7. 01. Increase Number of Open Files (Linux only) • default is: 1024 open files/process • recommended limit: 8192 • Martins recomendation: 65536 • „ulimit -n“ to check • To change, edit /etc/security/limits.conf icuser soft nofile 65536 icuser hard nofile 65536
  • 8. 02. JDBC Connection Pool Size • Initial WebSphere JDBC pool size: 10 connections/connection pool • Connections 5.0 CR1 Performance Tuning Guide has recommendations • Use scripts from „Connections Administration & Scripting 101“ to set automatically
  • 9. 03. JVM Heap Size • Connections needs „sufficient“ heap space, esp. Search • Connections 5.0 CR1 Performance Tuning Guide has recommendations • Use scripts from „Connections Administration & Scripting 101“ to set automatically
  • 10. 04. Change Websphere Default Log Language • Open Websphere Integrated Solution Console • Go to Servers->Server Types -> „Websphere application servers“ and select server you want to change • Server Infrastructure → Java and Process Management → Process definition → Additional properties → Java Virtual Machine • Add to “Generic JVM arguments”: -Duser.language=en -Duser.region=GB
  • 11. 05. Proper IHS TLS Settings SSLProtocolDisable SSLv2 SSLv3 SSLCompression off SSLCipherSpec ALL NONE SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 SSLCipherSpec TLSv12 TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 SSLCipherSpec ALL TLS_RSA_WITH_AES_128_GCM_SHA256 SSLCipherSpec ALL TLS_RSA_WITH_AES_256_GCM_SHA384 SSLCipherSpec ALL TLS_RSA_WITH_AES_128_CBC_SHA256 SSLCipherSpec ALL TLS_RSA_WITH_AES_256_CBC_SHA256 SSLCipherSpec ALL TLS_RSA_WITH_AES_128_CBC_SHA SSLCipherSpec ALL TLS_RSA_WITH_AES_256_CBC_SHA # Enable strict CBC padding # https://www-01.ibm.com/support/docview.wss?uid=swg21692502 SSLAttributeSet 471 1 Header add Strict-Transport-Security "max-age=15768000"
  • 12. 06. Redirect All Traffic To HTTPS
  • 13. 06. Redirect All Traffic To HTTPS ● httpd.conf LoadModule rewrite_module modules/mod_rewrite.so RewriteEngine on RewriteRule ^(.*) https://social.example.com/$1/ [R,L] <IfModule mod_ibm_ssl.c> ...
  • 14. 07. File Downloads Through IBM HTTP Server • Improves performance significantly • Available for files stored in – Activities – Files – Libraries – Mobile – Wikis • Advanced Setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /install/t_install_post_files_downloads.dita?lang=en
  • 15. 08. Add A Reverse Caching Proxy • „Optional“ configuration • Improves performance, especially over wide area networks (WAN) • Lots of options: – WebSphere Edge Components – Nginx – Varnish – Apache – Squid
  • 16. 09. Push Notifications for Mobile • Notifications are sent, when the following events occur: – The user is invited to join a community. – The user is invited to join a person's network. – A task is assigned to the user. – A user is @mentioned. – A comment is added to content that the user owns. – A synced file is modified on the server and updated on the user's mobile device.
  • 17. 09. Push Notifications for Mobile • The following ports must be open on each node in the cluster where the Mobile application is installed: – Android ● Port 443 (HTTPS only) – iOS ● Ports 2195 and 2196
  • 18. 09. Push Notifications for Mobile • Check out & edit mobile-config.xml • <Push enabled="true"> • <RememberPassword>true</Remem berPassword> ... • http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /overview/t_configure_push-note_mobile.dita?lang=en
  • 19. 10. Email-Notification Sender • Default: generic email address, such as connections-admin@example.com • Displayname and Email-Address can be changed • Globally or per app • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_act_managing_notifications.dita?lang=en
  • 20. 10. Email-Notification Sender • notification-config.xml <properties> <property name="globalSenderName">IBM Connections Administrator</property> <property name="globalSenderEmail Address">global-admin@example.com </property> </properties>
  • 21. 11. Email-Notification Mobile Links • Not included by default • Adds link to notification that opens in mobile Connections app • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_notifications_include_mobile_links.dita? lang=en
  • 23. 12. Email-Notification TLS Links • Per default E-Mail Notifications contain only http links • Today, Connections should be https only • Easy setup LotusConnections-config.xml: <forceConfidentialCommunications enabled="true"/>
  • 25. 13. Add Search Languages • Not everyone speaks & creates english-only conten • You can have multiple languages • You have to define one primary language • Recreate Searchindex after adding languages
  • 26. 13. Add Search Languages wsadmin -lang jython -user wasadmin -password [PWD] execfile("searchAdmin.py") SearchCellConfig.checkOutConfig("D:/temp", "ic-cell") SearchCellConfig.enableDictionary("fr", "${SEARCH_DICTIONARY_DIR}") SearchCellConfig.enableDictionary("de", "${SEARCH_DICTIONARY_DIR}") SearchCellConfig.enableDictionary("it", "${SEARCH_DICTIONARY_DIR}") SearchCellConfig.setDefaultDictionary("de") SearchCellConfig.checkInConfig("D:/temp", "ic-cell")
  • 27. 14. More Language Related Search Settings • For better multilingual support set • search.ignore.punctuation.enabled • search.language.sensitivity.enabled • oneToTwoMapping.enabled
  • 28. 14. More Language Related Search Settings • Set via wsadmin command LCConfigService.updateConfig() • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/r_admin_common_props_wsadmin.dita?lang=en
  • 29. 15. Enable User To Set Language Preference
  • 30. 15. Enable User To Set Language Preference • Default: User interface is displayed in the language set by the locale settings of the web browser. • Easy Setup: http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_common_enable_lang_change.dita? lang=en
  • 31. 15. Enable User To Set Language Preference • LotusConnections-config.xml <languageSelector cookieDomain="" cookieName="" defaultLanguage="" enabled="true"usePermanentCookie ="false"> <language lang="en">English</language> <language lang="de">Deutsch</language> <language lang="fr">Franu00e7ais</language> </languageSelector>
  • 32. 16. Enable URL Preview
  • 33. 16. Enable URL Preview • Connections (WAS) needs to be able to access „The Internet“ • Can facilitate a Proxy • Easy to set-up http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_news_url_preview_config.dita?lang=en
  • 34. 17. Enable Sync For Files
  • 35. 17. Enable Sync For Files • Not always enabled by default, so verify • Enable before deploying the Client- Plugin • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_enabling_file_sync.dita?lang=en
  • 36. 17. Enable Sync For Files • files-config.xml <fileSync enabled="true"> <clientDownloadLink enabled="true" url="http://public.dhe.ibm.com/ software/dw/ibm/connections/IBMConnec tionsMSDesktop.zip"/> <autoVersioning enabled="true"/> </fileSync>
  • 37. 18. Enable Sync For Mobile
  • 38. 18. Enable Sync For Mobile • Not enabled by default • Consider enabling file download via IHS beforehand • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /overview/t_configure_FileSync.dita?lang=en
  • 39. 18. Enable Sync For Mobile • mobile-config.xml <FileSync enabled="true"> <InactiveDevicesPurgeThreshold>180</I nactiveDevicesPurgeThreshold> <AutoSync>true</AutoSync> </FileSync>
  • 41. 19. Enable Round-Trip Editing For Files ● Not enabled by default. ● Enable before deploying the Client- Plugin ● Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin/ admin/t_admin_enabling_roundtrip_edit.dita?lang=en
  • 42. 20. Modify Maximum File and Library Size Default maximum file size is 512 MB • Default personal library: 512 MB • Default Community library: 512 MB • • There are limits for files in Wikis, Activities, … as well, but try to educate your users to store files in „Files“
  • 43. 20. Modify Maximum File and Library Size • Change via FilesPolicyService • Modify „Default Policy“ • Create new policies for different user groups • Numbers > 2GB must add an "L"! eg: 2GB are given as „2147483648L“ • Easy setup: http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_files_library_maxsize.dita?lang=en
  • 44. 21. Assigning tasks to multiple people • Marked as completed when all assigned users mark the item complete • An activity owner can also mark the activity complete
  • 45. 21. Assigning tasks to multiple people • Disabled by default • Watch out for „side-effects“ with Notes-Plugin and mobile apps. • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/r_admin_activities_props.dita?lang=en
  • 46. 21. Assigning tasks to multiple people • oa-config.xml <property name="feature.multiAssignment.enabled ">true</property>"
  • 48. 25. Community Events Default View • widgets-config.xml file: <widgetDef defId="Calendar" ... <item name="defaultView" value="grid" /> • Easy setup http://www.lbenitez.com/2013/11/tip-how-to-change- default-view-of.html
  • 49. 24. Default Widgets For Communities
  • 50. 24. Default Widgets For Communities widget-config.xml <template id="default"> <widgetInstance uiLocation="col2statusposts" defIdRef="StatusUpdates" instanceId="StatusUpdates1"/> <widgetInstance uiLocation="col2" defIdRef="Forum" instanceId="ForumInstance1"/> <widgetInstance uiLocation="col2" defIdRef="Bookmarks" instanceId="BookmarksInstance1"/> <widgetInstance uiLocation="col2" defIdRef="Files" instanceId="FilesInstance1"/> </template>
  • 51. 24. Default Widgets For Communities widget-config.xml <template id="default"> <widgetInstance uiLocation="col2statusposts" defIdRef="StatusUpdates" instanceId="StatusUpdates1"/> <widgetInstance uiLocation="col2" defIdRef="Calendar" instanceId="CalendarInstance1"/> <widgetInstance uiLocation="col2" defIdRef="Forum" instanceId="ForumInstance1"/> <widgetInstance uiLocation="col2" defIdRef="Bookmarks" instanceId="BookmarksInstance1"/> <widgetInstance uiLocation="col2" defIdRef="Files" instanceId="FilesInstance1"/> </template>
  • 52. 24. Default Widgets For Communities
  • 53. 24. Default Widgets For Communities • Easy Setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/t_admin_communities_change_default_widgets.dita? lang=en
  • 54. 22. Table Of Contents Macro for Wikis
  • 55. 22. Table Of Contents Macro for Wikis • Disabled by default • Room for improvement • Option for more macros • Support? • Easy Setup http://www.stoeps.de/activate-customize-table-of-contents- macro-in-ibm-connections-wiki/
  • 57. 23. Wiki Syntax Tab Disabled by default • Enable in wikis-config.xml via editor.wikitexttab.enabled • Easy Setup: http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /admin/r_admin_wikis_config_properties2.dita?lang=en
  • 59. 26. Community Activities View • oa-config.xml file: <properties> <property name= "feature.communityActivitiesView. enabled">true</property> </properties> • Easy setup http://www.lbenitez.com/2013/11/tip-how-to-change- default-view-of.html
  • 61. 27. Microbrowser Support • Not enabled by default • Renders Connections for mobile device webbrowsers • Useful when the mobile App is not available • Easy setup http://www- 01.ibm.com/support/knowledgecenter/SSYGQH_5.0.0/admin /overview/c_use_microbrowser.dita?lang=en
  • 62. 28. Bonus Tip: App Password • Check out the Social Connecions 9 session „IBM Connections – Beyond a standard installation – Fasten your seatbelt!“ by Maik Weber and Stefan Heßler for details.
  • 63. Links • Connections Administration & Scripting 101 http://scripting101.org/ • IBM Connections V5 CR1 Tuning guide http://www- 10.lotus.com/ldd/lcwiki.nsf/dx/IBM_Connection _V5_CR1_Tuning_guide
  • 64. Questions Sjaak Ursinus Ilionx Twitter → sursinus Skype → sursinus Linkedin → www.linkedin.com/in/sursinus Various other social website’s Martin Leyrer IBM Austria E-mail: martin.leyrer@at.ibm.com Twitter: http://www.twitter.com/leyrer Blog: http://www.leyon.at Slideshare: http://www.slideshare.net/Martin.Leyrer
  • 65. END