Changes between Version 4 and Version 5 of WebServerExample


Ignore:
Timestamp:
12/08/14 17:09:06 (9 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WebServerExample

    v4 v5  
    1313
    1414 * You have GENI credentials to obtain GENI resources. (If not, see SignMeUp).
    15  * You are able to use '''Flack''' to request GENI resources.  (If not, see [https://www.protogeni.net/trac/protogeni/wiki/FlackTutorial the Flack tutorial]).
     15 * You are able to use to request GENI resources using '''Jacks''' or '''Flack'''.  (If not, see [http://groups.geni.net/geni/wiki/GENIExperimenter/Tutorials/RunHelloGENI the Hello GENI tutorial]).
    1616 * You are comfortable using '''ssh''' and executing basic commands using a UNIX shell.  [wiki:HowTo/LoginToNodes Tips about how to login to GENI hosts].
    1717 * You are comfortable with coding in '''C or C++'''
     
    2323 * submit for sliver creation (also fine to use omni, if you prefer). Your sliver should look something like this:
    2424
    25 [[Image(WebsrvExampleSliver.png, 50%)]]
     25[[Image(WebsrvExampleSliverJacks.png, 50%)]]
    2626
    2727In this setup, there is one host acting as a web server. To test that the webserver is up visit the web page of the Server host, use either of the following techniques:
    28    * Press on the (i) button in Flack and then press the Visit button, or
    29    * Open a web browser and go to the webpage !http://<pcname>.emulab.net. In the above example this would be !http://pc484.emulab.net.
     28   * Open a web browser and go to the webpage !http://<hostname>. In the above example this would be !http://pc484.emulab.net, or
     29   * Press on the (i) button in Flack and then press the Visit button.
    3030
    3131If the installation is successful you should see a page that is similar to this:
     
    4242  * To '''Stop''' the webserver run:
    4343    {{{
    44 sudo /sbin/service httpd stop
     44sudo service apache2 stop
    4545    }}}
    4646    To verify that you have stopped the webserver, try to visit the above web page, you should get an error. (You may need to refresh your browser, if it has cached the page from a previous visit.)
     
    4848  *  To '''Start''' the webserver run:
    4949    {{{
    50 sudo /sbin/service httpd start
     50sudo service apache2 start
    5151    }}}
    5252