SlideShare a Scribd company logo
1 of 69
Download to read offline
ALEŠ LICHTENBERG
twitter: @a_lichtenberg
blog: www.alichtenberg.cz
HCL Sametime Meetings 11.5
+ Upgrade form 11.5 Pre-Release
Deployment on Docker
Step by Step
Ver. 1.0
Intro
The document does not replace official documentation.
The implementation will be demonstrated on a specific example.
The document will be gradually supplemented and updated.
Thank you for the practical installation advice:
Daniel Nashed – HCL Lifetime Ambassador : blog.nashcom.de
Roberto Boccadoro – HCL Ambassador : www.robertoboccadoro.com
1
About author
I am a technical consultant of HCL Digital Solutions software: Domino/Notes,
Sametime, Nomad, Verse. I am a Member of Czech Lotus User Group =
Sutol. I am a Bloger and a Speaker. I have been primarily engaged in the
Lotus software family since 1994. I remember the era when these products
were owned by Lotus, then IBM, and now I am looking forward to another
successful years with HCL Software.
Contacts:
e-mail: ales@alichtenberg.cz
twitter: a_lichtenberg
blog: alichtenberg.cz
2
Agenda
▪ HCL Sametime V11.x – Resources
▪ Pilot example
▪ Step 1 - Installation and configuration Linux Centos 7.4
▪ Step 2 - Installation Docker for HCL Sametime Meetings 11.5
▪ Step 3 - Installation HCL Sametime Meetings 11.5 to Docker
▪ Step 4 - Enable Sametime Community for HCL Sametime Meetings 11.5
▪ Step 5 - Enable Sametime Proxy for HCL Sametime Meetings 11.5
▪ Step 6 - Use HCL Sametime Meetings 11.5
▪ Step 7 - Updating the Sametime Meeting Server TLS Certificates
▪ Step 8 - Upgrade HCL Sametime Meetings V11.5 Pre-Release to 11.5 Premium
3
HCL Sametime V11.x – Resources
Current resources:
➢ Installation and Administration Guide
https://help.hcltechsw.com/sametime/11.5/admin/administrator_doc.html
➢ Installing & Configuring CentOS (for Domino)
https://www.slideshare.net/defaultxsp/installing-configuring-ibm-domino-9-on-centos
➢ HCL Customer Support
https://hclpnpsupport.hcltech.com/csm
➢ Knowledge DB
https://hclpnpsupport.hcltech.com/csm?id=search&spa=1&t=kb&q=sametime%20v11
➢ Discussion HCL Sametime
https://hclpnpsupport.hcltech.com/community?id=community_forum&sys_id=e3c946d01b80841077761fc58d4bcb04
4
Pilot example
This procedure builds on my previous Sametime V11.x installation guide. The prerequisite is
already implemented Sametime 11.5
Installation manual “HCL Sametime V11.0 – Step by step”:
https://alichtenberg.cz/my-installation-manual-hcl-sametime-v11-0-step-by-step-updated-for-fp2/
And next manual: „Upgrade HCL Sametime server 11.0 to 11.5“:
https://www2.slideshare.net/AleLichtenberg/upgrade-hcl-sametime-server-110-to-115
Deployment HCL Sametime Meetings 11.5 Release will take place onLinux Centos 7.4
Installed components:
• Docker for HCL Sametime Meetings 11.5 Release
• HCL Sametime Meetings 11.5
All components will be installed on one virtual machine.
5
Hardware required for this Pilot Example Deployment
Hardware:
✓ 8 core, 32 GB RAM, 80 GB Hard disk
Operation system:
✓ Centos 7.4.
Pre-Requisites
• Docker for HCL Sametime Meetings 11.5
• HCL Sametime Meetings 11.5
✓ FQDN for my Pilot example server: „meetings.kaiser.cz“
6
• What we need to install a HCL Sametime Meetings 11.5
Installation Packages
7
Step 1
Installation and configuration
Linux Centos 7.4
8
Installation Centos 7.4
Currently, HCL Sametime Meetings 11.5 is only supported for Docker running on Linux
For Centos installation 7.4. you can use part of a great step-by-step manual
by David Olson:
https://www.slideshare.net/defaultxsp/installing-configuring-ibm-domino-9-on-centos
9
Step 2
Installation
Docker
for
HCL Sametime Meetings 11.5
10
Installation Docker for HCL Sametime Meetings 11.5
What is Docker?
Docker is an open-source lightweight containerization technology. It allows you to
automate the deployment of applications in lightweight and portable containers and
ship it all out as one package. It also allows you to run multiple Operating systems on
the same host.
How to install Docker Engine: https://docs.docker.com/engine/install/centos
How to install Docker Compose: https://docs.docker.com/compose/install
11
• Log in with your Centos server as „root“ user and execute all commands under this
• Run the following commands for installationrequired Docker Engine packages:
yum install -y net-tools wget yum-utils device-mapper-persistent-data lvm2
12
Installation Docker for HCL Sametime Meetings 11.5
• Now run the following commands for add the docker repository for software downloads:
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
13
Installation Docker for HCL Sametime Meetings 11.5
• Install the latest version of Docker Engine and containerd:
yum install -y docker-ce docker-ce-cli containerd.io
14
Installation Docker for HCL Sametime Meetings 11.5
• you can allow this host to forward/route IP traffic and restart the network
echo net.ipv4.ip_forward=1 >> /etc/sysctl.conf
systemctl restart network
15
Installation Docker for HCL Sametime Meetings 11.5
• Use the command for start the Docker Service
systemctl start docker
• Use the command for enable Docker auto start
systemctl enable docker
16
Installation Docker for HCL Sametime Meetings 11.5
• Verify that Docker Engine is installed correctly by running the hello-world image.
docker run hello-world
17
Installation Docker for HCL Sametime Meetings 11.5
• Now install Docker Compose on Linux systems
curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-
$(uname -m)" -o /usr/local/bin/docker-compose
18
Installation Docker for HCL Sametime Meetings 11.5
• Apply executable permissions to the binary:
chmod +x /usr/local/bin/docker-compose
19
Installation Docker for HCL Sametime Meetings 11.5
• You can check the installed Docker component
docker info
docker-compose --version
20
Installation Docker for HCL Sametime Meetings 11.5
DONE!
Installation Docker for HCL Sametime Meetings 11.5
21
Step 3
Installation
HCL Sametime Meetings 11.5
To Docker
22
• We will now install Pre-release HCL Sametime Meeting V11.5. into to Docker.
• You will need to edit the configuration files, and because it works well with Midnight
Commander, I installed it with Centos:
yum install mc
• After installation start Midnight Commander
mc
23
Installation HCL Sametime Meetings 11.5 Docker
• Download HCL Sametime Meetings 11.5 file from Flexnet and copy this file for my
example to directory /opt/ ST-115-Meet
• Extract the zip file Sametime_11.5_MeetingServer.zip:
unzip Sametime_11.5_MeetingServer.zip
• If you do not have unzip available, install using:
yum install unzip
24
Installation HCL Sametime Meetings 11.5
• After extract Sametime_11.5_MeetingServer.zip file run the below command to load and
initialize the docker images in the directory where you have extracted the zip file and
./install.sh
25
Installation HCL Sametime Meetings 11.5 to Docker
• Note: The Sametime Meetings 11.5 requires access to a MongoDB server. You can re-use
the existing MongoDB server that is being used by the Community and Proxy servers or
you can deploy one specifically for Meetings.
There are no special configuration steps required for the Meeting database. It
automatically creates when the Sametime Meeting Server connects to MongoDB.
• specify the appropriate values for the deployment. For example:
26
Installation HCL Sametime Meetings 11.5 to Docker
• Confirm with the „Enter“ key („Enter the Base64 Encoded JWT_SECRET…..)
27
Installation HCL Sametime Meetings 11.5 to Docker
• Installation progress
28
Installation HCL Sametime Meetings 11.5 to Docker
• The install.sh script will load and run the following list of docker images.
- meetings-auth.node
- meetings-recordings.node
- meetings-web
- meetings-prosody
- meetings-jicofo
- meetings-jvb
- meetings-jigasi
- meetings-jibri
29
Installation HCL Sametime Meetings 11.5 to Docker
• After installation run the below command for check if meetings server is running.
Show all the loaded docker images
docker images
30
Installation HCL Sametime Meetings 11.5 to Docker
• After installation run the below command for list all running containers in docker engine
docker ps
31
Installation HCL Sametime Meetings 11.5 to Docker
• Try url: https://meetings.kaiser.cz (for my example)
• Use Google Chrome
32
Installation HCL Sametime Meetings 11.5 to Docker
DONE!
Installation HCL Sametime Meetings 11.5 to Docker
33
Step 4
Enable Sametime Community
for
HCL Sametime Meetings 11.5
34
Enable HCL Sametime Community for Meetings
• HCL Sametime Community 11.5 requires the following changes to support Sametime
Meetings:
- Enable Sametime Meeting Policy
- Enable Windows Sametime Community server to support Meetings
- Create JWT Configuration
35
Enable HCL Sametime Community for Meetings
• Open your HCL Sametime Community server
• Edit the polices.user.xml found in the Sametime Community server install directory.
36
Enable HCL Sametime Community for Meetings
• Locate the im.meetingsEnabled parameter under im and set this to a values of 1.
This policy can be enabled for anonymous and any additional policies that may exist.
• Save this file
37
Enable HCL Sametime Community for Meetings
• Open your Centos server
• Create JWT Configuration:
• Copy the value of JWT_APP_SECRET from the .env file.
• Run the following command from the Linux shell with this JWT_APP_SECRET value:
echo -n <JWT_APP_SECRET> | base64 -w 0
• The value (output) from this command becomes the "GENERATED_SECRET" for the
sametime.ini and stproxyconfig.xml in the following steps.
38
39
Enable HCL Sametime Community for Meetings
40
Enable HCL Sametime Community for Meetings
Enable HCL Sametime Community for Meetings
• Open your HCL Sametime Community server
• Edit the sametime.ini found in the Sametime Community server install directory.
41
Enable HCL Sametime Community for Meetings
• Add the following under [config]:
JWT_SECRET=GENERATED_SECRET
• Change the following under [st-bb-names]:
ST_AUTH_TOKEN=notes To: ST_AUTH_TOKEN=Fork:Jwt,notes
42
Enable HCL Sametime Community for Meetings
• Open your HCL Sametime Proxy server
• On the Sametime Proxy server in the conf folder, edit the stproxyconfig.xml file
43
Enable HCL Sametime Community for Meetings
• adding <jwtSecret> and <refreshJwt> settings within <configuration> like so:
44
<configuration>
...
<jwtSecret>
GENERATED_SECRET
</jwtSecret>
<refreshJwt>
<enabled>true</enabled>
<path>/meeting-auth/api/v1/refresh</path>
</refreshJwt>
</configuration>
DONE!
Enable HCL Sametime Community for Meetings
45
Step 5
Enable Sametime Proxy
for
HCL Sametime Meetings 11.5
46
Enable HCL Sametime Community for Meetings
• Open your HCL Sametime Proxy server
• On the Sametime Proxy server in the conf folder, edit the stproxyconfig.xml file
47
Enable HCL Sametime Proxy for Meetings
• Edit stproxyconfig.xml in the Proxy server's conf directory, add the following
48
<meeting>
<host>HOST</host>
<port>PORT</port>
<isSecure>true</isSecure>
</meeting>
...
</configuration>
Enable HCL Sametime Proxy for Meetings
• Now restart HCL Community server or all HCL Domino server and HCL Sametime
Proxy server
49
DONE!
Enable HCL Sametime Proxy for Meetings
50
Step 6
Test
HCL Sametime Meetings 11.5
51
Test HCL Sametime Meetings 11.5
• For example: Open Google Chrome browser nad login to HCL Sametime Chat
52
Test HCL Sametime Meetings 11.5
• Open „Meetings“ and „Sametime Meetings“
53
Test HCL Sametime Meetings 11.5
• Enter Name for new Meeting and click to „START“ or open „Recent
Meetings“
54
Test HCL Sametime Meetings 11.5
• You can now start testing
55
HCL Sametime Meetings 11.5
Deployment on Docker
Step by Step
The END
56
Step 7
Updating the Sametime Meeting Server TLS
Certificates
57
• The Sametime Meeting Server is pre-configured with a self-signed certificate. Use these
instructions to replace the self-signed certificate with a third party certificate.
• Docker compose down by command: docker-compose down
• Replace the cert and key files in <install dir>./jitsi-config/web/keys/cert.crt and cert.key
with the correct key and crt file.
• Docker compose up –d by command: docker-compose up -d
58
Updating the Sametime Meeting Server TLS Certificates
DONE!
Updated the Sametime Meeting Server TLS Certificates
59
Step 8
Upgrade
HCL Sametime Meetings V11.5 Pre-Release
To
V11.5 Release (November 2020)
60
• Note: The Sametime Meetings release requires access to a MongoDB server. You can re-
use the existing MongoDB server that is being used by the Community and Proxy servers
or you can deploy one specifically for Meetings.
There are no special configuration steps required for the Meeting database. It
automatically creates when the Sametime Meeting Server connects to MongoDB.
61
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
• In /opt/STMeetingserver stop the Sametime Meeting Server. For example: My folder with
ST Meetings is „ST-115-Meet“
• Run the commands: docker-compose down
62
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
• Rename your /opt/STMeetingServer to a backup.
• Run the commands: mv /opt/ST-115-Meet /opt/STMeetingServer_bak
63
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
• Download HCL Sametime Meetings 11.5 file from Flexnet and copy this file for my
example to directory /opt/install/ST-115-Meet
• Extract the zip file Sametime_11.5_MeetingServer.zip:
unzip Sametime_PreRelase_11.5_MeetingServer.zip
64
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
• Run the install.sh script and follow the prompts to provide the information as required.
You can copy the encoded secret from sametime.ini or create a new one with this update.
• Note: If you create a new key, you must go through the configuration again according to
the „Enable HCL Sametime Community for Meetings“ section of this guide
• Run the commands for install: ./install.sh
65
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
• Fill in the data as needed and your existing meeting server installation.
• I copied the already created key so that I would not have to reconfigure everything and
save additional time.
66
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
• After a successful installation, the Meeting server starts automatically.
67
Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
DONE!
HCL Meetings server is upgrade to release 11.5
68

More Related Content

What's hot

HCL Sametime Meetings server upgrade to V11.6
HCL Sametime Meetings server upgrade to V11.6HCL Sametime Meetings server upgrade to V11.6
HCL Sametime Meetings server upgrade to V11.6Ales Lichtenberg
 
MES102 - Verse on Premises 2.0 Best Practices
MES102 - Verse on Premises 2.0 Best PracticesMES102 - Verse on Premises 2.0 Best Practices
MES102 - Verse on Premises 2.0 Best PracticesDylan Redfield
 
DNUG HCL Domino 11 First Look
DNUG HCL Domino 11 First LookDNUG HCL Domino 11 First Look
DNUG HCL Domino 11 First Lookdaniel_nashed
 
HCL Domino Volt Installation, Configuration & New Features
HCL Domino Volt Installation, Configuration & New FeaturesHCL Domino Volt Installation, Configuration & New Features
HCL Domino Volt Installation, Configuration & New Featureshemantnaik
 
DominoMigrationProposal
DominoMigrationProposalDominoMigrationProposal
DominoMigrationProposalLynn Levash
 
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesApril, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesHoward Greenberg
 
Planning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradePlanning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradeGabriella Davis
 
June OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerJune OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerHoward Greenberg
 
The 8 Advantages of Parallels Web Solutions for your Hosting Business - Andr...
The 8 Advantages of Parallels Web  Solutions for your Hosting Business - Andr...The 8 Advantages of Parallels Web  Solutions for your Hosting Business - Andr...
The 8 Advantages of Parallels Web Solutions for your Hosting Business - Andr...ResellerClub
 
January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12Howard Greenberg
 
four issues I encountered deploying vCenter and SRM 5.5 in a Windows environment
four issues I encountered deploying vCenter and SRM 5.5 in a Windows environmentfour issues I encountered deploying vCenter and SRM 5.5 in a Windows environment
four issues I encountered deploying vCenter and SRM 5.5 in a Windows environmentAngelo Luciani
 
HCL Domino V12 Key Security Features Overview
HCL Domino V12 Key Security Features Overview HCL Domino V12 Key Security Features Overview
HCL Domino V12 Key Security Features Overview hemantnaik
 
Take home your very own free Vagrant CFML Dev Environment - Presented at dev....
Take home your very own free Vagrant CFML Dev Environment - Presented at dev....Take home your very own free Vagrant CFML Dev Environment - Presented at dev....
Take home your very own free Vagrant CFML Dev Environment - Presented at dev....Gavin Pickin
 
Best Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesBest Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesTimsterC
 
What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesGabriella Davis
 
Pointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the RescuePointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the RescueKeith Brooks
 
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...Sharon James
 

What's hot (20)

HCL Sametime Meetings server upgrade to V11.6
HCL Sametime Meetings server upgrade to V11.6HCL Sametime Meetings server upgrade to V11.6
HCL Sametime Meetings server upgrade to V11.6
 
HCL Sametime V11 - ENG
HCL Sametime V11 - ENGHCL Sametime V11 - ENG
HCL Sametime V11 - ENG
 
MES102 - Verse on Premises 2.0 Best Practices
MES102 - Verse on Premises 2.0 Best PracticesMES102 - Verse on Premises 2.0 Best Practices
MES102 - Verse on Premises 2.0 Best Practices
 
DNUG HCL Domino 11 First Look
DNUG HCL Domino 11 First LookDNUG HCL Domino 11 First Look
DNUG HCL Domino 11 First Look
 
HCL Domino Volt Installation, Configuration & New Features
HCL Domino Volt Installation, Configuration & New FeaturesHCL Domino Volt Installation, Configuration & New Features
HCL Domino Volt Installation, Configuration & New Features
 
DominoMigrationProposal
DominoMigrationProposalDominoMigrationProposal
DominoMigrationProposal
 
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best PracticesApril, 2021 OpenNTF Webinar - Domino Administration Best Practices
April, 2021 OpenNTF Webinar - Domino Administration Best Practices
 
Planning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections UpgradePlanning & Completing An IBM Connections Upgrade
Planning & Completing An IBM Connections Upgrade
 
June OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification ManagerJune OpenNTF Webinar - Domino V12 Certification Manager
June OpenNTF Webinar - Domino V12 Certification Manager
 
The 8 Advantages of Parallels Web Solutions for your Hosting Business - Andr...
The 8 Advantages of Parallels Web  Solutions for your Hosting Business - Andr...The 8 Advantages of Parallels Web  Solutions for your Hosting Business - Andr...
The 8 Advantages of Parallels Web Solutions for your Hosting Business - Andr...
 
January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12January OpenNTF Webinar - Backup your Domino Server - New Options in V12
January OpenNTF Webinar - Backup your Domino Server - New Options in V12
 
Keep Applications Online
Keep Applications OnlineKeep Applications Online
Keep Applications Online
 
four issues I encountered deploying vCenter and SRM 5.5 in a Windows environment
four issues I encountered deploying vCenter and SRM 5.5 in a Windows environmentfour issues I encountered deploying vCenter and SRM 5.5 in a Windows environment
four issues I encountered deploying vCenter and SRM 5.5 in a Windows environment
 
HCL Domino V12 Key Security Features Overview
HCL Domino V12 Key Security Features Overview HCL Domino V12 Key Security Features Overview
HCL Domino V12 Key Security Features Overview
 
Take home your very own free Vagrant CFML Dev Environment - Presented at dev....
Take home your very own free Vagrant CFML Dev Environment - Presented at dev....Take home your very own free Vagrant CFML Dev Environment - Presented at dev....
Take home your very own free Vagrant CFML Dev Environment - Presented at dev....
 
Best Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on PremisesBest Practices for Installing IBM Verse on Premises
Best Practices for Installing IBM Verse on Premises
 
What's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-PremisesWhat's New in Notes, Sametime and Verse On-Premises
What's New in Notes, Sametime and Verse On-Premises
 
Pointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the RescuePointing Fingers? DDM to the Rescue
Pointing Fingers? DDM to the Rescue
 
Realtime with websockets
Realtime with websocketsRealtime with websockets
Realtime with websockets
 
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
Bp307 Practical Solutions for Connections Administrators, tips and scrips for...
 

Similar to HCL Sametime Meetings 11.5 Step-by-Step

HCL Sametime 12.0 on Docker - Step-By-Step.pdf
HCL Sametime 12.0 on Docker - Step-By-Step.pdf HCL Sametime 12.0 on Docker - Step-By-Step.pdf
HCL Sametime 12.0 on Docker - Step-By-Step.pdf Ales Lichtenberg
 
Docking, loading, running domino on docker v12
Docking, loading, running domino on docker v12Docking, loading, running domino on docker v12
Docking, loading, running domino on docker v12Daniele Vistalli
 
January OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep DiveJanuary OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep DiveHoward Greenberg
 
Lean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushLean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushPantheon
 
HCL Sametime 11.5 Meetings - A look behind the curtain
HCL Sametime 11.5 Meetings - A look behind the curtainHCL Sametime 11.5 Meetings - A look behind the curtain
HCL Sametime 11.5 Meetings - A look behind the curtaineschwalb
 
Tribal Nova Docker feedback
Tribal Nova Docker feedbackTribal Nova Docker feedback
Tribal Nova Docker feedbackNicolas Degardin
 
CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...
CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...
CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...panagenda
 
CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....
CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....
CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....Christoph Adler
 
SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe
SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe
SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe Sencha
 
Extracting twitter data using apache flume
Extracting twitter data using apache flumeExtracting twitter data using apache flume
Extracting twitter data using apache flumeBharat Khanna
 
Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...
Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...
Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...linuxlab_conf
 
Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...
Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...
Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...Marco Cavallini
 
Detailed Introduction To Docker
Detailed Introduction To DockerDetailed Introduction To Docker
Detailed Introduction To Dockernklmish
 
LuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDaysLuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDaysLuis Rodríguez Castromil
 
RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...
RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...
RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...panagenda
 
RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...
RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...
RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...Christoph Adler
 
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1Howard Greenberg
 

Similar to HCL Sametime Meetings 11.5 Step-by-Step (20)

HCL Sametime 12.0 on Docker - Step-By-Step.pdf
HCL Sametime 12.0 on Docker - Step-By-Step.pdf HCL Sametime 12.0 on Docker - Step-By-Step.pdf
HCL Sametime 12.0 on Docker - Step-By-Step.pdf
 
Docking, loading, running domino on docker v12
Docking, loading, running domino on docker v12Docking, loading, running domino on docker v12
Docking, loading, running domino on docker v12
 
January OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep DiveJanuary OpenNTF Webinar: 4D - Domino Docker Deep Dive
January OpenNTF Webinar: 4D - Domino Docker Deep Dive
 
Lean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and DrushLean Drupal Repositories with Composer and Drush
Lean Drupal Repositories with Composer and Drush
 
HCL Sametime 11.5 Meetings - A look behind the curtain
HCL Sametime 11.5 Meetings - A look behind the curtainHCL Sametime 11.5 Meetings - A look behind the curtain
HCL Sametime 11.5 Meetings - A look behind the curtain
 
Tribal Nova Docker feedback
Tribal Nova Docker feedbackTribal Nova Docker feedback
Tribal Nova Docker feedback
 
CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...
CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...
CollabSphere 2020: INF111 - Virtual, Faster, Better! How to deploy HCL Notes ...
 
CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....
CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....
CollabSphere 2020 Live - Virtual, Faster, Better! How to deploy HCL Notes 11....
 
Dockerize All The Things
Dockerize All The ThingsDockerize All The Things
Dockerize All The Things
 
SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe
SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe
SenchaCon 2016: Develop, Test & Deploy with Docker - Jonas Schwabe
 
Extracting twitter data using apache flume
Extracting twitter data using apache flumeExtracting twitter data using apache flume
Extracting twitter data using apache flume
 
Deploying PHP apps on the cloud
Deploying PHP apps on the cloudDeploying PHP apps on the cloud
Deploying PHP apps on the cloud
 
R meetup 20161011v2
R meetup 20161011v2R meetup 20161011v2
R meetup 20161011v2
 
Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...
Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...
Marco Cavallini - Yocto Project, an automatic generator of embedded Linux dis...
 
Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...
Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...
Marco Cavallini @ LinuxLab 2018 : Workshop Yocto Project, an automatic genera...
 
Detailed Introduction To Docker
Detailed Introduction To DockerDetailed Introduction To Docker
Detailed Introduction To Docker
 
LuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDaysLuisRodriguezLocalDevEnvironmentsDrupalOpenDays
LuisRodriguezLocalDevEnvironmentsDrupalOpenDays
 
RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...
RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...
RNUG 2020: Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Ci...
 
RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...
RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...
RNUG - Virtual, Faster, Better! How to deploy HCL Notes 11.0.1 FP2 for Citrix...
 
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
OpNovember Water Cooler Talk: The Mystery of Domino on Docker - Part 1
 

More from Ales Lichtenberg

HCL Sametime 12 Corporate Branding - step-by-step
HCL Sametime 12  Corporate Branding - step-by-stepHCL Sametime 12  Corporate Branding - step-by-step
HCL Sametime 12 Corporate Branding - step-by-stepAles Lichtenberg
 
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...Ales Lichtenberg
 
HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021
HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021
HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021Ales Lichtenberg
 
HCL Sametime V11 instalace - tipy
HCL Sametime V11  instalace - tipyHCL Sametime V11  instalace - tipy
HCL Sametime V11 instalace - tipyAles Lichtenberg
 
HCL Nomad pro Administratory - CZ
HCL Nomad pro Administratory - CZHCL Nomad pro Administratory - CZ
HCL Nomad pro Administratory - CZAles Lichtenberg
 
HCL Nomad for Admins - ENG
HCL Nomad for Admins - ENGHCL Nomad for Admins - ENG
HCL Nomad for Admins - ENGAles Lichtenberg
 
Upgrade Notes 10 via Panagenda - ENG
Upgrade Notes 10 via Panagenda - ENGUpgrade Notes 10 via Panagenda - ENG
Upgrade Notes 10 via Panagenda - ENGAles Lichtenberg
 
IBM Domino Mobile Apps - ENG
IBM Domino Mobile Apps - ENGIBM Domino Mobile Apps - ENG
IBM Domino Mobile Apps - ENGAles Lichtenberg
 
HCL Nomad via Panagenda Marvel Client
HCL Nomad via Panagenda Marvel ClientHCL Nomad via Panagenda Marvel Client
HCL Nomad via Panagenda Marvel ClientAles Lichtenberg
 
Upgrade Notes 10 via Panagenda
Upgrade Notes 10 via PanagendaUpgrade Notes 10 via Panagenda
Upgrade Notes 10 via PanagendaAles Lichtenberg
 
Application insights for Domino
Application insights for DominoApplication insights for Domino
Application insights for DominoAles Lichtenberg
 
How to installing IBM Verse on premises
How to installing IBM Verse on premisesHow to installing IBM Verse on premises
How to installing IBM Verse on premisesAles Lichtenberg
 
SUTOL 2016 - Secure IBM Traveler for 2017
SUTOL 2016 - Secure IBM Traveler for 2017SUTOL 2016 - Secure IBM Traveler for 2017
SUTOL 2016 - Secure IBM Traveler for 2017Ales Lichtenberg
 

More from Ales Lichtenberg (18)

HCL Sametime 12 Corporate Branding - step-by-step
HCL Sametime 12  Corporate Branding - step-by-stepHCL Sametime 12  Corporate Branding - step-by-step
HCL Sametime 12 Corporate Branding - step-by-step
 
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
HCL Sametime 12.0 – Converting from native Domino Directory to LDAP and Migra...
 
HCL Domino V12 - TOTP
HCL Domino V12 - TOTPHCL Domino V12 - TOTP
HCL Domino V12 - TOTP
 
HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021
HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021
HCL Sametime Meetings on Docker - SUTOL Cafe 2/2021
 
HCL Sametime V11 instalace - tipy
HCL Sametime V11  instalace - tipyHCL Sametime V11  instalace - tipy
HCL Sametime V11 instalace - tipy
 
Mobilni spoluprace
Mobilni spoluprace Mobilni spoluprace
Mobilni spoluprace
 
Prechazime na desitky
Prechazime na desitkyPrechazime na desitky
Prechazime na desitky
 
HCL Sametime V11 - CZ
HCL Sametime V11 - CZHCL Sametime V11 - CZ
HCL Sametime V11 - CZ
 
HCL Nomad pro Administratory - CZ
HCL Nomad pro Administratory - CZHCL Nomad pro Administratory - CZ
HCL Nomad pro Administratory - CZ
 
HCL Nomad for Admins - ENG
HCL Nomad for Admins - ENGHCL Nomad for Admins - ENG
HCL Nomad for Admins - ENG
 
Upgrade Notes 10 via Panagenda - ENG
Upgrade Notes 10 via Panagenda - ENGUpgrade Notes 10 via Panagenda - ENG
Upgrade Notes 10 via Panagenda - ENG
 
IBM Domino Mobile Apps - ENG
IBM Domino Mobile Apps - ENGIBM Domino Mobile Apps - ENG
IBM Domino Mobile Apps - ENG
 
HCL Nomad via Panagenda Marvel Client
HCL Nomad via Panagenda Marvel ClientHCL Nomad via Panagenda Marvel Client
HCL Nomad via Panagenda Marvel Client
 
Upgrade Notes 10 via Panagenda
Upgrade Notes 10 via PanagendaUpgrade Notes 10 via Panagenda
Upgrade Notes 10 via Panagenda
 
IBM Domino Mobile Apps
IBM Domino Mobile AppsIBM Domino Mobile Apps
IBM Domino Mobile Apps
 
Application insights for Domino
Application insights for DominoApplication insights for Domino
Application insights for Domino
 
How to installing IBM Verse on premises
How to installing IBM Verse on premisesHow to installing IBM Verse on premises
How to installing IBM Verse on premises
 
SUTOL 2016 - Secure IBM Traveler for 2017
SUTOL 2016 - Secure IBM Traveler for 2017SUTOL 2016 - Secure IBM Traveler for 2017
SUTOL 2016 - Secure IBM Traveler for 2017
 

Recently uploaded

Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsJhone kinadey
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerThousandEyes
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceanilsa9823
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsArshad QA
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AIABDERRAOUF MEHENNI
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsAndolasoft Inc
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 

Recently uploaded (20)

Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female serviceCALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
CALL ON ➥8923113531 🔝Call Girls Badshah Nagar Lucknow best Female service
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AISyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
SyndBuddy AI 2k Review 2024: Revolutionizing Content Syndication with AI
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
How To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.jsHow To Use Server-Side Rendering with Nuxt.js
How To Use Server-Side Rendering with Nuxt.js
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 

HCL Sametime Meetings 11.5 Step-by-Step

  • 1. ALEŠ LICHTENBERG twitter: @a_lichtenberg blog: www.alichtenberg.cz HCL Sametime Meetings 11.5 + Upgrade form 11.5 Pre-Release Deployment on Docker Step by Step Ver. 1.0
  • 2. Intro The document does not replace official documentation. The implementation will be demonstrated on a specific example. The document will be gradually supplemented and updated. Thank you for the practical installation advice: Daniel Nashed – HCL Lifetime Ambassador : blog.nashcom.de Roberto Boccadoro – HCL Ambassador : www.robertoboccadoro.com 1
  • 3. About author I am a technical consultant of HCL Digital Solutions software: Domino/Notes, Sametime, Nomad, Verse. I am a Member of Czech Lotus User Group = Sutol. I am a Bloger and a Speaker. I have been primarily engaged in the Lotus software family since 1994. I remember the era when these products were owned by Lotus, then IBM, and now I am looking forward to another successful years with HCL Software. Contacts: e-mail: ales@alichtenberg.cz twitter: a_lichtenberg blog: alichtenberg.cz 2
  • 4. Agenda ▪ HCL Sametime V11.x – Resources ▪ Pilot example ▪ Step 1 - Installation and configuration Linux Centos 7.4 ▪ Step 2 - Installation Docker for HCL Sametime Meetings 11.5 ▪ Step 3 - Installation HCL Sametime Meetings 11.5 to Docker ▪ Step 4 - Enable Sametime Community for HCL Sametime Meetings 11.5 ▪ Step 5 - Enable Sametime Proxy for HCL Sametime Meetings 11.5 ▪ Step 6 - Use HCL Sametime Meetings 11.5 ▪ Step 7 - Updating the Sametime Meeting Server TLS Certificates ▪ Step 8 - Upgrade HCL Sametime Meetings V11.5 Pre-Release to 11.5 Premium 3
  • 5. HCL Sametime V11.x – Resources Current resources: ➢ Installation and Administration Guide https://help.hcltechsw.com/sametime/11.5/admin/administrator_doc.html ➢ Installing & Configuring CentOS (for Domino) https://www.slideshare.net/defaultxsp/installing-configuring-ibm-domino-9-on-centos ➢ HCL Customer Support https://hclpnpsupport.hcltech.com/csm ➢ Knowledge DB https://hclpnpsupport.hcltech.com/csm?id=search&spa=1&t=kb&q=sametime%20v11 ➢ Discussion HCL Sametime https://hclpnpsupport.hcltech.com/community?id=community_forum&sys_id=e3c946d01b80841077761fc58d4bcb04 4
  • 6. Pilot example This procedure builds on my previous Sametime V11.x installation guide. The prerequisite is already implemented Sametime 11.5 Installation manual “HCL Sametime V11.0 – Step by step”: https://alichtenberg.cz/my-installation-manual-hcl-sametime-v11-0-step-by-step-updated-for-fp2/ And next manual: „Upgrade HCL Sametime server 11.0 to 11.5“: https://www2.slideshare.net/AleLichtenberg/upgrade-hcl-sametime-server-110-to-115 Deployment HCL Sametime Meetings 11.5 Release will take place onLinux Centos 7.4 Installed components: • Docker for HCL Sametime Meetings 11.5 Release • HCL Sametime Meetings 11.5 All components will be installed on one virtual machine. 5
  • 7. Hardware required for this Pilot Example Deployment Hardware: ✓ 8 core, 32 GB RAM, 80 GB Hard disk Operation system: ✓ Centos 7.4. Pre-Requisites • Docker for HCL Sametime Meetings 11.5 • HCL Sametime Meetings 11.5 ✓ FQDN for my Pilot example server: „meetings.kaiser.cz“ 6
  • 8. • What we need to install a HCL Sametime Meetings 11.5 Installation Packages 7
  • 9. Step 1 Installation and configuration Linux Centos 7.4 8
  • 10. Installation Centos 7.4 Currently, HCL Sametime Meetings 11.5 is only supported for Docker running on Linux For Centos installation 7.4. you can use part of a great step-by-step manual by David Olson: https://www.slideshare.net/defaultxsp/installing-configuring-ibm-domino-9-on-centos 9
  • 12. Installation Docker for HCL Sametime Meetings 11.5 What is Docker? Docker is an open-source lightweight containerization technology. It allows you to automate the deployment of applications in lightweight and portable containers and ship it all out as one package. It also allows you to run multiple Operating systems on the same host. How to install Docker Engine: https://docs.docker.com/engine/install/centos How to install Docker Compose: https://docs.docker.com/compose/install 11
  • 13. • Log in with your Centos server as „root“ user and execute all commands under this • Run the following commands for installationrequired Docker Engine packages: yum install -y net-tools wget yum-utils device-mapper-persistent-data lvm2 12 Installation Docker for HCL Sametime Meetings 11.5
  • 14. • Now run the following commands for add the docker repository for software downloads: yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo 13 Installation Docker for HCL Sametime Meetings 11.5
  • 15. • Install the latest version of Docker Engine and containerd: yum install -y docker-ce docker-ce-cli containerd.io 14 Installation Docker for HCL Sametime Meetings 11.5
  • 16. • you can allow this host to forward/route IP traffic and restart the network echo net.ipv4.ip_forward=1 >> /etc/sysctl.conf systemctl restart network 15 Installation Docker for HCL Sametime Meetings 11.5
  • 17. • Use the command for start the Docker Service systemctl start docker • Use the command for enable Docker auto start systemctl enable docker 16 Installation Docker for HCL Sametime Meetings 11.5
  • 18. • Verify that Docker Engine is installed correctly by running the hello-world image. docker run hello-world 17 Installation Docker for HCL Sametime Meetings 11.5
  • 19. • Now install Docker Compose on Linux systems curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)- $(uname -m)" -o /usr/local/bin/docker-compose 18 Installation Docker for HCL Sametime Meetings 11.5
  • 20. • Apply executable permissions to the binary: chmod +x /usr/local/bin/docker-compose 19 Installation Docker for HCL Sametime Meetings 11.5
  • 21. • You can check the installed Docker component docker info docker-compose --version 20 Installation Docker for HCL Sametime Meetings 11.5
  • 22. DONE! Installation Docker for HCL Sametime Meetings 11.5 21
  • 23. Step 3 Installation HCL Sametime Meetings 11.5 To Docker 22
  • 24. • We will now install Pre-release HCL Sametime Meeting V11.5. into to Docker. • You will need to edit the configuration files, and because it works well with Midnight Commander, I installed it with Centos: yum install mc • After installation start Midnight Commander mc 23 Installation HCL Sametime Meetings 11.5 Docker
  • 25. • Download HCL Sametime Meetings 11.5 file from Flexnet and copy this file for my example to directory /opt/ ST-115-Meet • Extract the zip file Sametime_11.5_MeetingServer.zip: unzip Sametime_11.5_MeetingServer.zip • If you do not have unzip available, install using: yum install unzip 24 Installation HCL Sametime Meetings 11.5
  • 26. • After extract Sametime_11.5_MeetingServer.zip file run the below command to load and initialize the docker images in the directory where you have extracted the zip file and ./install.sh 25 Installation HCL Sametime Meetings 11.5 to Docker
  • 27. • Note: The Sametime Meetings 11.5 requires access to a MongoDB server. You can re-use the existing MongoDB server that is being used by the Community and Proxy servers or you can deploy one specifically for Meetings. There are no special configuration steps required for the Meeting database. It automatically creates when the Sametime Meeting Server connects to MongoDB. • specify the appropriate values for the deployment. For example: 26 Installation HCL Sametime Meetings 11.5 to Docker
  • 28. • Confirm with the „Enter“ key („Enter the Base64 Encoded JWT_SECRET…..) 27 Installation HCL Sametime Meetings 11.5 to Docker
  • 29. • Installation progress 28 Installation HCL Sametime Meetings 11.5 to Docker
  • 30. • The install.sh script will load and run the following list of docker images. - meetings-auth.node - meetings-recordings.node - meetings-web - meetings-prosody - meetings-jicofo - meetings-jvb - meetings-jigasi - meetings-jibri 29 Installation HCL Sametime Meetings 11.5 to Docker
  • 31. • After installation run the below command for check if meetings server is running. Show all the loaded docker images docker images 30 Installation HCL Sametime Meetings 11.5 to Docker
  • 32. • After installation run the below command for list all running containers in docker engine docker ps 31 Installation HCL Sametime Meetings 11.5 to Docker
  • 33. • Try url: https://meetings.kaiser.cz (for my example) • Use Google Chrome 32 Installation HCL Sametime Meetings 11.5 to Docker
  • 34. DONE! Installation HCL Sametime Meetings 11.5 to Docker 33
  • 35. Step 4 Enable Sametime Community for HCL Sametime Meetings 11.5 34
  • 36. Enable HCL Sametime Community for Meetings • HCL Sametime Community 11.5 requires the following changes to support Sametime Meetings: - Enable Sametime Meeting Policy - Enable Windows Sametime Community server to support Meetings - Create JWT Configuration 35
  • 37. Enable HCL Sametime Community for Meetings • Open your HCL Sametime Community server • Edit the polices.user.xml found in the Sametime Community server install directory. 36
  • 38. Enable HCL Sametime Community for Meetings • Locate the im.meetingsEnabled parameter under im and set this to a values of 1. This policy can be enabled for anonymous and any additional policies that may exist. • Save this file 37
  • 39. Enable HCL Sametime Community for Meetings • Open your Centos server • Create JWT Configuration: • Copy the value of JWT_APP_SECRET from the .env file. • Run the following command from the Linux shell with this JWT_APP_SECRET value: echo -n <JWT_APP_SECRET> | base64 -w 0 • The value (output) from this command becomes the "GENERATED_SECRET" for the sametime.ini and stproxyconfig.xml in the following steps. 38
  • 40. 39 Enable HCL Sametime Community for Meetings
  • 41. 40 Enable HCL Sametime Community for Meetings
  • 42. Enable HCL Sametime Community for Meetings • Open your HCL Sametime Community server • Edit the sametime.ini found in the Sametime Community server install directory. 41
  • 43. Enable HCL Sametime Community for Meetings • Add the following under [config]: JWT_SECRET=GENERATED_SECRET • Change the following under [st-bb-names]: ST_AUTH_TOKEN=notes To: ST_AUTH_TOKEN=Fork:Jwt,notes 42
  • 44. Enable HCL Sametime Community for Meetings • Open your HCL Sametime Proxy server • On the Sametime Proxy server in the conf folder, edit the stproxyconfig.xml file 43
  • 45. Enable HCL Sametime Community for Meetings • adding <jwtSecret> and <refreshJwt> settings within <configuration> like so: 44 <configuration> ... <jwtSecret> GENERATED_SECRET </jwtSecret> <refreshJwt> <enabled>true</enabled> <path>/meeting-auth/api/v1/refresh</path> </refreshJwt> </configuration>
  • 46. DONE! Enable HCL Sametime Community for Meetings 45
  • 47. Step 5 Enable Sametime Proxy for HCL Sametime Meetings 11.5 46
  • 48. Enable HCL Sametime Community for Meetings • Open your HCL Sametime Proxy server • On the Sametime Proxy server in the conf folder, edit the stproxyconfig.xml file 47
  • 49. Enable HCL Sametime Proxy for Meetings • Edit stproxyconfig.xml in the Proxy server's conf directory, add the following 48 <meeting> <host>HOST</host> <port>PORT</port> <isSecure>true</isSecure> </meeting> ... </configuration>
  • 50. Enable HCL Sametime Proxy for Meetings • Now restart HCL Community server or all HCL Domino server and HCL Sametime Proxy server 49
  • 51. DONE! Enable HCL Sametime Proxy for Meetings 50
  • 52. Step 6 Test HCL Sametime Meetings 11.5 51
  • 53. Test HCL Sametime Meetings 11.5 • For example: Open Google Chrome browser nad login to HCL Sametime Chat 52
  • 54. Test HCL Sametime Meetings 11.5 • Open „Meetings“ and „Sametime Meetings“ 53
  • 55. Test HCL Sametime Meetings 11.5 • Enter Name for new Meeting and click to „START“ or open „Recent Meetings“ 54
  • 56. Test HCL Sametime Meetings 11.5 • You can now start testing 55
  • 57. HCL Sametime Meetings 11.5 Deployment on Docker Step by Step The END 56
  • 58. Step 7 Updating the Sametime Meeting Server TLS Certificates 57
  • 59. • The Sametime Meeting Server is pre-configured with a self-signed certificate. Use these instructions to replace the self-signed certificate with a third party certificate. • Docker compose down by command: docker-compose down • Replace the cert and key files in <install dir>./jitsi-config/web/keys/cert.crt and cert.key with the correct key and crt file. • Docker compose up –d by command: docker-compose up -d 58 Updating the Sametime Meeting Server TLS Certificates
  • 60. DONE! Updated the Sametime Meeting Server TLS Certificates 59
  • 61. Step 8 Upgrade HCL Sametime Meetings V11.5 Pre-Release To V11.5 Release (November 2020) 60
  • 62. • Note: The Sametime Meetings release requires access to a MongoDB server. You can re- use the existing MongoDB server that is being used by the Community and Proxy servers or you can deploy one specifically for Meetings. There are no special configuration steps required for the Meeting database. It automatically creates when the Sametime Meeting Server connects to MongoDB. 61 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 63. • In /opt/STMeetingserver stop the Sametime Meeting Server. For example: My folder with ST Meetings is „ST-115-Meet“ • Run the commands: docker-compose down 62 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 64. • Rename your /opt/STMeetingServer to a backup. • Run the commands: mv /opt/ST-115-Meet /opt/STMeetingServer_bak 63 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 65. • Download HCL Sametime Meetings 11.5 file from Flexnet and copy this file for my example to directory /opt/install/ST-115-Meet • Extract the zip file Sametime_11.5_MeetingServer.zip: unzip Sametime_PreRelase_11.5_MeetingServer.zip 64 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 66. • Run the install.sh script and follow the prompts to provide the information as required. You can copy the encoded secret from sametime.ini or create a new one with this update. • Note: If you create a new key, you must go through the configuration again according to the „Enable HCL Sametime Community for Meetings“ section of this guide • Run the commands for install: ./install.sh 65 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 67. • Fill in the data as needed and your existing meeting server installation. • I copied the already created key so that I would not have to reconfigure everything and save additional time. 66 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 68. • After a successful installation, the Meeting server starts automatically. 67 Upgrade HCL Sametime Meetings V11.5 Pre-Release to Release 11.5
  • 69. DONE! HCL Meetings server is upgrade to release 11.5 68