You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by se...@opensource.lk on 2004/06/12 12:05:33 UTC

Did some small modification to Linux Installation Guide

Hi all,

To our new Linux Installation Guide in the CVS I made some changes
refering to the old documentation in the site which is more descriptive.

These are the areas that I have changed.

-Installing Apache
-Installing Axis C++ - How to set environmental variables
-The Folder called deploy in the $AXISCPP_HOME/ should be copied to your
place of choice. Rename the deploy folder as "Axis" . Give all permissions
to this folder.

The diff file is also given below.

cvs diff lininstall-guide.html (in directory C:\aaa\ws-axis\c\docs\linux\cpp)
Index: lininstall-guide.html
===================================================================
RCS file: /home/cvspublic/ws-axis/c/docs/linux/cpp/lininstall-guide.html,v
retrieving revision 1.3
diff -r1.3 lininstall-guide.html
307a308,352
>
> <h3>Installing Apache</h3>
> <p>Get the apache downloadable software. (We used the source
apache_1.3.27.tar.gz). Build it with sharable module support.</p>
> <p>
> <strong>$ ./configure --enable-module=so</strong>
> </p>
> <p>Note:- Here "so" is simple letters</p>
> <p>
> <strong>$ make</strong>
> </p>
> <p>
> <strong>$ make install</strong>
> </p>
> <p>Starting the Apache server</p>
> <p>
> <strong>$ usr/local/apache/bin/apachectl start</strong>
> </p>
> <p>Stopping the Apache Server</p>
> <p>
> <strong>$ usr/local/apache/bin/apachectl stop</strong>
> </p>
> <h3>Installing Axis C++</h3>
> <strong>If you downloaded the source distribution</strong>
> <br>
> <p>Create an environment variable called AXISCPP_HOME.</p>
> <p>
> <strong>$ cd /home/axisuser</strong>
> </p>
> <p>
> <strong>[axisuser@localhost axisuser]$ vi ./.bash_profile</strong>
> </p>
> <p>
> <strong>AXISCPP_HOME="/home/axisuser/projects/axis_c"</strong>
> </p>
> <p>
> <strong>export AXISCPP_HOME</strong>
> </p>
> <p>Save it and back in the terminal window.</p>
> <p>
> <strong>$ source ~/.bash_profile</strong>
> </p>
> <p>Verify the above change had been correctly effected by typing</p>
> <p>
> <strong>$ echo $AXISCPP_HOME</strong>
> </p>
308a354
> <p> In the same manner create the following environment variables.</p>
316,319c362,374
< <p>Copy $AXISCPP_HOME/deploy folder to a place of your choice and define
AXIS_HOME pointing to it.<br>
< cp -rf $AXISCPP_HOME/deploy /usr/local/<br>
< mv /usr/local/deploy /usr/local/Axis<br>
< Give read write permissions to /usr/local/Axis<br><br>
---
> <p>The Folder called deploy in the $AXISCPP_HOME/ should be copied to
your place of choice. Rename the deploy folder as "Axis" . Give all
permissions to this folder.<br>
> <br>
> <strong>$ cp -rf $AXISCPP_HOME/deploy&nbsp; /usr/local</strong>
> <br><br>
> <strong>$ cd /usr/local</strong>
> <br><br>
> <strong>$ mv deploy Axis</strong>
> <br><br>
> <strong>$ chmod -R 777 Axis</strong>
> <br><br>
> <br>Now set the environment variable <strong>AXIS_HOME</strong> pointing
to this directory.<br>
> <strong>AXIS_HOME="/usr/local/Axis"</strong>
> <br>

Regards,

Sevwandi