0% found this document useful (0 votes)
58 views6 pages

CC Lab-5

The document describes creating a catalog webpage for an online bookstore and uploading it to an Amazon Web Services (AWS) S3 bucket. It involves: 1) Creating an HTML file with a book catalog table 2) Saving the file as index.html 3) Creating an AWS S3 bucket and setting permissions to allow public access 4) Uploading the index.html file to the S3 bucket 5) Enabling public website hosting from the S3 bucket properties to make the catalog webpage publicly accessible.

Uploaded by

VivuEtukuru
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views6 pages

CC Lab-5

The document describes creating a catalog webpage for an online bookstore and uploading it to an Amazon Web Services (AWS) S3 bucket. It involves: 1) Creating an HTML file with a book catalog table 2) Saving the file as index.html 3) Creating an AWS S3 bucket and setting permissions to allow public access 4) Uploading the index.html file to the S3 bucket 5) Enabling public website hosting from the S3 bucket properties to make the catalog webpage publicly accessible.

Uploaded by

VivuEtukuru
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

SREE VIDYANIKETHAN ENGINEERING COLLEGE SREE SAINATH NAGAR,A.

RANGAMPET

NAME OF THE EXPERIMENT


Roll Number : Page No :

5.Develop a catalogue web page for online bookstore and create a Simple Storage Service (S3) bucket on
Amazon Web Services (AWS) cloud and upload catalogue web page into S3 bucket.

Step 1:

1.Create the Book Catalog Web Page:

<!DOCTYPE html>
<head>
<title> BOOK CATALOGUE </title>
</head>
<body>
<h2>ONLINE BOOK STORE </h2>
<table>
<tr>
<th>SNO</th>
<th>BOOK</th>
<th>AUTHOR</th>
</tr>
<tr>
<td>1</td>
<td>CLOUD COMPUTING</td>
<td>RK NARAYAN</td>
</tr>
<tr>
<td>2</td>
<td>JAVA</td>
<td>DR.Nageswar Rao</td>
</tr>
</table>
</body>
</html>

2. Save the HTML File:


Save this HTML file with a .html extension, for example, index.html.
SREE VIDYANIKETHAN ENGINEERING COLLEGE SREE SAINATH NAGAR,A.RANGAMPET

NAME OF THE EXPERIMENT


Roll Number : Page No :

Step 2: Create an AWS S3 Bucket:

1. Sign in to your AWS Management Console.

2. Open the Amazon S3 console.

3. Click the "Create bucket" button. & Choose a globally unique bucket name and select the region for
your bucket.

4. Choose Object Ownership as Enables

5. Choose all Blocked Public Access settings for the bucket & Set back to enable all listed
permissions & Acknowledge that permission are open to host website files in public .
SREE VIDYANIKETHAN ENGINEERING COLLEGE SREE SAINATH NAGAR,A.RANGAMPET

NAME OF THE EXPERIMENT


Roll Number : Page No :

6. Click "Create bucket."

7. Now Access the newly created Bucket & upload Website in Bucket
SREE VIDYANIKETHAN ENGINEERING COLLEGE SREE SAINATH NAGAR,A.RANGAMPET

NAME OF THE EXPERIMENT


Roll Number : Page No :

8. Upload the Book Catalogue Webpage ( index.html)


SREE VIDYANIKETHAN ENGINEERING COLLEGE SREE SAINATH NAGAR,A.RANGAMPET

NAME OF THE EXPERIMENT


Roll Number : Page No :

9. Access Bucket Properties & Enable public Webhosting.

10. After Enable “ Static Webhosting “ do mention index.html (first page ) & error.html page
SREE VIDYANIKETHAN ENGINEERING COLLEGE SREE SAINATH NAGAR,A.RANGAMPET

NAME OF THE EXPERIMENT


Roll Number : Page No :

11. Select the uploaded “index.html” & Make Public using ACL .

12. Browse the Object URL in CHROME Browser for Book Catalogue Hosted website .

RESULT :-

You might also like