Ankit Pateltechopss.space·Nov 14, 2023create a user with the required permission on MYSQL RDS.CREATE USER 'devops'@'%' IDENTIFIED BY 'devOps_'; grants the required permissions. GRANT SELECT, INSERT, UPDATE, CREATE, RELOAD, SHOW DATABASES ON . TO devops@'%' with grant option; FLUSH PRIVILEGES; verfiying DROP and ALTER permissons that we didn...Discuss#90daysofdevops
AQIB HAFEEZaqibhafeez473.hashnode.dev·Sep 28, 2023Day 19 || User and Group Configuration Files in LinuxIntroduction Linux, with its robust security features and multi-user capabilities, relies on various configuration files to manage users and groups effectively. In this article, we will explore essential Linux configuration files such as /etc/passwd,...Discuss·85 readsLinux
Derek Onwudiwetecheffect.hashnode.dev·Aug 30, 2023Some Linux Security ToolLinux offers a variety of powerful security tools that administrators can utilize to enhance system security. Here are a few essential ones, along with examples: Fail2ban: This tool helps prevent brute-force attacks by monitoring log files and blocki...Discuss·1 likeLinux
dev.familydevfamily.hashnode.dev·Jul 26, 2023New open source solution for admin panel developmentGiven: We are an outsourcing company and often start new projects. We don't work with ready-made CMS, everything is from scratch. Every time we have to create a control panel. In 90% of cases it's the same type of tables and forms, in the other 10% t...DiscussReact
Somay Manglasomay.hashnode.dev·May 22, 2023IP Address Tutorial For Beginners [IPV4 and IPV6 Protocols]Introduction: In the world of computer networks, IP addresses play a crucial role in identifying and communicating with devices. This tutorial aims to provide beginners with a comprehensive understanding of IP addresses, focusing on the two primary p...Discussip address
Dhwarika Jhadwarkajha.hashnode.dev·Apr 15, 2023Advanced Linux Shell Scripting for DevOps Engineers with User ManagementCreating n number of directories using a script Two ways of creating a directory One is a normal method which is described as below #!/bin/bash for i in {1..90} do mkdir days$i; done Using Iteration #!/bin/bash create_directory=$1 ...Discuss·1 like·140 readsLinux
Ash Robertsswitchitup.hashnode.dev·Apr 5, 2023MCSA - Still the Route to Windows Server Administration learning?This site contains affiliate links to products. We may receive a commission for purchases made through these links. My Introduction to Server Administration I have talked on this blog about the many consultancy jobs and work I have experienced in my...Discuss·44 readsWindows Serverserver
Ayomide Oluwagaadminay.hashnode.dev·Apr 2, 2023The Power of Azure Administration: Unlock Your Potential with the AZ-104 Certificationhttps://youtu.be/zqWVuKgiK88 The Microsoft Azure Administrator certification, also known as AZ-104, is a popular certification that validates an individual's skills and knowledge in managing and implementing Microsoft Azure services. Here are some ...Discuss·32 readsazure certified
Anthony Ramosstudy-cyber.com·Jan 25, 2023Creating a virtual network in AzureVirtual networks allow Azure resources to communicate with the internet, with other Azure resources, and with on-premises resources. You can also filter and route network traffic. In this video, I create a virtual network and two virtual machines and...Discuss·102 readsAzure
Anthony Ramosstudy-cyber.com·Jan 19, 2023Creating a Linux VM in Azure and SSH'ing into it using PuTTyAzure is Microsoft's cloud platform and it allows you to provision resources or consume resources made available to you by Microsoft or other vendors. We'll be provisioning a Linux VM and ssh'ing into it using PuTTy. Click create a resource in Azure ...Discuss·270 readsssh