AWS ELASTIC BEANSTALK NEW VERSION
Learn the new version of beanstalk with lots of new options
SELINUX IN DETAIL, IN RHEL/CENTOS 8
Hey All, let’s learn selinux concept in linux
ASSIGNING GRUB PASSWORD
Hey All, To protect people from breaking into your system, even while booting it is good to keep boot loader password. In this video we are going to discuss exactly the same thing. Protecting bootloader by assinginig grub password. #grub2-setpassword #ls /boot/grub2 –> user.cfg […]
USING FILE AS SWAP SPACES IN LINUX
in this video we are going to learn how to use a file as swap spacs in LINUX
CHANGING DEFAULT PORT IN SSH AND PORT FORWARDING
Step1: edit /etc/ssh/sshd_config file Step2: Allow custom port in selinux semanage port -a -t ssh_port_t -p tcp #PORTNUMBER Step3: Allow custom port in firewall firewall-cmd –add-port=2222/tcp –permanent firewall-cmd –reload Step4: restart or reload sshd services systemctl reload sshd PORT FORWARDING USING FIREWALLD firewall-cmd –add-forward-port=port=22:proto=tcp:toport=2222 […]