Home / Archive for Albert / Page 16

Author: Albert

wordpress security tips

WordPress Security Tips

What is WordPress? WordPress is a free and open-source web creation platform. It is written in PHP and paired with an MYSQL and MariaDB database. It has a template system and a plugin architecture, which is referred to within WordPress themes. WordPress is an excellent website platform for numerous websites. WordPress is a versatile content …

Read more

rtx 3080ti

Nvidia RTX 3080 Ti is available online right now

The Nvidia RTX 3080 Ti has been released and available for lucky enough to find one. Announced earlier this week alongside the forthcoming RTX 3070 Ti, the 3080 Ti serves as the costly successor to the GeForce RTX 3080, a great graphics card that made 4K gaming affordable. Nvidia RTX 3080 Ti has an impressive …

Read more

What is VPS Hosting with dedicated GPU?

A VPS is a complete server with its own operating system and virtual hardware built on top of physical server hardware. A Linux or Windows-based operating system known as a hypervisor is used to build virtual servers, datastores, virtual switches, virtual routers, virtual CPUs, and RAM. Some leading hypervisors are VMware, Citrix Xenserver, and KVM. …

Read more

How to setup ftp server on CentOS 7 Linux Server?

To setup ftp server on CentOS 7, perform following steps: Install vsftpd package with yum -y install vsftpd Edit the range of ports that is to be used by ftp service in /etc/vsftpd/vsftpd.conf pasv_min_port=3000 pasv_max_port=3500 Use systemctl command to enable vsftpd at boot time: systemctl enable vsftpd.service systemctl start vsftpd.service Open ftp port in firewall …

Read more

How to change the port of discovery container in Linux

Use podman to create new network podman network create Check under /etc/cni/net.d/ you will find file /etc/cni/net.d/cni-podman-2.conflist In your favorite file editor open /usr/share/containers/libpod.conf Change line cni_default_network = "podman" in configuration file /usr/share/containers/libpod.conf to cni_default_network = "cni-podman2" Reboot server Restart container with podman start discovery dsc-db Check the network status. A new network cni-podman2 will be …

Read more

IPv6 communication do not occur while interface is in firewalld drop zone

IPv6 requires ICMPv6 neighbour solicitation and neighbour advertisement packets to create IPv6 connectivity. These packets are used to resolve IPv6 addresses to link-layer (ethernet). Add new icmptypes for neighbour solicitation and neighbour advertisement firewall-cmd --permanent --new-icmptype=neighbour-solicitation firewall-cmd --permanent --new-icmptype=neighbour-advertisement Remove destination IPv4 firewall-cmd --permanent --icmptype=neighbour-solicitation --remove-destination=ipv4 firewall-cmd --permanent --icmptype=neighbour-advertisement --remove-destination=ipv4 Attach icmptypes to the –zone=drop …

Read more