Tuesday, October 30, 2007

How to receive notification when users enable 'Full Access Administration' mode

How to receive notification when users enable 'Full Access Administration' mode



Problem
You would like to receive a notification when Administrators enable "Full Access Administration" mode. How can this be done?
Solution
You can accomplish this by creating an Event Notification in the Monitoring Configuration database (EVENTS4.NSF), following the steps below:
    1. Open the Monitoring Configuration database, expand the "Event Handlers" folder, and select the "By Server" view.
    2. Click "New Event Handler".
    3. On the Basics tab, select the server to monitor, and specify the notification trigger "Any event that matches a criteria".
    4. On the Events tab, specify the "Criteria to match" options as follows:
      • Select "Event can be any type",
      • Select "Events can be any severity", and
      • Select "Events must have this text in event message" and specify the text "full administrator access", without the quotes.
    5. On the Action tab, specify a notification method. For example, select "Mail" and enter the email address to which emails should be sent when administrators enable "Full Access Administration" mode.
    6. On the Action tab, select "Enable this notification".
    7. Click "Save & Close".
Notifications will also be generated if users are denied access when they attempt to enable "Full Access Administration" mode.

Monday, October 22, 2007

Renaming Users with the Administration Process (AdminP)

IBM - Frequently Asked Questions - Renaming Users with the Administration Process (AdminP): "Can you change the default 21-day limit to something else? Sure. A complete description of how to accomplish that is documented in the Domino Administrator Help, but in the 'Rename Selected Notes People' dialog box, the number of days you want to honor the old name is listed. The default is 21 days, however, you can change that setting to any number between 14 and 60."

Renaming Users with the Administration Process (AdminP)

IBM - Frequently Asked Questions - Renaming Users with the Administration Process (AdminP):
"What happens if the user never logs in during the 21 day time period? Prior to Domino 6.5.4, the name will revert back to the original name if the user does not log in, or if the process fails to complete for some reason. Starting in Domino 6.5.4, however, a Domino administrator must approve name change reversions, so this reversion will no longer occur without an administrator's knowledge."

Friday, October 19, 2007

What is Lotus' recommended Upgrade Path for lotus 8?

In all cases, it is important that you follow the upgrade guidelines to ensure minimum feature loss with Mail and Calendaring & Scheduling.


1. Upgrade the Notes clients that administrators will use to edit and operate on the Domino Directory.
2. Upgrade the Domino Directory first (this is done by upgrading the Domino server that is the Administration Server of the Domino Directory to Domino 8.0 first).
3. Replicate the Domino Directory to the other servers.
4. Upgrade the Hub servers.
5. Upgrade the Mail servers.
6. Upgrade the SMTP servers.
7. Upgrade the Web servers.
8. Upgrade the Application servers.
9. Any third-party/companion product server (check for Notes/Domino Release 8.0 readiness).
10. Upgrade the general population of clients to Notes 8.0.
11. Replace the design of any databases/mail files with any new Notes/Domino Release 8.0 design changes last. For mail files, the Convert task should be used on the server to change the design of the mail file.

Monday, October 15, 2007

Incomplete NSD after a Domino server crash

Question
Your Domino® server crashes and the NSD file is incomplete.

The NSD will stop after running some time without any error message. When run manually. NSD does run to completion successfully.

Cause
In the Server document -> Basics tab -> Cleanup Script / NSD Maximum Execution Time field is set to 600.

Even though the faulty recovery is not enabled, the Cleanup Script /NSD Maximum Execution Time does apply to automatic NSD. In this case, nsd ran for 600 seconds and is being terminated, resulting in NSD terminating prematurely.

In Domino server 6.5.5, the auto nsd did finish in about 1 minute, even with the Cleanup Script/NSD Maximum Execution Time set to 30. (Faulty recovery not enabled)

This feature is to prevent nsd from running for too long to hinder Domino server restart. However, for some busy servers, it takes more than the default 5 minutes to finish. NSD needs to complete in order to troubleshoot the issue.


Answer
Increase Cleanup Script /NSD Maximum Execution Time from 600 to 1800. This field range is from 30 to 1800.

This will increase the time the Domino server is down from 600 seconds to 1800 seconds. In most cases, a complete nsd is required to determine the root cause of the issue.

Wednesday, October 10, 2007

Notes/Domino Best Practices: Domino Domain Monitoring (DDM)

Introduction to DDM
Domino Domain Monitoring (DDM) is the new interface and tool to view server health information across your entire Domino domain. The feature provides Domino administrators with correlated Event report documents that help find existing configuration or performance problems and ward off potential problems in the future. Collection hierarchies are available to roll up DDM.nsf data into one or more collection servers and Filter documents can be used to ensure only the event types that are important in your domain are being reported. Corrective actions allow for a high degree of customization and automation and the DDM interface provides the framework for problem management workflow.


Best practices
  1. To ensure DDM.nsf data on a collection server is available during a server outage or down time, it is highly recommended to provide redundancy of your collection server DDM.nsf databases. To accomplish this, add that collection server to another server collection hierarchy.

  2. The majority of the new DDM probes will only monitor Domino 7 servers, but there are three DDM probes that can monitor pre-Domino 7 servers: the Security, Web and Replication probes.

  3. DDM will report on more events and potential problems than most Domino administrators are normally used to seeing provided with other monitoring tools. It is highly recommended to control the volume of data into DDM with Event filters, by lowering the severity of certain Event Message documents or by permanently closing Event Report documents in DDM.

  4. Collect baselines for all servers and tailor probes according to the baseline.

  5. Disable probes during maintenance windows to avoid phantom events.

  6. Use fully qualified host names to monitor servers outside of the domain.

  7. During the upgrade from Domino 6 to Domino 7, prohibit design changes from R6 to R7 Events4.nsf.

  8. DDM will increase the load to some extent due to the behind-the-scenes replication. While this should be negligible, do not choose a heavily loaded server for a collection server.

Copy Lotus Notes databases from the Domino Server console command line

The Domino Server console commands are turned off by default, so 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 in a cluster, it doesn't matter).


    No need to restart the Domino server, it becomes active immediately. This enables this new command: CL COPY sourcedb targetdb.

    Below, I have listed some examples for the CL COPY command:

  • CL copy serverA!!db1.nsf serverB!!db2.nsf
    This creates 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 creates a replica copy of db1.nsf on serverA as db2.nsf on ServerB
  • CL copy serverA!!db1.nsf serverB!!db2.nsf TEMPLATE
    This creates a template copy (only design, no data) of db1.nsf on serverA as db2.nsf on ServerB
  • CL copy db1.nsf db2.nsf
    This creates a regular non-replica copy of db1.nsf as db2.nsf on the same local server
  • Notes/Domino Best Practices: Administration Process

    Introduction
    The Administration Process is a program that automates many routine administrative tasks such as renaming groups and people and mail file and replica management. The Domino Administration Guide provides a more thorough description of the Administration Process.

    It is vital for administrators to understand the Administration Process in order to maintain a healthy Domino environment. To that end, this document contains a list of Technotes, developerWorks articles, Redbooks and Redpapers that encompass existing Best Practices materials for Notes/Domino 6 and 7.

    General rules There are some general rules that apply to a well maintained Administration Process:

    • Only replicate from the administration server. Never replicate from another replica copy on a spoke server.

    • Always use pull-push when replicating the administration database (admin.nsf). Pull replication is important as AdminP is expecting responses back, such as acknowledgements, status or errors.

    • IBM recommends the cut-off interval be 7 to 14 days and should never be set to more than 21 days to help reduce the size of the administration database.

    • All replica copies of admin4.nsf should have identical cut-off intervals that are equal to or less than the source on the administration server. Cutoff intervals that are out of sync sometimes lead to old data reappearing.

    • If a server has been down for a long period of time, or if replication of the admin4.nsf has not occurred for several days, do not attempt to replicate, as deletion stubs may have expired. Instead, delete or rename the database and create a new replica copy from the source on the administration server. This action will prevent deleted or changed documents from being reinstated. This is good practice for all Domino applications.

    Tuesday, October 9, 2007

    IBM - Mail rules stop working after a policy containing a mail settings document is deployed

    IBM - Mail rules stop working after a policy containing a mail settings document is deployed
    Question
    Mail rules in one user's mail file stop working after a policy containing a mail settings document is deployed. And when the administrator attempts to re-open the mail settings document , the following error displays:

      "Cannot locate field definition for Field: $DPLocked"
    Cause
    Options set in mail settings documents affect user mail preferences stored in the calendar profile of mail files, which is the same location where user mail rules are stored.

    In this case, the calendar profile of the affected mail file contained a $DPLocked field. Domino Designer Help describes this field as follows:

    "A policy lock is indicated by the presence in the document of a computed field whose name is or begins with "$DPLocked" and whose value is the name of the locked field."

    Answer
    To resolve the error seen when opening the mail settings document, it was necessary to 1) replace the design of the Domino Directory using the pubnames.ntf template and 2) delete the existing the mail settings document and create a new one. Once the new mail settings document was pushed out via a policy, the user's mail rules began working again.

    Friday, October 5, 2007

    Health Statistcs are not populating the Monitoring Results (statrep.nsf) database

    Question
    What are health statistics not being written to the statrep.nsf database (Monitoring Results database) on your Lotus® Domino® server?
    Answer
    Health Monitoring is enabled on the Domino Administration client. Once enabled, Health Monitoring statistics will be generated and documented in the Server Health Monitoring section and made available only on the Domino Administrator client, where this data is written to the local workstation's statrep.nsf database.

    Statistics recorded include: disk space usage, memory allocations, swap file size, threads, users, transactions per minute, dead mail, and pending mail. This information is used to create the graphical and spreadsheet views.

    IBM - Domino server crash when performing MIME conversion

    IBM - Domino server crash when performing MIME conversion: "Domino server crash when performing MIME conversion"

    Lotus Notes Diagnostic tool available in the Lotus Sandbox

    IBM - Lotus Notes Diagnostic tool available in the Lotus Sandbox
    "A tool called Lotus Notes Diagnostic is now available from the Lotus Sandbox. It can be used to analyze NSD and other files resulting from a Lotus® Domino® server crash, hang, or performance issues."

    you can directly send the nsd file be right clicking on it.