Skip to main content

Posts

Default Web Stack

#!/bin/bash echo " Installing Web Server " sudo yum install httpd -y  echo " Starting Web service " sudo systemctl start httpd echo " enable Web Service " sudo systemctl enable httpd echo " Enable Web Content " echo '<!DOCTYPE html> <html> <body> <h1> Welcome to KartikeyaSoft Azure Training <h1> <h1 style="background-color:Tomato;">Tomato</h1> <h1 style="background-color:Orange;">Orange</h1> <h1 style="background-color:DodgerBlue;">DodgerBlue</h1> <h1 style="background-color:MediumSeaGreen;">MediumSeaGreen</h1> <h1 style="background-color:Gray;">Gray</h1> <h1 style="background-color:SlateBlue;">SlateBlue</h1> <h1 style="background-color:Violet;">Violet</h1> <h1 style="background-color:LightGray;">LightGray</h1> </body> </html>&#
Recent posts

SonarQube

CREATE DATABASE sonarqube_db; CREATE USER 'sonarqube_user'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON sonarqube_db.* TO 'sonarqube_user'@'localhost' IDENTIFIED BY 'password'; FLUSH PRIVILEGES; sonar.jdbc.username=sonarqube_user sonar.jdbc.password=password sonar.jdbc.url=jdbc:mysql://localhost:3306/sonarqube_db?useUnicode=true&amp;chara cterEncoding=utf8&amp;rewriteBatchedStatements=true&amp;useConfigs=maxPerformance