Kathlene Aglibot

What is Docker, docker containers, docker images and its basic commands

Docker is an open-source platform for building apps and microservices. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. Its main benefit is to package applications in containers, allowing them to be portable to any system running a Linux or Windows operating system (OS). Docker image is a file …

What is Docker, docker containers, docker images and its basic commands Read More »

How To Install WordPress With A LAMP Stack on Ubuntu 20.04

In order to install WordPress in Ubuntu 20.04 with LAMP stack, you will need to complete the requirements before beginning to follow this steps. Prerequisites: Initial server set up and ensure you have a non-root sudo user. Installed LAMP stack and phpMyAdmin Secure your site by TLS/SSL. Step 1: Creating a MySQL Database and User for WordPress …

How To Install WordPress With A LAMP Stack on Ubuntu 20.04 Read More »

How To Copy Files From One Directory To Another In Ubuntu 20.04

Sometimes we are forgetful to change our directory when creating files and ending up creating it in other directory. So here is the command used to copy and paste these files to the destined directory. $ sudo cp -a Source_Folder Destination_Folder An example of this is: $ sudo cp -a /tmp/wordpress/. /var/www/html Where the /tmp/wordpress/ …

How To Copy Files From One Directory To Another In Ubuntu 20.04 Read More »

How to install phpMyAdmin in Ubuntu 20.04

phpMyAdmin was created so that users can interact with MySQL through a web interface. In this guide, we’ll discuss how to install phpMyAdmin in Ubuntu 20.04 system. 1. Type the following command in command line $ sudo apt update $ sudo apt install phpmyadmin php-mbstring php-zip php-gd php-json php-curl The image below will show. Hit SPACE, TAB, and …

How to install phpMyAdmin in Ubuntu 20.04 Read More »

What to do when asset-transfer-basic/chaincode-javascript file can’t be located

When doing the deployment of smart contract in a channel, asset-transfer-basic file is need. But it if cannot be found in the fabric samples file where is should be, you can do these following steps 1. Type the following in the command line: $ git status 2. Type: $ git branch $ git stash You …

What to do when asset-transfer-basic/chaincode-javascript file can’t be located Read More »

Benefits of smart contracts

Smarts contract is a self-executing contract in which the conditions of the buyer-seller agreement are directly put into lines of code. The code and the agreements contained within it are dispersed and decentralized over a blockchain network. Transactions are trackable and irreversible, and the code controls the execution. Smart contracts work by following simple “if/when…then…” …

Benefits of smart contracts Read More »