My rantings and a place to keep things I need from time to time

Sametime Chat Windows

Glenn Richardson  6 December 2011 15:42:18
I have done some testing to get a true indication of the behaviour of new Sametime chat message appearing when you are in a web meetings (legacy meetings or also know as classic meetings not the Webshpere meeting server).  The pop-up window you get depends on which client you logged in with. Note the version used was Sametime server 8.0.2, Notes client 8.5.2.

When you are in a web meeting and you are logged into Sametime via the Integrated client then all "new" chats are displayed in a web pop-up window.  If you have an existing chat "open" and that person sends another IM message it will appear in the Sametime chat window.

When you are in a web meeting and you are logged into the Sametime Connect client then all messages go to the Sametime Connect pop-up window.

Set Config Commands

Glenn Richardson  20 June 2011 15:53:43
If you have parameters in your notes.ini and went to get rid of them you can do it by issuing a command with no value e.g. 'set conf DEBUG_AMGR=' at the command console will totally remove the line from the notes.ini.

Boot menu in Ubuntu

Glenn Richardson  27 April 2011 20:38:15
The easist way to change to menu item you want to boot on in Ubuntu is to change the GRUB_DEFAULT in the /etc/default/grub file.

First off work out which partition or menu item you want to boot from, if you don't which one it is you can always use grep to see what you have.

grep menuentry /boot/grub/grub.cfg

Next open the /etc/default/grub as either in gedit or vi as shown below

sudo gedit /etc/default/grub
or for the command line
sudo vi /etc/default/grub

a window opened with this in it....

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

etc etc etc

Now change the GRUB_DEFAULT=0 to whatever menu item you want to boot from, say if you want to boot from Windows which is the fourth item then make the following change:
GRUB_DEFAULT=4

Save and close the file

Then to update the config run:
sudo update-grub

My First Lotus Knowledge Base Article

Glenn Richardson  12 January 2010 08:47:34

 I had my first Technote published in the Lotus Knowledge Base the other day.  It is the same as the below article however it is nice to get published.  I would have publish more articles previously however it has been a long and arduous process to get the access and procedures in place. 

Terri Puckett at IBM was fantastic and didn't give up after we hit many brick walls in the process - thanks Terri.

http://www-01.ibm.com/support/docview.wss?rs=0&q1=1417054&uid=swg21417054


The module has an invalid magic number

Glenn Richardson  8 December 2009 22:14:21
 
A customer was getting the following error message run the DAOS Estimator V1.5

notes@vlphdapp3:/home/notes> /opt/ibm/par1/lotus/bin/daosest -h
Could not load program /opt/ibm/par1/lotus/notes/latest/ibmpow/daosest:
Dependent module
/opt/ibm/par1/lotus/notes/latest/ibmpow/libnotes_r.a could not be loaded.
The module has an invalid magic number.

The customer was using the 64bit DAOS Estimator on their 64bit AIX operating system, however Domino was only 32bit. After the 32bit DAOS Estimator V1.5 was down loaded it ran successfully

Note: The DAOS Estimator bit version needs to match the Domino version not the operating system.

How to disable Windows 2003 Event Tracker at shutdown

Glenn Richardson  9 October 2009 21:50:57
Open the Group Policy Object Editor Console. Go to a Command Prompt type gpedit.msc and press OK.

Navigate to Computer Configuration > Administrative Templates > System and in the right hand pane, select the “Display Shutdown Event Tracker” setting.

Double Click this setting to open the Properties page. From here you can Disabled it.

After you make the change to the Group Policy, open the Command Prompt and run the gpupdate /force command to refresh the policy.

When you next go to shutdown or restart the machine, the event tracker will no longer be there.

Installing SSL certificates

Glenn Richardson  11 August 2009 10:01:23
Installing a Verisign SSL certificate after 17th May requires the you need to update the base certificate.

The URL to the Verisign web site is listed here for reference.

http://www.verisign.com/support/verisign-intermediate-ca/secure-site-intermediate/index.html

Sametime ini file settings for the Notes client

Glenn Richardson  16 July 2008 12:05:57
This settings can be used the notes.ini file and control how the Notes client interacts with Sametime.

IM_NO_SETUP=1
This setting stops the user from being prompted for Sametime details during client set-up.

IM_ENABLE_SSO=1
This setting passes the Notes credentials through to Sametime so the user doesn't need to enter a password.

Error when launching nlnotes.exe

Glenn Richardson  27 May 2008 12:43:11
When launching nlnotes.exe you receive the following error:

IBM Lotus Domino does not have a production license. A Temporary evaluation license has been enrolled for you to use for 60 days.

This is a warning only, after clicking OK the client will still load after some more errors pop up.  IBM has not recommended accessing the server (if ever) via this method since at least version 6 and it has been strongly advised against for years.

Copying Databases

Glenn Richardson  26 May 2008 10:25:38
I can't take any credit for this article it has come straight of Bruce Elgort's Blog, www.bruceelgort.com Bruce has lots of great articles up on his Blog and is definitely worth a read.
I have put this article up here on my Blog for reference only.

Recently I needed to make "copies" of some Lotus Notes databases and didn't want to do it from my Notes client. This would have take hours considering the database was 5gb. I knew that there had to be a way to do this and thanks to the assistance of my friend Thomas Gumz, I was able to issue a command line from the Domino server console and presto, the database was instantly copied. Yes, it's not documented nor supported, but has been around for a long time, at least since V4 according to Thomas.

So let's look at what you need to do to enable this feature:

The server console commands are turned off by default, you need to first enable them:

Set this server notes.ini variable, like so:

> set config CLUSTER_ADMIN_ON=1
(even if the server is not a in cluster, doesn't matter).

No need to restart the server, it becomes active immediately.

This enables this new command:

CL COPY sourcedb targetdb


Examples for the CL COPY command:

> CL copy serverA!!db1.nsf serverB!!db2.nsf

This would create a regular non-replica copy of db1.nsf on serverA as db2.nsf on ServerB

> CL copy serverA!!db1.nsf serverB!!db2.nsf REPLICA

This would create a replica copy of db1.nsf on serverA as db2.nsf on ServerB

> CL copy serverA!!db1.nsf serverB!!db2.nsf TEMPLATE

This would create a template copy (only design, no data) of db1.nsf on serverA as db2.nsf on ServerB

> CL copy db1.nsf db2.nsf

This would create a regular non-replica copy of db1.nsf as db2.nsf on the same local server