Author: <span>kenio.carvalho</span>

You can use a compact command successfully with wildcards or without specifying databases on all databases in the Data folder and sub-folders but you can’t do this for templates. This prevents templates being compacted every time you issue a generic compact command. You can also run a batch command if multiple templates must be compacted.

Another workaround is to create a notepad document which lists all of the templates listed one template name per line as shown below:

Image:Templates not compacting if wildcards are used in command

This notepad document would need to be saved as file type ‘ All Files ‘ with the extension  of ‘ .ind ‘ such as ‘ templates.ind ‘ and placed in the Domino Data folder .
This file can then be specified to run compact -c against as in the following command ‘ load compact -c templates.ind

Uncategorized

I found today this paper and i think it can help new administrators or for someone start learning Domino admin.

This pdf is a preview. If you want the full version go to this link

Uncategorized

Go to the link on the top and click

Image:How to get the version of iNotes and the build

You will see a window like this

Image:How to get the version of iNotes and the build

Uncategorized

This link show how to use the command ps on linux.

Sometimes you need to know the process id and then kill him ๐Ÿ™‚

Show All Running Processes in Linux

When Domino will have this feature?

Uncategorized

I have 3 Domino Servers installed on top of Linux.
Eight months without logon as a root.   After 15 days of vacation and then i forgot the password ๐Ÿ™‚

This link  show how to reset the root password

Uncategorized

Today me and some colleagues saw the OGS using the internet.
Good image and sound

Image:Lotusphere OGS from Internet

Uncategorized

Some new features was addet to calendar profile.   After convert some users from 7.0.4 to 8.5.2 some problems arrived.

I deleted the profile using the LotusScript  and instruct the user to recreate the profile.

Just put the code bellow in a button and send to the user.

Sub Click(Source as Button)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set db=session.CurrentDatabase
Set doc=db.GetProfileDocument(“CalendarProfile”)
Call doc.remove(True)
If doc Is Nothing Then
MsgBox “Profile Document Was Successfully Removed”
Else
MsgBox “Profile Document WAS NOT Removed”,48
End if
End Sub

Uncategorized

From TN 1449358

  1. Increase the “Minimum size of object before Domino will store in DAOS” setting to the newly desired value in the server document.  Note:  Do not use special characters such as commas or periods when entering the minimum size.
  2. Restart the Domino server to enable the new minimum size.
  3. Run a copy style compact (compact -c) on all databases that currently have DAOS enabled to allow the server  to bring the small attachments back into the mail file.
  4. Wait for the “object deletion” interval to pass for prune to remove the small .nlo files.  If you have taken a recent backup and would like to delete the small files more immediately you can run the following command:

tell  daosmgr  prune  <#_of_days_since _last_full_backup>

In order to ensure you have all data saved in a disaster recovery situation you must not set your “defer object deletion” less than the largest number of days between full saves.

  1. Change the “Defer object deletion” interval to your newly desired value.
  2. Wait for prune to run at 2:00 a.m. or start manually with the console command:

tell  daosmgr  prune <#_of_days_to_retain_nlo_files>

Uncategorized

If you wish to recompile all the LotusScript  you need Notes 8.5.2

Title:

Recompile all LotusScript does not recompile all LotusScript in Domino Designer 8.5.1

Product:

Lotus Domino  >  Lotus Domino Designer  >  Version 8.5.1

Platform(s):

Windows

Date:

10/01/2011

Doc Number:

1452121

Problem

The “Recompile All LotusScript” function does not work as expected in Domino Designer 8.5.1.

Content

This issue is fixed in 8.5.2

Fix details:  SPR# BHUY84SEG9

Refer to the Upgrade Central site for details on upgrading Notes/Domino.

Uncategorized