Main Page: Difference between revisions
From Cramsession
Jump to navigationJump to search
✍️ Verified Author: MediaWiki default • Click to view professional profile & credentials
No edit summary |
No edit summary |
||
| Line 20: | Line 20: | ||
{{Special:NewPages/4}} | {{Special:NewPages/4}} | ||
</div> | </div> | ||
Revision as of 00:54, 16 May 2026
Latest Verified Guides
- 23:39, 7 June 2026 Study Guides/AWS Cybersecurity Notes/Parsing logs and events (hist | edit) [3,145 bytes] Mflavell (talk | contribs) (Created page with "= Important points to consider = :* Build a resillant storage solution. :* Store log files centrally. :* Ensure integirity is maintained. :* Know retention policies. :* Know the process for adding new logs. :* Who to grant read access to. :* Monitor storage. = Soring logs in S3 = The obvious solution. :: Provdies resiliant long term storage for data. :: The problem with S3 is the ability to search files - it's just a file system not an RDB. == S3 has sever...")
- 00:34, 6 June 2026 Study Guides/AWS Cybersecurity Notes/AWS EventBridge (hist | edit) [1,373 bytes] Mflavell (talk | contribs) (Created page with "= AWS Eventbridge = Eventbridge enables imlementation of loose coupling. :: Services have little dependnece on each other. :: Changes to one component does not have a massive impact on the other. :: Provides greater flexability. Eventbridge is serverless. :: Allows you to connect aws services and components with 3rd party systems. ::* Events are pushed to an event bus. ::* Rules trigger the forwarding of events to targets. === Event Driven Architecture === T...")
- 00:35, 4 June 2026 Study Guides/AWS Cybersecurity Notes/CloudWarch (hist | edit) [3,191 bytes] Mflavell (talk | contribs) (Created page with "= CloudWatch = CoudlWatch collects logging infomration. :: Can come from EC2, Route 53, and CloudTrail :: It is the standard way in AWS to monitor services. CloudWatch Metrics: ::* Built in monitoring and reporting. ::* Alarms can be created that send to SNS topics. ::* Graphical dashboards can be created. == What can cloudwatch be used for == :* Monitoring log data. :* Log Metrics and filters. :* Threshold alarms - alarms after something happens - eg 4 fai...")
- 17:58, 1 June 2026 Computer Notes/GIT (hist | edit) [551 bytes] Mflavell (talk | contribs) (Created page with "= Setting up a private GIT repo in linux = Generate an SSH key: ssh-keygen -t ed25519 -C "your_email@example.com" '''The email must match your github email!!!''' Start the SSH agent & Add your key: eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_ed25519 Copy the public key: cat ~/.ssh/id_ed25519.pub Add the key to github: ::* Go to Settings -> SSH and GPG keys -> New SSH Key. ::* Give it a title (like "Linux Desktop"), paste the key into the field, and save....")