SBSundar bloginsundarpalanivel.hashnode.dev·Jun 30 · 2 min readPostgres Tutorial PostgreSQL Basic Commands 1. Log in as the PostgreSQL User sudo -i -u postgres 2. Start the PostgreSQL Shell psql Database Operations 3. Create a Database CREATE DATABASE db1; 4. List All Database00
SBSundar bloginsundarpalanivel.hashnode.dev·Jun 29 · 2 min readMariadb tutorialMariaDB Basic Commands 1. Log in to MariaDB sudo mariadb Database Operations 2. Create a Database CREATE DATABASE db1; 3. View All Databases SHOW DATABASES; 4. Select the Database USE db1; 5. Con00
SBSundar bloginsundarpalanivel.hashnode.dev·Jun 24 · 3 min readMysql tutorial MariaDB/MySQL User Management, Database Administration, Backup and Restore 1. Log in to MariaDB sudo mariadb User Management 2. Create a New User CREATE USER 'sudha'@'localhost' IDENTIFIED BY 'Passw00
SBSundar bloginsundarpalanivel.hashnode.dev·Nov 6, 2025 · 1 min readHow to write 1st jenkins pipelinePipeline job00
SBSundar bloginsundarpalanivel.hashnode.dev·Oct 28, 2025 · 1 min readJenkins Master and Slave Configuration | How to run Jenkins job on Slave node #Jenkinswe need to install ubuntu for two systems.one system need to install jenkins another one is slave. The jenkins systems insatalled jenkins. need to install java same version for both systems Jenkins system Slave system Now configure slave system g...00