Tivoli Storage Manager: daily report
luglio 24, 2009 by admin
Filed under Tivoli Storage Manager
Il daily report verifica il funzionamento del sistema TSM, generando “ STAMPE “ di query“ e automatizzando l’invio sulla casella di posta elettronica, delle elaborazioni del sistema server di backup.
- Da Start, sulla barra delle applicazioni, selezionare Programmi → Tivoli Storage Manager → Management Console. - Sul Management Console, fare clic destro Tivoli Storage Manager e selezionare Aggiungi TSM computer.
- inserire il nome della macchina.
Seleziona un sistema operativo.
Check Includi Rapporto Caratteristiche di reportistica.
Check TSM Web Administrator per consentire alla console di gestione di comunicare con il server.
Specifica le informazioni sul server:
* Nome del server
* Il protocollo TCP / IP
* Porta TCP / IP
* HTTP Port
Aggiungi
Al termine si dovrebbero visualizzare le informazioni immesse, come il nome del server e il protocollo TCP / IP.
Fare clic su OK.
E’ possibile Specificare informazioni di temporizzazione
Ed Inserire un numero di versioni web. La versione Web si riferisce al numero di copie del report che si desidera visualizzare in una pagina Web .
www.andreabelvedere.info
Related posts
Server TCP in VB NET
Questo codice in VB NET è l’esempio di come si possa costruire un piccolo server TCP. Resta in ascolto su di una determinata porta di una connessione da parte di un client.
Tags: Socket, TCP, VB NETImports System.Net.Sockets
Imports System.Text
Class TCPSrv
Shared Sub Main()
‘ Must listen on correct port- must be same as port client wants to connect on.
Const portNumber As Integer = 8000
Dim tcpListener As New TcpListener(portNumber)
tcpListener.Start()
Console.WriteLine("Waiting for connection…")
Try
‘Accept the pending client connection and returnDim tcpClient As TcpClient = tcpListener.AcceptTcpClient()
Console.WriteLine("Connection accepted.")
‘ Get the stream
Dim networkStream As NetworkStream = tcpClient.GetStream()
‘ Read the stream into a byte array
Dim bytes(tcpClient.ReceiveBufferSize) As Byte
networkStream.Read(bytes, 0, CInt(tcpClient.ReceiveBufferSize))
‘ Return the data received from the client to the console.
Dim clientdata As String = Encoding.ASCII.GetString(bytes)
Console.WriteLine(("Client sent: " + clientdata))
Dim responseString As String = "Connected to server."
Dim sendBytes As [Byte]() = Encoding.ASCII.GetBytes(responseString)
networkStream.Write(sendBytes, 0, sendBytes.Length)
Console.WriteLine(("Message Sent /> : " + responseString))
‘Any communication with the remote client using the TcpClient can go here.
‘Close TcpListener and TcpClient.
tcpClient.Close()
tcpListener.Stop()
Console.WriteLine("exit")
Console.ReadLine()
Catch e As Exception
Console.WriteLine(e.ToString())
Console.ReadLine()
End Try
End Sub
End Class

