- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- compile on one server and moving sendmail/apache..
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
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
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-02-2002 09:33 AM
10-02-2002 09:33 AM
compile on one server and moving sendmail/apache..
I just complied sendmail/apache from source on one server. I was wondering how would I go about moving a configuration that works to another server without having to re-compile.
Thanks
~ Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 11:19 AM
10-02-2002 11:19 AM
Re: compile on one server and moving sendmail/apache..
If the architectures are identical or compatible and the build is compatible, then you should be able to tar up the build tree, ftp it over, untar, and run make install. This is recommended for apps like Sendmail that don't install in their own directories. However, if Apache is installed in its own directory (/opt/apache?), then you may be able to copy that tree assuming the archs are compatible.
As you get the configurations working on one server, simply copy sendmail.cf and httpd.conf to the other servers with appropriate modifications.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 01:26 PM
10-02-2002 01:26 PM
Re: compile on one server and moving sendmail/apache..
~ Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 02:22 PM
10-02-2002 02:22 PM
Re: compile on one server and moving sendmail/apache..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2002 08:31 AM
10-03-2002 08:31 AM
Re: compile on one server and moving sendmail/apache..
If the compiler is on PA2.0W, but the other systems are a mix of PA2.0, PA2.0W, and PA1.1, then compile with cc +DAportable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2002 11:45 AM
10-03-2002 11:45 AM
Re: compile on one server and moving sendmail/apache..
Forgive me if I haven't answered your question. I will be more specific.
Build the software on the host with the compiler (make, make all, whatever). Use the cc option +DAportable if necessary. Install the software (make install) and test.
When satisfied, transfer the build directory to the other systems by whatever means appropriate (or make it available via NFS) and just install it from there (make install). It should not attempt to recompile or relink anything since all of the binaries are already present.