Changes between Version 7 and Version 8 of Internal/VirtualPL/IntegratedExpt
- Timestamp:
- Sep 19, 2006, 3:32:35 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/VirtualPL/IntegratedExpt
v7 v8 40 40 You might need to configure Apache server for the Planet Lab nodes. This can be done as follows 41 41 42 1. ssh to the appropriate planet lab node from the grid console 42 43 1.ssh to the appropriate planet lab node from the grid console 43 44 44 45 ssh -v -l orbit_pkamat pli1.pa-3.hpl.hp.com 46 45 47 46 2.Check if httpd is already installed using the following command48 2.Check if httpd is already installed using the following command 47 49 48 50 rpm -q httpd 49 51 50 3. If not installed use yum to install it as follows 52 53 3.If not installed use yum to install it as follows 51 54 52 55 sudo yum update 53 56 sudo yum -y install httpd 54 57 55 4. Then configure the Apache server using httpd.conf. Search for Listen. The default port would be given as 80. Change this to 8080 as port 80 cannot be used. 58 59 4.Then configure the Apache server using httpd.conf. Search for Listen. The default port would be given as 80. Change this to 8080 as port 80 cannot be used. 56 60 57 61 Listen 80 … … 61 65 62 66 67 5.The video file has to be copied on to the planet lab node. The scp command is used for this purpose. Supposing the video file name is inc.avi 63 68 64 5 69 scp inc.avi orbit_pkamat@pli1.pa-3.hpl.hp.com 70 71 72 6.The configure file httpd.conf has to be edited once again. Search for documentroot. This is the main user directory. Change the path to the place where the video file is located. 73 74