Se alguém estiver tendo problemas com o Domino/Notes. O TN 1321009 pode ajudar a resolver o problema.
Category: <span>Uncategorized</span>
Knowledge Collection: Upgrading to Lotus Notes/Domino 8.5.1
Pessoal estou tentando uma forma de escrever em inglês para ajudar a mim mesmo (escrever melhor) e também para ajudar quem acessa este blog fora do Brasil.
Não achei ainda uma forma de publicar em dois idiomas no mesmo blog detectando o idioma do browser. Por enquanto vou misturando as coisas.
Knowledge Collection é um documento da IBM que concentra alguns documentos importantes sobre um dado problema ou produto. No link abaixo tem uma coleção sobre Upgrade do Domino
The purpose of this collection is to provide links to a select group of documents and resources that educate readers on the items and issues to take into consideration when upgrading to Lotus Notes/Domino 8.5.1…. see this TN 1407206
Ontem foi disponibilizada a última versão do Notes (8.5.1). Eu já estava utilizando a versão beta e hoje fiz o upgrade para versão gold.
A instalação foi sem problemas. Realmente vale a pena usar a nova versão pois ela faz com que as outras releases 8.x fiquem muito a desejar, especiamente na estabilidade e performance. Uma grande novidade é que o Domino Designer agora é free e já está disponÃvel no developerworks.
A partir do dia 12 de Outubro estará disponÃvel a versão 8.5.1 do Notes & Domino.
Já estou utilizando a versão 8.5.1 beta desde o seu lançamento e posso dizer que é melhor do que a 8.5.0 em muitos aspectos
principalmente performance e o Designer melhorou muito.
Uma notÃcia boa é que o Designer agora é Free.
Para acompanhar todas as notÃcias siga o blog do Ed Brill
Neste blog mesmo já publiquei alguns agentes para resolver problemas de Administração.
A IBM colocou alguns neste endereço http://www-10.lotus.com/ldd/dominowiki.nsf/dx/10022009124512AMWEB7LC.htm
Sempre que ministro cursos de Administração Domino falo com os alunos que é sempre importante saber programar.
The agent bellow will be used to make a txt file with the mail files for migration. We select a group of users and then export the mail files path to a txt file.
The txt file will be used with load convert -f
Just put the agent on the Names.nsf.
Sub Initialize
Dim ses As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Dim docPerson As NotesDocument
Dim dc As NotesDocumentCollection
Dim item As NotesItem
Dim valores As Variant
Dim vis As NotesView
‘variáveis para serem trocadas caso a caso
nomedoarquivo$=“c:file.txt”
Set db = ses.CurrentDatabase
Set vis = db.GetView(“($Users)”)
‘colocar o nome do grupo desejado
searchFormula$ = {Form = “Group” & ListName=”
Set dc = db.Search(searchFormula$, Nothing,0)
Set doc = dc.GetFirstDocument()
fileNum% = Freefile()
fileName$ = nomedoarquivo$
Open fileName$ For Output As fileNum%
‘Navega na coleção de grupos
While Not(doc Is Nothing)
‘seleciona membros do grupo
valores = doc.GetItemValue(“Members”)
For i = 0 To Ubound(valores)
nome$=doc.GetItemValue(“Members”)(i)
Set docPerson=vis.GetDocumentByKey(nome$)
correio$=docPerson.mailfile(0)
Print #fileNum%,correio$
Next
Set doc = dc.GetNextDocument(doc)
Wend
Close fileNum%
End Sub
This article on IBM DeveloperWorks show us a simple aproach on How to get old hardware and recycle it and save money.
Um problema comum é como adicionar aplciações ao workspace de uma instalação nova do Notes. Via polÃtica conseguimos adicionar bookmarks (8.x).
A alternativa que imaginei foi enviar ao usuário um correio com um botão com um código. É simples e funciona.
@Command( [AddDatabase] ; server : database ; bookmark )
Parameters:
* server: The name of the server where the database is.
* database: The path and file name of the database.
* bookmark (this parameter is new with Release 5):
Text (“0” or “1”). Optional. Specify “1” to bring up the Add Bookmark dialog box where you can select or create a folder in which the bookmark should be placed. If you specify “0” or omit this parameter, it will bookmark the database in the Databases folder. This command does not work on the web.
Fazer o download dos instaladores do Portal é sempre uma preocupação pois existem várias imagens.
Na versão 6.0.x quando fazemos download o WCM já vem “por padrão” em todos os pacotes bastando instalar e executar
wpsconfig.bat configure-wcm-authoring e teremos um Portal + WCM configurado.
Na versão 6.1 já não é assim temos de fazer download das imagens corretas.
A tabela abaixo mostra as imagens para WCM e Portal+WCM para Windows e Linux.
Até onde eu verifiquei se é necessário WCM e foi instalado somente o Portal Server deve-se reinstalar tudo usando a imagem correta. No caso do Express o instalador já tem o WCM.
Portal Express 6.1.0.1
CD number
|
Image file
|
Contents of CD
|
Windows (32-bit) |
CR7BCML
| Multilingual eAssembly |
W-Setup
|
C1TQ3ML
| Setup CD – IBM WebSphere Portal Express Install |
W-1
|
C1TQ5ML
| BM WebSphere Application Server Network Deployment for Windows x86-32 |
W-2
|
C1HA1ML
| DB2 UDB Express Edition for Windows 32-bit, V9.1 FP4 |
W-3
|
C1U2VML
| IBM WebSphere Portal Server Express component (Disk 1 of 3) |
W-4
|
C1U2YML
| IBM WebSphere Portal Server Express component (Disk 2 of 3) |
W-5
|
C1U31ML
| IBM WebSphere Portal Server Express component (Disk 3 of 3) |
Linux Intel (32-bit) |
CR7BDML
| Multilingual eAssembly |
IL-Setup
|
C1TQ3ML
| Setup CD – IBM WebSphere Portal Express Install |
IL-1
|
C1TQ8ML
| WebSphere Application Server Network Deployment for Linux on x86-32 |
IL-2
|
C1HA2ML
| DB2 UDB Express Edition for Linux on x86, 32-bit |
IL-3
|
C1U2VML
| IBM WebSphere Portal Server Express component (Disk 1 of 3) |
IL-4
|
C1U2YML
| IBM WebSphere Portal Server Express component (Disk 2 of 3) |
IL-5
|
C1U31ML
| IBM WebSphere Portal Server Express component (Disk 3 of 3) |
WebSphere Portal 6.1.0.1 + WCM
CD number
|
Image file
|
Contents of CD
|
Windows (32- and 64-bit) |
CR73XML
| Multilingual eAssembly |
W-Setup
|
C1TQ4ML
| Setup CD – IBM WebSphere Portal Server Content Install V6.1.0.1 |
W-1
|
C1TQ5ML
| BM WebSphere Application Server Network Deployment for Windows x86-32 |
W-2
|
C1TR1ML
| IBM WebSphere Application Server Network Deployment for Windows x86-64 |
W-3
|
C1U2WML
| IBM WebSphere Portal Server Content component (Disk 1 of 4) |
W-4
|
C1U2ZML
| IBM WebSphere Portal Server Content component (Disk 2 of 4) |
W-5
|
C1U32ML
| IBM WebSphere Portal Server Content component (Disk 3 of 4) |
W-5A
|
C1U36ML
| IBM WebSphere Portal Server Content component (Disc 4 of 4) |
Linux Intel (32- and 64-bit) |
CR740ML
| Multilingual eAssembly |
IL-Setup
|
C1TQ4ML
| Setup CD – IBM WebSphere Portal Server Content Install V6.1.0.1 |
IL-1
|
C1TQ8ML
| WebSphere Application Server Network Deployment for Linux on x86-32 |
IL-2
|
C1TR9ML
| IBM WebSphere Application Server Network Deployment for Linux on x86-64 |
IL-3
|
C1U2WML
| IBM WebSphere Portal Server Content component (Disk 1 of 4) |
IL-4
|
C1U2ZML
| IBM WebSphere Portal Server Content component (Disk 2 of 4) |
IL-5
|
C1U32ML
| IBM WebSphere Portal Server Content component (Disk 3 of 4) |
IL-5A
|
C1U36ML
| IBM WebSphere Portal Server Content component (Disc 4 of 4) |
WebSphere Portal 6.1.0.1
CD number
|
Image file
|
Contents of CD
|
Windows (32- and 64-bit) | CR7DVML | Multilingual eAssembly |
W-Setup
| C1TL1ML | Setup CD – BM WebSphere Portal Server Install V6.1.0.1 |
W-1
| C1TQ5ML | BM WebSphere Application Server Network Deployment for Windows x86-32 |
W-2
| C1TR1ML | IBM WebSphere Application Server Network Deployment for Windows x86-64 |
W-3
| C1U2UML | IBM WebSphere Portal Server Server component (Disk 1 of 4) |
W-4
| C1U2XML | IBM WebSphere Portal Server Server component (Disk 2 of 4) |
W-5
| C1U30ML | IBM WebSphere Portal Server Server component (Disk 3 of 4) |
W-5A
| C1U34ML | IBM WebSphere Portal Server Server component (Disc 4 of 4) |
Linux Intel (32- and 64-bit) | CR7DYML | Multilingual eAssembly |
IL-Setup
| C1TL1ML | Setup CD – BM WebSphere Portal Server Install V6.1.0.1 |
IL-1
| C1TQ8ML | WebSphere Application Server Network Deployment for Linux on x86-32 |
IL-2
| C1TR9ML | IBM WebSphere Application Server Network Deployment for Linux on x86-64 |
IL-3
| C1U2UML | IBM WebSphere Portal Server Server component (Disk 1 of 4) |
IL-4
| C1U2XML | IBM WebSphere Portal Server Server component (Disk 2 of 4) |
IL-5
| C1U30ML | IBM WebSphere Portal Server Server component (Disk 3 of 4) |
IL-5A
| C1U34ML | IBM WebSphere Portal Server Server component (Disc 4 of 4) |
Alguns comandos do router para facilitar a vida.
Tell router c > In place compaction of the mail.boxes.
Tell router d > Shows message detail (sizes, times, and hop).
Tell router e > Exits the router (same as q).
Tell router l > Lists the messages in queue and the routing state.
Tell router m > Shows memory usage by the router.
Tell router o > Lists the out of office details.
Tell router p > Pauses the router.
Tell router q > Quits the router (same as e).
Tell router r > Resumes the router from a pause state.
Tell router s > Shows the router queue state (delivery , transfer, dispatch and sweep threads).
Tell router update config > Updates the routing tables.