The future of social software in the enterprise – Lotus Connections 3
Im Rahmen der Lotusphere Comes To You 2011 Veranstaltung in der Schweiz, durfte ich einen Vortrag zu der neuen Version 3 von Lotus Connections halten. Das Kundenfeedback war sehr positiv, doch macht euch doch selber ein Bild davon:
IBM Lotus Connections 3 auf dem iPhone
IBM Lotus Connections hat mit der Version 3 sehr viele Verbesserungen im Bereich Zugriff über mobile Geräte gebracht. Man kann mittlerweile direkt per iPhone (oder mit fast jeglichem mobilen Gerät) mit allen Komponenten arbeiten und somit wirklich von überall auf die nötigen Daten zugreifen resp. mit seinem Netzwerk interagieren.
Für meinen Arbeitgeber Belsoft AG habe ich dazu einen kleinen YouTube Film erstellt:
Ich bin wirklich von den gebotenen Möglichkeiten begeistert und freue mich darauf in Zukunft noch mehr IBM Lotus Lösungen auf dem iPhone zu sehen. Mein nächster Task wird nun das Branding der IBM Connections Mobile Sites sein.
IBM Lotus Quickr Workshop für Enduser
Hier die Präsentation, welche ich vor kurzem an einem Workshop für IBM Lotus Quickr 8.5 Enduser gehalten habe.
Bei Interesse kann ich euch die Datei auch zugänglich machen.
Erstellen eines Links zu Personenprofil und Business Card in Lotus Connections
Falls man innerhalb eines Blogbeitrages oder in einem Wiki (alle Connections Seiten, welche eine HTML Ansicht im Richtext Editor haben) einen Link zu einer Person einfügen will, kann man folgenden HTML Code verwenden:
<span class="vcard">
<a class="fn person lotusPerson" href="/profiles/html/profileView.do?email=klaus.bild@mailaddress.ch">Klaus Bild</a>
<span class="email" style="display: none;">klaus.bild@mailaddress.ch</span>
</span>
Wenn ihr mit der Maus über den Namen fährt, erscheint wieder das Popup für die Business Card:


Mehr dazu findet man auch unter:
http://www-10.lotus.com/ldd/lcwiki.nsf/dx/Integrating_the_Profiles_business_card_lc3
Backup and Restore IBM Lotus Connections DBs Online
There are many ways to backup your DB2 environment (Offline/Online; Incremental/Delta;Transaction Log backups). I just needed a suitable way to daily backup my Lotus Connections DBs.
I decided to do an Online Backup (no downtime of DBs/Connections) to a local folder and the folder will be backuped by Symantec Backup Exec.
Following steps have to be done to Backup data:
- Update DBs configuration to be ready for Online backups and to store only the latest backup in backup folder. Open a DB2 command window and issue following commands:
db2 update database configuration for BLOGS using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for DOGEAR using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for FILES using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for FORUM using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for HOMEPAGE using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for OPNACT using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for PEOPLEDB using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for SNCOMM using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0
db2 update database configuration for WIKIS using LOGARCHMETH1 LOGRETAIN AUTO_DEL_REC_OBJ ON num_db_backups 1 rec_his_retentn 0 - To activate these new settings you have to stop and start your db instance:
db2stop
db2start
or use force flag if DB is locked
db2stop force
db2start - Now backup your DBs to a folder (i.e. Backup_Online):
db2 backup database BLOGS to D:\Backup_Online
db2 backup database DOGEAR to D:\Backup_Online
db2 backup database FILES to D:\Backup_Online
db2 backup database FORUM to D:\Backup_Online
db2 backup database HOMEPAGE to D:\Backup_Online
db2 backup database OPNACT to D:\Backup_Online
db2 backup database PEOPLEDB to D:\Backup_Online
db2 backup database SNCOMM to D:\Backup_Online
db2 backup database WIKIS to D:\Backup_Online - From now on do regular compressed backups of the DBs and include log files (do not forget to backup the folder with you backup agent):
db2 backup database BLOGS ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database DOGEAR ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database FILES ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database FORUM ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database HOMEPAGE ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database OPNACT ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database PEOPLEDB ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database SNCOMM ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
db2 backup database WIKIS ONLINE to D:\Backup_Online COMPRESS INCLUDE LOGS
To Restore all your Data you first have to recreate all 9 DBs with the Lotus Connections DB Wizard:
- Run the DB wizard and recreate all 9 DBs
- Run following commands inside a DB2 command window to restore the data:
db2 restore database BLOGS from D:\Backup_Online REPLACE EXISTING
db2 restore database DOGEAR from D:\Backup_Online REPLACE EXISTING
db2 restore database FILES from D:\Backup_Online REPLACE EXISTING
db2 restore database FORUM from D:\Backup_Online REPLACE EXISTING
db2 restore database HOMEPAGE from D:\Backup_Online REPLACE EXISTING
db2 restore database OPNACT from D:\Backup_Online REPLACE EXISTING
db2 restore database PEOPLEDB from D:\Backup_Online REPLACE EXISTING
db2 restore database SNCOMM from D:\Backup_Online REPLACE EXISTING
db2 restore database WIKIS from D:\Backup_Online REPLACE EXISTING - Now you have to extract the archive logs from BLOGS db image. Create a temp folder D:\temp and extract archive logs into that folder:
db2 restore database BLOGS LOGS from D:\Backup_Online LOGTARGET D:\temp
- Now you can apply the transactions which are stored in these log files:
db2 rollforward database BLOGS to end of logs overflow log path (D:\temp) - Complete the rollforward process, otherwise you will not have access to the DB:
db2 rollforward database BLOGS complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for DOGEAR:
db2 restore database DOGEAR LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database DOGEAR to end of logs overflow log path (D:\temp)
db2 rollforward database DOGEAR complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for FILES:
db2 restore database FILES LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database FILES to end of logs overflow log path (D:\temp)
db2 rollforward database FILES complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for FORUM:
db2 restore database FORUM LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database FORUM to end of logs overflow log path (D:\temp)
db2 rollforward database FORUM complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for HOMEPAGE:
db2 restore database HOMEPAGE LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database HOMEPAGE to end of logs overflow log path (D:\temp)
db2 rollforward database HOMEPAGE complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for OPNACT:
db2 restore database OPNACT LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database OPNACT to end of logs overflow log path (D:\temp)
db2 rollforward database OPNACT complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for PEOPLEDB:
db2 restore database PEOPLEDB LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database PEOPLEDB to end of logs overflow log path (D:\temp)
db2 rollforward database PEOPLEDB complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for SNCOMM:
db2 restore database SNCOMM LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database SNCOMM to end of logs overflow log path (D:\temp)
db2 rollforward database SNCOMM complete - Delete all files in D:\temp
- Repeat extracting the archive logs, apply logs and completion of rollforward process for WIKIS:
db2 restore database WIKIS LOGS from D:\Backup_Online LOGTARGET D:\temp
db2 rollforward database WIKIS to end of logs overflow log path (D:\temp)
db2 rollforward database WIKIS complete
That’s it, now you can work with your restored data again. Happy Social Business.
Recent Posts
Pages
Tag Cloud
Blogroll
- Schönes Tor und mittlerweile verdient. Bestes Mittel für ein besseres Rückspiel #fcb 5 hours ago
- So schön harmonisch hier, alle sind für den #fcb 7 hours ago
- Ja, die Plätze sind seeeehr gut, #fcb-fcb, nur noch 30min #cl http://t.co/GWw8PYYT 8 hours ago





