Are you preparing for an SQL interview? This blog covers essential SQL interview questions and practical answers, from basic queries to complex JOINs and database operations. Strengthen your knowledge and increase your chances of success with this comprehensive guide.
Vim Cheat Sheet: Essential Commands for Linux Beginners
Unlock the potential of Vim! Dive into essential commands for beginners in Linux editing. Enhance your productivity with this versatile tool. Learn how to navigate, edit, and customize your files effortlessly
10 Tips to Land Your First Technical Support Job
Breaking into the tech industry and securing your first technical support job may seem challenging, especially as a fresh graduate. However, don’t let the difficulty discourage you from pursuing a rewarding career in IT. In this article, we will guide you through the essential steps to land your first tech support job. Whether you’re a recent graduate or know someone who fits the description, these top 10 tips will provide valuable insights and help you make your mark in the technical support field. Get ready to embark on your journey towards a successful tech career!
SIP Troubleshooting using Wireshark
Wireshark, a free and open-source packet capture and analysis tool, lets you monitor and analyze network traffic with ease. It’s perfect for resolving VOIP/SIP and other network issues. In this article, we delve into how Wireshark captures SIP traffic, empowering you to identify and troubleshoot problems with SIP signaling effortlessly. Explore the remarkable capabilities of Wireshark and enhance your network troubleshooting abilities.
Vim Essentials: Tips and Tricks for Boosting Productivity
Do you spend a lot of time working in a command-line environment, editing and managing files using text editors? If so, then you know that having a good command over these tools can significantly increase your productivity and add value to your work. That’s where Vim comes in. If you’re new to Vim or just looking to brush up your skills, then come take a dive with me as we explore how Vim can benefit you and make your work more productive and enjoyable.
Setting Up a Local Yum Repository
Yum package manager allows users to install, update and remove software package in RedHat based linux systems, Yum uses repositories defined in yum.repos.d directory to download the packages and dependencies, in scenarios where public access is not available we can setup local yum repositories to ease the package management on our linux systems, In this blog we take a look at different options and steps to configure local yum repos.
How to Identify High Potential Candidates for Technical Support
Gartner defines High-Potential Employee (HIPO) as “A high-potential employee (HIPO) is someone with the ability, engagement, and aspiration to rise to and succeed in more senior, critical positions. Given the right opportunities, technical support engineers can progress in various verticals and even reach leadership positions. Therefore, identifying high-potential technical support candidates is crucial for building a successful technical support team and creating a talent pool of high-performing resources for the organization. In this article, we will discuss some tips for identifying high-potential technical support candidates.
Small Wins Lead to Big Success
The journey to success is never easy, but it’s important to celebrate the little successes throughout this journey. These small successes, when added together, can lead to significant achievements over time. This was certainly true for me as a fresh-faced college graduate in the engineering field. When I started I was not even sure where to fitin, but small successes over time helped me carve a successful career journey
Using rsyslog with CLI
Refer to understanding linux logging for understaning more about syslogs and linux logging
Here we discuss about using rsyslog wih cli, and how it can be used to log messages through CLI and also send priority messages
Log Messages
We can run the command logger to log messages from command line
[root@midas rsyslog.d]# logger "hello this is the message"
[root@midas rsyslog.d]# cat /var/log/messages | grep hello
Sep 29 19:36:38 midas /usr/libexec/gdm-wayland-session[2503]: hello,, this is secured , please dont use if you dont have unauthorized access
Oct 1 21:50:36 midas root[4555]: hello this is the message
[root@midas rsyslog.d]#
Sending rsyslog messages with priority
Priority is a critical part of logging, we need to set the priority of the message basis its severity.
Emergency Priority
Messages with emergency priority are configured such as they get rerouted to console, terminals, and ssh sessions. rsyslog allows such messages to be sent through cli which allows them to be immediately viewed by the other uses.
Run the following command from any terminal
[root@midas rsyslog.d]# logger -p emerg "this is the emergency message"
You will get following message on all the terminals
[centos@midas ~]$
Broadcast message from systemd-journald@midas (Sat 2022-10-01 21:55:43 IST):
root[4607]: this is the emergency message
Message from syslogd@midas at Oct 1 21:55:43 ...
root[4607]:this is the emergency message