#EmmanueleTech
I prefer individual accounts over shared credentials.
When everyone has their own identity, it becomes easier to understand who has access, who made a change and whose access should be removed.
#CloudSecurity #EmmanueleTech
September 26, 2026 at 11:52 AM
Before automating a process, I want to understand it manually.
Inputs, expected results and possible failures.
Otherwise, automation can just make the wrong process happen faster.
#Automation #EmmanueleTech
September 18, 2026 at 12:07 AM
Five people need access to the same system.
Would you make all five administrators?
I wouldn’t.
I’d first understand what each person actually needs to do and assign access around those responsibilities.
#CloudSecurity #EmmanueleTech
September 27, 2026 at 12:58 AM
Incident response isn’t only technical.
While you investigate the problem, people also need to know what is happening.
You may not have the answer yet, but you can communicate what you know.
#ITOperations #EmmanueleTech
September 27, 2026 at 1:04 PM
I don’t think everyone needs administrator access just because it makes things easier.
Access should match responsibility.
Give people what they need to do their work without giving away unnecessary control.
#AccessManagement #EmmanueleTech
September 26, 2026 at 6:15 PM
What is the single point of failure?
It is one of the questions I like asking when reviewing infrastructure.
You don’t make failure impossible. You design so the failures that matter don’t take everything down.
#CloudInfrastructure #EmmanueleTech
September 22, 2026 at 12:18 AM
One question helps me a lot when troubleshooting:
What does this system depend on?
Once you understand the dependencies, you can test them instead of guessing.
#CloudEngineering #EmmanueleTech
September 20, 2026 at 6:00 PM
I like asking why before how.
How do I configure it?
Important.
Why does the architecture need it?
Just as important.
Knowing how helps you build. Understanding why helps you design.
#CloudEngineering #EmmanueleTech
September 25, 2026 at 6:51 PM
You inherit an AWS environment you didn’t build.
Everything works.
Would you start changing things?
I wouldn’t.
First I’d understand the architecture and trace how traffic, routing and access work.
Understand before you optimize.
#CloudInfrastructure #EmmanueleTech
September 26, 2026 at 1:39 AM
Knowing the tool and understanding the system are different things.
I don’t only want to know how to create infrastructure.
I want to understand how the pieces work together and what happens when something fails.
#CloudInfrastructure #EmmanueleTech
September 25, 2026 at 12:16 PM
I inherit several servers with public IPs.
I wouldn’t immediately change everything.
First I’d understand why each one is public and what depends on that access.
Secure the environment, but understand it first.
#CloudInfrastructure #EmmanueleTech
September 25, 2026 at 12:29 AM
Morning
I prefer thinking about security before deployment.
Who needs access?
What needs to be public?
Which ports are actually required?
Security works better when it is part of the design.
#CloudSecurity #EmmanueleTech
September 24, 2026 at 11:44 AM
Dashboard is green.
Servers are healthy.
But users cannot complete an important action.
I wouldn’t ignore the users because the metrics look normal.
A healthy server doesn’t always mean a healthy service.
#CloudOperations #EmmanueleTech
September 24, 2026 at 12:14 AM
The last error you see may not be where the problem started.
I like building a timeline.
What happened first?
What changed next?
That sequence can tell you more than one error message.
#Troubleshooting #EmmanueleTech
September 19, 2026 at 6:06 PM
A healthy server doesn’t always mean a healthy service.
The infrastructure can look normal while users are still having problems.
I want to know what the system sees and what the user experiences.
#CloudOperations #EmmanueleTech
September 23, 2026 at 12:38 PM
Two servers were configured the same way.
One works. The other behaves differently.
Before rebuilding anything, I’d compare their configurations and recent changes.
Sometimes the problem is configuration drift.
#CloudEngineering #EmmanueleTech
September 23, 2026 at 12:59 AM
More complex doesn’t automatically mean better infrastructure.
Every additional component has to be configured, secured, monitored and maintained.
I prefer adding complexity when it solves a real problem.
#CloudInfrastructure #EmmanueleTech
September 18, 2026 at 1:46 PM
Two architectures meet the same security, availability and performance requirements.
One is much more complex than the other.
Would complexity influence your choice?
For me, it needs to solve a real problem.
#CloudEngineering #EmmanueleTech
September 19, 2026 at 12:23 AM
Two environments can start identical and slowly become different as manual changes happen over time.
Consistency matters.
When you know what the configuration should be, troubleshooting becomes much easier.
#CloudInfrastructure #EmmanueleTech
September 22, 2026 at 12:46 PM
I don’t automate something just because I can.
When a task becomes repetitive and predictable, automation starts making sense.
The goal is consistency, not automation for its own sake.
#Automation #EmmanueleTech
September 17, 2026 at 3:18 PM
When reviewing infrastructure, I like asking:
What happens if this component disappears?
Reliability starts with accepting that things can fail and designing around the failures that matter.
#CloudInfrastructure #EmmanueleTech
September 21, 2026 at 2:24 PM
The website loads normally, but submitting data fails.
I wouldn’t immediately restart the web server.
I’d follow the request and check what happens between the application and its dependencies.
Where would you start?
#Troubleshooting #EmmanueleTech
September 21, 2026 at 12:17 AM
The component showing the error isn’t always the component causing it.
When something fails, I like following the request through its dependencies until I find where it stops.
#Troubleshooting #EmmanueleTech
September 20, 2026 at 2:11 PM
Don't design your application around a single EC2 instance.
Multiple Availability Zones + Load Balancing + Auto Scaling can help eliminate single points of failure.
Design for failure. Build for availability.
#AWS #CloudComputing #EmmanueleTech
August 8, 2026 at 1:20 PM
🐧 Linux Tip

Application stopped working?

Don't immediately reboot the server.

Check the service, logs, disk, memory and processes first:

"systemctl status"
"journalctl"
"df -h"
"free -h"
"top"

Troubleshoot before you restart.

#Linux #EmmanueleTech
August 14, 2026 at 12:27 PM