
In order to allow a user to have restrict access to a specific directory we should use the chroot and bindfs setup:
(tested on Centos 7 x64)
bindfs
Mount a …
System Administrator

In order to allow a user to have restrict access to a specific directory we should use the chroot and bindfs setup:
(tested on Centos 7 x64)
bindfs
Mount a …

General Data Protection Regulation
The regulation applies if the data controller (an organisation that collects data from EU residents), or processor (an organisation that processes data on behalf of a …

yum install epel-release -y vi /etc/yum.conf yum clean all yum install epel-release -y yum install pwgen -y yum install mongodb-org -y systemctl daemon-reload systemctl enable mongod.service systemctl start mongod.service yum…
Docker NodeJS Simple How To For Windows install via https://docs.docker.com/docker-for-windows/install/#download-docker-for-windows After install it will logout and when it comes back will ask to Setup Hyper-V and will break VIrtualBox Download …
Terraform Infrastructure as code (IAC)
Most AWS people knows and use Cloud Formation but how about making it much easier to use.
Today I tested the Terraform solution by Hashi …
Raspberry Pi Access Point How To
OBJECTIVE:
Raspberry Pi as an Access Point to route all DHCPD clients via (external server, outside my country)
INTRO:
I already have a server …
1) Pre-Requisite
# Install Mariadb
yum -y install mariadb
mysql -u root -p
CREATE DATABASE gitea;
CREATE USER ‘gitea’@’localhost’;
SET PASSWORD FOR ‘gitea’@’localhost’ = PASSWORD(‘NEW_gitea’);
grant all privileges on gitea.* …