Posts

CI/CD Pipeline in Oracle Forms with maven

Image
  Auto compilation Oracle forms DevOps CI/CD     DevOps Approach for Oracle Forms: Step1: Push the Oracle Forms code fmb files, both in the binary and in the xml format to the hosted Git repository on Developer Cloud Service. The xml format will be used for code reviews and can also be used for storing snippets. For pushing the Oracle Forms code to Developer Cloud Git repository, we will have to use the Git CLI. Pre requisite here would be that the Git CLI has to be installed on the developer machine. Below screen shot show the Git usage: DevOps Approach for Oracle Forms: Step2: Push the Oracle Forms code fmb files, both in the binary and in the xml format to the hosted Git repository on Developer Cloud Service. The xml format will be used for code reviews and can also be used for storing snippets. For pushing the Oracle Forms code to Developer Cloud Git repository, we will have to use the Git CLI. Pre requisite here would be that the Git CLI has t...

Jitsi Meet Configuration On Ubuntu 20.

Image
  Jitsi Meet on Ubuntu 20 Before configuration we need to set the host entry of domain. Set host domain name  sudo hostnamectl set-hostname jitsi.your_domain hostname  sudo nano /etc/hosts (127.0.0.1         jitsi.your_domain) Then allow firewall ports that are necessary for Jitsi access. sudo ufw allow 80/tcp sudo ufw allow 443/tcp sudo ufw allow 4443/tcp sudo ufw allow 10000/udp sudo ufw status Download gpg Key for jitsi wget https://download.jitsi.org/jitsi-key.gpg.key sudo apt-key add jitsi-key.gpg.key rm jitsi-key.gpg.key Adding jitsi repository on OS sudo nano /etc/apt/sources.list.d/jitsi-stable.list sudo apt update Now install Jitsi Meet sudo apt install jitsi-meet sudo /usr/share/jitsi-meet/scripts/install-letsencrypt-cert.sh Lets change in script file for configuration sudo nano /etc/prosody/conf.avail/your_domain.cfg.lua (  from=authentication = "anonymous" ) (  to=authentication = "internal_plain" ) also add th...

Sendy Installation Ubuntu vm of AWS

Image
SENDY INSTALLATION ON UBUNTU Sendy is a pretty simple process to upload the files and create database. Install Apache HTTP           ·          apt-get install apache2 Enable mod rewrite           ·          a2enmod rewrite Install PHP-FPM and required library           ·          apt-get install php-fpm libapache2-mod-php php-mysql php-curl php-xml Install Maria DB           ·          apt-get install mariadb-server mariadb-client Run the security script to harden the SQL. Run the below command and set the password for root. Press Y for all the options           ·          mysql_secure_installation Let’s create a database. Login to MySQL, it...

Nodejs Server Configuration On Ubuntu Plus Git Installation

Image
NodeJS Configuration Install Ubuntu 20 on virtual machine Install virtual machine 12 Install OS (ubuntu) with required spec’s Make user as a sudo Update OS online Installing secure shell to access sudo –l groups ssh –V sudo apt-get update sudo apt-get install openssh-server sudo systemctl status sshd netstat –tulpn | grep 22 / 2222 sudo ufw enable sudo ufw allow ssh sudo systemctl list-unit-files | grep enabled | grep ssh sudo systemctl enable ssh Git installation sudo apt update sudo apt install git git –version Cloning project through Git git clone https://github.com/luqman310/app.git sudo chown user:user appdir Installing Node using the node version manager for versioning  sudo apt install curl curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash source ~/.bashrc nvm list-remote...

Elastic Search & Kibana Including Log stash and Beats

Image
    Configuration of Elastic Search & Kibana Including Log stash and Beats   Reliably and securely take data from any source, in any format, then search, analyze, and visualize it in real time There is flow of data collection to visualization that is described in the picture Before Configuration of ELK there are some Prerequisites  A Linux system running Ubuntu 20.04 or 18.04 Access to a terminal window/command line (Search > Terminal) A user account with sudo or root privileges Install Java              java  -version sudo apt-get install openjdk-8-jdk           Install Nginx         sudo apt-get install nginx           Add Elastic Repository        wget –qO – https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add –           install the ...