Blog

Welcome to our blog!

How to enable php-soap Client on Ubuntu 22.4.0 Server

How to enable php-soap Client on Ubuntu 22.4.0 Server

Introduction It seems you’re encountering an issue related to the SoapClient class not being enabled on your server, which can affect the functionality of plugins that rely on SOAP (Simple Object Access Protocol) for communication. To enable the Soap Client on Ubuntu server, you need to install the PHP SOAP extension and restart your web…

How to Set Up Nginx with Certbot for HTTPS on Your WordPress Website

How to Set Up Nginx with Certbot for HTTPS on Your WordPress Website

Introduction In today’s digital world, website security is paramount. One of the most effective ways to secure your WordPress site is by enabling HTTPS. HTTPS not only encrypts the data exchanged between your website and visitors but also boosts SEO rankings. While there are various ways to set up SSL, using Nginx and Certbot is…

How to Install WordPress with Nginx on Ubuntu 22.0.4

How to Install WordPress with Nginx on Ubuntu 22.0.4

Introduction WordPress is a popular Content Management System (CMS) which is used to publish website over internet.  It has grown into a powerhouse that runs over 40% of all websites on the internet. WordPress covers you whether you’re setting up a personal blog, creating an online store, or launching a corporate site. This guide will…

Setting Oracle Database Environment Variables after  Installation on Linux/OL/Windows
DBA

Setting Oracle Database Environment Variables after Installation on Linux/OL/Windows

Setting environment parameters after Oracle database installation involves configuring various environment variables and system settings to ensure that the database operates correctly. Here are some steps for Setting oracle database environment variables after installing an Oracle database: Step1: Oracle User Environment Variables: export TMP=/tmpexport TMPDIR=\$TMPexport ORACLE_HOSTNAME=oractl.a2z.comexport ORACLE_UNQNAME=cdb1export ORACLE_BASE=/u01/app/oracleexport ORACLE_HOME=\$ORACLE_BASE/product/19c/dbhome_1export ORA_INVENTORY=/u01/app/oraInventoryexport ORACLE_SID=oractlexport PDB_NAME=pdb1export DATA_DIR=/u01/oradataexport PATH=/usr/sbin:/usr/local/bin:\$PATHexport PATH=\$ORACLE_HOME/bin:\$PATHexport…

ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist
DBA

ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist

The error message “ORA-01034: ORACLE not available ora-27101: shared memory” typically occurs in the context of Oracle Database and indicates that there is an issue preventing the Oracle instance from starting or accessing shared memory. To resolve this issue, you can follow these general troubleshooting steps: Step 1: Check Oracle Services Make sure that the…

oracle 19c deinstall utility on ol/rhel 8 fails with “error:null”
DBA

oracle 19c deinstall utility on ol/rhel 8 fails with “error:null”

It seems like you’re encountering an issue with the Oracle 19c deinstall utility on Oracle Linux (OL) or Red Hat Enterprise Linux (RHEL) 8, and you’re getting an error message “error:null” This error message is quite generic and doesn’t provide much information about the root cause. further we can read more detail from oracle official…

Step by Step Guide: Oracle 19c Installation On Linux/Oracle Linux 8.x
DBA

Step by Step Guide: Oracle 19c Installation On Linux/Oracle Linux 8.x

In last article, we discussed step by step environment readiness before starting installation of oracle database 19c on Linux/Oracle Linux 8.x version. but in this article we will learn the step by step guide, Installing oracle 19c on Linux. In this article we will learn in detail how to oracle 19c step-by-step installation on Linux….

Installing Oracle Database 19c on Linux/Oracle Linux 8.x

Installing Oracle Database 19c on Linux/Oracle Linux 8.x

Introduction: Oracle Database 19c stands as a pinnacle of reliability, performance, and security in the world of enterprise-level databases. This article will show step-by-step guide for installing and configuring an Oracle Database 19c on Oracle Linux 8.9. this is first time for me to install oracle database on Oracle Linux 8.9 server on virtualization infrastructure….