- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: environment comparison
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
10-03-2007 04:53 AM
10-03-2007 04:53 AM
environment comparison
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 07:44 AM
10-03-2007 07:44 AM
Re: environment comparison
For example, we have dev, pre-production and proeduction.
Developers does not have access to pre-producition and production. Pre-production is used to ensure programs quality.
Development server is comparable in the operating system, application versions, etc, but access and permissions are less strict.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 02:35 PM
10-03-2007 02:35 PM
Re: environment comparison
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 05:24 PM
10-03-2007 05:24 PM
Re: environment comparison
If you want to compare the directory structure then something like:
On the Production box:
# cd /
# ls -lR > prod.txt
On the dev box:
# cd /
# ls -lR > dev.txt
Get prod.txt and dev.txt onto the same machine and then diff them.
# diff prod.txt dev.txt
However I somehow doubt this is what you really want to achieve...
Hope this helps,
Regards,
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2007 07:43 PM
10-03-2007 07:43 PM
Re: environment comparison
on production box as root:
cd /
find . -type d >prod.txt
on dev box as as root:
cd /
find . -type d >dev.txt
sdiff prod.txt env.txt
N.B. Using find you are able to sse also hiddien directories (starting with dot).
I also sugegst to compare the environemnt variable as well on both boxes by 'env' command. This can aslo incluence your script.
HTH,
Art