HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - rdist and ignite
 
Operating System - HP-UX
        1840174
        Members
    
    
        2896
        Online
    
    
        110162
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              Forums
Discussions
Forums
- Data Protection and Retention
 - Entry Storage Systems
 - Legacy
 - Midrange and Enterprise Storage
 - Storage Networking
 - HPE Nimble Storage
 
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
 - Appliance Servers
 - Alpha Servers
 - BackOffice Products
 - Internet Products
 - HPE 9000 and HPE e3000 Servers
 - Networking
 - Netservers
 - Secure OS Software for Linux
 - Server Management (Insight Manager 7)
 - Windows Server 2003
 - Operating System - Tru64 Unix
 - ProLiant Deployment and Provisioning
 - Linux-Based Community / Regional
 - Microsoft System Center Integration
 
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
Topic Options
			
				
					
	
			
		
	- Subscribe to RSS Feed
 - Mark Topic as New
 - Mark Topic as Read
 - Float this Topic for Current User
 - Bookmark
 - Subscribe
 - Printer Friendly Page
 
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
04-07-2005 01:57 AM
04-07-2005 01:57 AM
			
				
					
						
							rdist and ignite
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hello,
Another question:)
Here is a problem..
I have ignite server. I would like to either rdist or copy some files from the main servers (1 HP-UX 11.00 and 1 HP-UX 11.11 versions).
How can i rdist files
1. i need to tell it where to rdist it to...in other words the name of a server that i'm igniting. Is there some kind of a variable that is set during installation that i can just put into the script? Or..? I don't have to use rdist..if you have any suggestions..please let me know:)
2. Scripts will be running from ignite server, which is a 11.00 box. 11.11 files are located on a different 11.11 server. I guess i could make it ssh first to the 11.11 server and then from there rsh to the igniting host.
ssh root@host 'rdist -f /var/opt/ignite/scripts/rdist.dev'
Sorry if i sound confused...hope you can understand my problem.
Thank you!
Asya
		
		
	
	
	
Another question:)
Here is a problem..
I have ignite server. I would like to either rdist or copy some files from the main servers (1 HP-UX 11.00 and 1 HP-UX 11.11 versions).
How can i rdist files
1. i need to tell it where to rdist it to...in other words the name of a server that i'm igniting. Is there some kind of a variable that is set during installation that i can just put into the script? Or..? I don't have to use rdist..if you have any suggestions..please let me know:)
2. Scripts will be running from ignite server, which is a 11.00 box. 11.11 files are located on a different 11.11 server. I guess i could make it ssh first to the 11.11 server and then from there rsh to the igniting host.
ssh root@host 'rdist -f /var/opt/ignite/scripts/rdist.dev'
Sorry if i sound confused...hope you can understand my problem.
Thank you!
Asya
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
04-07-2005 02:12 AM
04-07-2005 02:12 AM
			
				
					
						
							Re: rdist and ignite
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Since you've got ssh installed you could easily use rcp or rsync.  rcp would cover you for copying files, rsync would work if you're trying to keep two sets of directories looking the same.
					
				
			
			
				
		
		
	
	
	
	We are the people our parents warned us about --Jimmy Buffett
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
04-07-2005 02:20 AM
04-07-2005 02:20 AM
			
				
					
						
							Re: rdist and ignite
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						but inside the rdist file, there is a line:
HOSTS = ( root@hostname )
How can i let rdist file know the name of the new server without manually modifying the file? As I said, is there a variable..?
Thanks!
		
		
	
	
	
HOSTS = ( root@hostname )
How can i let rdist file know the name of the new server without manually modifying the file? As I said, is there a variable..?
Thanks!
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
07-01-2005 02:28 AM
07-01-2005 02:28 AM
			
				
					
						
							Re: rdist and ignite
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						This is a bit late, but...
Current rdist versions support variable (e.g., $HOSTS, $FILES) assignment via the command line as in the following examples:
rdist -d "HOSTS = bambam"
Or, if you want to get a little fancier:
rdist -d "HOSTS = ( $(cat /etc/myhosts) )"
Check the rdist man page.
		
		
	
	
	
Current rdist versions support variable (e.g., $HOSTS, $FILES) assignment via the command line as in the following examples:
rdist -d "HOSTS = bambam"
Or, if you want to get a little fancier:
rdist -d "HOSTS = ( $(cat /etc/myhosts) )"
Check the rdist man page.
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP