Skip to content

Commit

Permalink
deploy: 06238f7
Browse files Browse the repository at this point in the history
  • Loading branch information
shreya-ahujaa committed May 24, 2023
1 parent db70027 commit dc7d164
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions 2023/05/16/RDStutorial.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ <h2 id="Further-Research/More-Information:">Further Research/More Information:<a
</ul>
</li>
</ul>
<h2 id="Even-More-Information">Even More Information<a class="anchor-link" href="#Even-More-Information"> </a></h2><ul>
<li>Follow these Youtube Links for More Information on RDS on AWS<ul>
<li><a href="https://www.youtube.com/watch?v=GvUaA9cygUk">https://www.youtube.com/watch?v=GvUaA9cygUk</a></li>
<li><a href="https://www.youtube.com/watch?v=tLp8pPNdDXQ&amp;pp=ygUHcmRzIGF3cw%3D%3D">https://www.youtube.com/watch?v=tLp8pPNdDXQ&amp;pp=ygUHcmRzIGF3cw%3D%3D</a></li>
<li><a href="https://www.youtube.com/watch?v=vp_uulb5phM&amp;pp=ygUHcmRzIGF3cw%3D%3D">https://www.youtube.com/watch?v=vp_uulb5phM&amp;pp=ygUHcmRzIGF3cw%3D%3D</a></li>
</ul>
</li>
</ul>

</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions assets/css/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/js/search-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

,"post7": {
"title": "RDS Tutorial",
"content": "What is RDS? . Simple Definition: Rather than having a database stored on a local file, the RDS database is stored on the cloud. . Further Research/More Information: . RDS: Relational Database Service a web service provided by Amazon Web Services (AWS) that allows individuals to set up, operate, and scale a database while storing it in the cloud | RDS makes it easy to set up, operate, and scale a MySQL database instance in the case of AP Computer Science at Del Norte High Schools | . | . By using RDS, individuals can offload the administrative tasks of database management . examples: hardware provisioning, software patching, backups, and database scaling, to AW | RDS takes care of the underlying infrastructure allowing more time to work on website features | . | Key Features and Benefits of RDS: . Managed service: AWS manages the infrastructure, database setup, patching, and backups, reducing your administrative burden. | Scalability: RDS allows you to scale your database instance up or down based on a users needs, which ensures efficiency | Security: RDS provides built-in security features, such as encryption at rest and in transit, network isolation, and user access control | Automated software patching: RDS can automatically apply patches and updates to the database software, reducing downtime and ensuring security. | Stores information in the cloud instead of just locally --&gt; can not be easily deleted and ruined | . | . Overall Takeaway: RDS simplifies the process of deploying and managing relational databases, making it a popular choice for many organizations seeking a scalable and reliable database solution in the cloud | . | . Creating the RDS Database Instance . Instructions here . In pom.xml, add the following dependencies: . &lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-data-jpa&lt;/artifactId&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.postgresql&lt;/groupId&gt; &lt;artifactId&gt;postgresql&lt;/artifactId&gt; &lt;scope&gt;runtime&lt;/scope&gt; &lt;/dependency&gt; . In application.properties, add the following configurations: . spring.datasource.url=jdbc:postgresql://&lt;database-endpoint-url&gt;:&lt;port&gt;/&lt;database&gt; spring.datasource.username=YOUR_USERNAME spring.datasource.password=YOUR_PASSWORD spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect spring.jpa.hibernate.ddl-auto=update spring.jpa.hibernate.show-sql=true . Now, the spring application is connected to the RDS database in the cloud. . Using the Database . After setting up the RDS database, you should be able to work with spring as usual. . https://nirajsonawane.github.io/2022/04/18/Spring-Boot-AWS-RDS/ .",
"content": "What is RDS? . Simple Definition: Rather than having a database stored on a local file, the RDS database is stored on the cloud. . Further Research/More Information: . RDS: Relational Database Service a web service provided by Amazon Web Services (AWS) that allows individuals to set up, operate, and scale a database while storing it in the cloud | RDS makes it easy to set up, operate, and scale a MySQL database instance in the case of AP Computer Science at Del Norte High Schools | . | . By using RDS, individuals can offload the administrative tasks of database management . examples: hardware provisioning, software patching, backups, and database scaling, to AW | RDS takes care of the underlying infrastructure allowing more time to work on website features | . | Key Features and Benefits of RDS: . Managed service: AWS manages the infrastructure, database setup, patching, and backups, reducing your administrative burden. | Scalability: RDS allows you to scale your database instance up or down based on a users needs, which ensures efficiency | Security: RDS provides built-in security features, such as encryption at rest and in transit, network isolation, and user access control | Automated software patching: RDS can automatically apply patches and updates to the database software, reducing downtime and ensuring security. | Stores information in the cloud instead of just locally --&gt; can not be easily deleted and ruined | . | . Overall Takeaway: RDS simplifies the process of deploying and managing relational databases, making it a popular choice for many organizations seeking a scalable and reliable database solution in the cloud | . | . Even More Information . Follow these Youtube Links for More Information on RDS on AWS https://www.youtube.com/watch?v=GvUaA9cygUk | https://www.youtube.com/watch?v=tLp8pPNdDXQ&amp;pp=ygUHcmRzIGF3cw%3D%3D | https://www.youtube.com/watch?v=vp_uulb5phM&amp;pp=ygUHcmRzIGF3cw%3D%3D | . | . Creating the RDS Database Instance . Instructions here . In pom.xml, add the following dependencies: . &lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-data-jpa&lt;/artifactId&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt; &lt;artifactId&gt;spring-boot-starter-web&lt;/artifactId&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.postgresql&lt;/groupId&gt; &lt;artifactId&gt;postgresql&lt;/artifactId&gt; &lt;scope&gt;runtime&lt;/scope&gt; &lt;/dependency&gt; . In application.properties, add the following configurations: . spring.datasource.url=jdbc:postgresql://&lt;database-endpoint-url&gt;:&lt;port&gt;/&lt;database&gt; spring.datasource.username=YOUR_USERNAME spring.datasource.password=YOUR_PASSWORD spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect spring.jpa.hibernate.ddl-auto=update spring.jpa.hibernate.show-sql=true . Now, the spring application is connected to the RDS database in the cloud. . Using the Database . After setting up the RDS database, you should be able to work with spring as usual. . https://nirajsonawane.github.io/2022/04/18/Spring-Boot-AWS-RDS/ .",
"url": "https://mnarayan1.github.io/csa-fastpages/2023/05/16/RDStutorial.html",
"relUrl": "/2023/05/16/RDStutorial.html",
"date": " • May 16, 2023"
Expand Down
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.1.1">Jekyll</generator><link href="https://mnarayan1.github.io/csa-fastpages/feed.xml" rel="self" type="application/atom+xml" /><link href="https://mnarayan1.github.io/csa-fastpages/" rel="alternate" type="text/html" /><updated>2023-05-24T00:17:39-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/feed.xml</id><title type="html">fastpages</title><subtitle>An easy to use blogging platform with support for Jupyter Notebooks.</subtitle><entry><title type="html">Test Corrections</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/test-corrections.html" rel="alternate" type="text/html" title="Test Corrections" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/test-corrections</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[2014 MCQ Practice]]></summary></entry><entry><title type="html">Group Lesson Homework Assignments</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/group-lesson-homework.html" rel="alternate" type="text/html" title="Group Lesson Homework Assignments" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/group-lesson-homework</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[Homework from Unit 1-5 Lessons (6 was ours)]]></summary></entry><entry><title type="html">Unit 8 - 2D Array HW</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/darray-hw.html" rel="alternate" type="text/html" title="Unit 8 - 2D Array HW" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/darray-hw</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[2D array hacks]]></summary></entry><entry><title type="html">API</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/api.html" rel="alternate" type="text/html" title="API" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/api</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[Using RapiAPI and creating a Web Service]]></summary></entry><entry><title type="html">ArrayList</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/arraylist.html" rel="alternate" type="text/html" title="ArrayList" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/arraylist</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[Demonstrates usage of Lists and ArrayLists]]></summary></entry></feed>
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.1.1">Jekyll</generator><link href="https://mnarayan1.github.io/csa-fastpages/feed.xml" rel="self" type="application/atom+xml" /><link href="https://mnarayan1.github.io/csa-fastpages/" rel="alternate" type="text/html" /><updated>2023-05-24T00:19:25-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/feed.xml</id><title type="html">fastpages</title><subtitle>An easy to use blogging platform with support for Jupyter Notebooks.</subtitle><entry><title type="html">Test Corrections</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/test-corrections.html" rel="alternate" type="text/html" title="Test Corrections" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/test-corrections</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[2014 MCQ Practice]]></summary></entry><entry><title type="html">Group Lesson Homework Assignments</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/group-lesson-homework.html" rel="alternate" type="text/html" title="Group Lesson Homework Assignments" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/group-lesson-homework</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[Homework from Unit 1-5 Lessons (6 was ours)]]></summary></entry><entry><title type="html">Unit 8 - 2D Array HW</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/darray-hw.html" rel="alternate" type="text/html" title="Unit 8 - 2D Array HW" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/darray-hw</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[2D array hacks]]></summary></entry><entry><title type="html">API</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/api.html" rel="alternate" type="text/html" title="API" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/api</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[Using RapiAPI and creating a Web Service]]></summary></entry><entry><title type="html">ArrayList</title><link href="https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/arraylist.html" rel="alternate" type="text/html" title="ArrayList" /><published>2023-05-23T00:00:00-05:00</published><updated>2023-05-23T00:00:00-05:00</updated><id>https://mnarayan1.github.io/csa-fastpages/jupyter/2023/05/23/arraylist</id><author><name></name></author><category term="jupyter" /><summary type="html"><![CDATA[Demonstrates usage of Lists and ArrayLists]]></summary></entry></feed>

0 comments on commit dc7d164

Please sign in to comment.