Penguin
Diff: BackupExecNotes
EditPageHistoryDiffInfoLikePages

Differences between current version and predecessor to the previous major change of BackupExecNotes.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 9 Last edited on Wednesday, May 13, 2009 5:56:40 am by WilliamStockall
Older page: version 5 Last edited on Tuesday, September 12, 2006 10:54:30 am by CraigBox Revert
@@ -1,9 +1,9 @@
 !! Installing BackupExec on DebianLinux (10.x) 
  
 The Remote Agent has been renamed RALUS (for Remote Agent for Linux and UNIX Servers) and an excellent HOWTO on using [RALUS on Debian|http://newvibes.net/linux/backup.html] is available. 
  
-Don't forget to run <tt>update-rc.d VRTSralus.init defaults</tt> to make it start/stop appropritately
+Don't forget to run <tt>update-rc.d VRTSralus.init defaults</tt> to make it start/stop appropriately
  
 Note, you need to [have a RALUS license on your media server to use RALUS 10|http://seer.support.veritas.com/docs/276788.htm], but you can use v9 for 'free'. 
  
 !! Installing BackupExec on DebianLinux (9.x) 
@@ -12,9 +12,9 @@
  
  <verbatim> 
  #!/bin/sh 
 
- # Start/ stops the Backup Exec agent.  
+ # Starts and stops the Backup Exec agent 
  # Craig Box, 25/8/03 
  
  PATH=/sbin:/bin:/usr/sbin:/usr/bin 
  DAEMON=/usr/local/bkupexec/agent.be 
@@ -54,9 +54,37 @@
  </verbatim> 
  
 Make it executable and run <tt>update-rc.d bkupexec defaults 96</tt>, and you're away laughing. 
  
-!! "The function is not implemented" when viewing your remote agent 
+!! Can't see my agent 
  
-Check that /etc /hosts has the right details (fqdn, IP address) for the server you are running RALUS on
+Run <tt>agent.be< /tt> with <tt>-nd< /tt> to debug and use the guide for [How to read a UNIX Agent debug log | http://seer.support.veritas.com/docs/263307.htm] to find out what’s wrong
  
+!! "<tt>The function is not implemented</tt>" when viewing your remote agent  
+  
+Check that <tt>/etc/hosts</tt> has the right details ([FQDN], [IP] address) for the server you are running RALUS on.  
+  
+!! "<tt>**** getservbyname(grfs, tcp) failed! ****</tt>"  
+  
+You need an entry in <tt>/etc/services</tt>. As root,  
+  
+<verbatim>  
+echo 'grfs 6101/tcp' >> /etc/services  
+</verbatim>  
+  
+!! Not seeing the agent in the Windows server  
+  
+You need the hostname of the server you are announcing *to* in the <tt>/etc/hosts</tt> file as well.  
+  
+Check the debug log to see you're getting a connection to port 6101 (which translates in Weird VERITAS Binary to 23.213):  
+  
+ <pre>  
+ rcvr addr=10.7.13.10.23.213  
+ attempting to connect. state=0  
+ </pre>  
+  
+Telnet to that IP on port 6101 and ensure you get a response. If not, check the Agent Browser service on the Windows machine.  
+  
+[More troubleshooting notes | http://seer.entsupport.symantec.com/docs/192204.htm] are available on the VERITAS knowledge base.  
+  
+----  
 CategoryNotes