Deployed 4239ecf with MkDocs version: 1.2.3

This commit is contained in:
github-actions
2024-07-28 12:08:43 +00:00
parent f44a0152c4
commit a6af87660e
61 changed files with 1686 additions and 1410 deletions

View File

@@ -334,7 +334,7 @@
<li class="md-nav__item">
<a href="#useful-courses-and-tutorials" class="md-nav__link">
Useful Courses and tutorials
Useful Courses and Tutorials
</a>
</li>
@@ -2146,7 +2146,7 @@
<li class="md-nav__item">
<a href="#useful-courses-and-tutorials" class="md-nav__link">
Useful Courses and tutorials
Useful Courses and Tutorials
</a>
</li>
@@ -2165,7 +2165,7 @@
<h1 id="conclusion">Conclusion</h1>
<p>We have covered the basics of Linux operating systems and basic commands used in linux.
<p>We have covered the basics of Linux operating systems and basic commands used in Linux.
We have also covered the Linux server administration commands.</p>
<p>We hope that this course will make it easier for you to operate on the command line.</p>
<h2 id="applications-in-sre-role">Applications in SRE Role</h2>
@@ -2176,12 +2176,12 @@ We have also covered the Linux server administration commands.</p>
<li><code>tail</code> command is very useful to view the latest data in the log file.</li>
<li>Different users will have different permissions depending on their roles. We will also not want everyone in the company to access our servers for security reasons. Users permissions can be restricted with <code>chown</code>, <code>chmod</code> and <code>chgrp</code> commands.</li>
<li><code>ssh</code> is one of the most frequently used commands for a SRE. Logging into servers and troubleshooting along with performing basic administration tasks will only be possible if we are able to login into the server.</li>
<li>What if we want to run an apache server or nginx on a server? We will first install it using the package manager. Package management commands become important here.</li>
<li>Managing services on servers is another critical responsibility of a SRE. Systemd related commands can help in troubleshooting issues. If a service goes down, we can start it using <code>systemctl start</code> command. We can also stop a service in case it is not needed.</li>
<li>Monitoring is another core responsibility of a SRE. Memory and CPU are two important system level metrics which should be monitored. Commands like <code>top</code> and <code>free</code> are quite helpful here.</li>
<li>If a service is throwing an error, how do we find out the root cause of the error ? We will certainly need to check logs to find out the whole stack trace of the error. The log file will also tell us the number of times the error has occurred along with time when it started.</li>
<li>What if we want to run an Apache server or NGINX on a server? We will first install it using the package manager. Package management commands become important here.</li>
<li>Managing services on servers is another critical responsibility of a SRE. <code>systemd</code>-related commands can help in troubleshooting issues. If a service goes down, we can start it using <code>systemctl start</code> command. We can also stop a service in case it is not needed.</li>
<li>Monitoring is another core responsibility of a SRE. Memory and CPU are two important system-level metrics which should be monitored. Commands like <code>top</code> and <code>free</code> are quite helpful here.</li>
<li>If a service throws an error, how do we find out the root cause of the error? We will certainly need to check logs to find out the whole stack trace of the error. The log file will also tell us the number of times the error has occurred along with time when it started.</li>
</ol>
<h2 id="useful-courses-and-tutorials">Useful Courses and tutorials</h2>
<h2 id="useful-courses-and-tutorials">Useful Courses and Tutorials</h2>
<ul>
<li><a href="https://courses.edx.org/courses/course-v1:LinuxFoundationX+LFS101x+1T2020/course/">Edx basic linux commands course</a></li>
<li><a href="https://courses.edx.org/courses/course-v1:RedHat+RH066x+2T2017/course/">Edx Red Hat Enterprise Linux Course</a></li>