How to Install Oracle 21C Database Real Application Clusters (RAC) on the Docker With Oracle Linux7/RHEL7

11 July 2022   0 Comment

Oracle RAC provides clustering by allowing multiple computers to run Oracle RDBMS software simultaneously while accessing a single database. In a non-RAC Oracle database, a single instance accesses a single database. The database consists of a collection of data files , control files and redo logs located on disk . Example contains a collection of […]

Read More

How to use Ora2pg for Oracle to Postgres Migration

ora2pg oracle to postgres

15 June 2022   0 Comment

We will review Ora2pg, great open source solution for migrations to PostgreSQL. All companies have requests to migrate their small databases to postgres. Ora2pg is a great utility full of features. Prerequisites Oracle clientOracle DatabasePostgres DatabasePerl modules DBI DBD:Oracle DBD:PG Latest version of ora2pg Establish You can install oracle client for first connection Or rpm […]

Read More

Communicate Two Docker Containers with “Docker Network”

Docker Tutorıal

7 October 2020   0 Comment

Today, I am going to talk about connecting two docker containers with docker network feature. First, we need to create at least two different docker containers. I am going to work with “Oracle DB” and “Oracle WebLogic” docker containers. Let’s check containers and their status with; My containers’ name are “OracleDBOrnek” and “OracleWebLogicSarper” docker ps […]

Read More

How to Connecting PostgreSQL using PHP 7.3 with Basic Ajax Login Script

PostgreSQL PHP7 Login

30 September 2020   0 Comment

You can use Apache(LEMP), PHP, PostgreSQL to build a easy web app. PgAdmin It is an excellent tool to manage PHP PostgreSQL projects. You must upload the postgreSQL extension by editing the php.ini and restart apache service in order to access psql with php. For install PostgreSQL on Redhat and Centos 6,7 Linux we have […]

Read More

Install Apache Kafka on CentOS

25 September 2020   0 Comment

Let’s start with updating all the repositories and installing java; yum update -y wget –no-cookies –no-check-certificate –header “Cookie:oraclelicense=accept-securebackup-cookie” “http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-linux-x64.rpm” yum -y localinstall jdk-8u131-linux-x64.rpm Now, we can download Kafka tar file into local server; wget https://downloads.apache.org/kafka/2.4.1/kafka_2.12-2.4.1.tgz We need to extract Kafka tar file; tar -xzf kafka_2.12-2.4.1.tgz Change its directory; mv kafka_2.12-2.4.1.tgz /usr/local/kafka Now, let’s configure ZooKeeper […]

Read More

How to Install Apache Cassandra on CentOS 7

22 September 2020   0 Comment

Cassandra Installation on CentOS 7.x Before Installing Cassandra, we need to Install Java 8; yum update -y wget –no-cookies –no-check-certificate –header “Cookie:oraclelicense=accept-securebackup-cookie” “http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-linux-x64.rpm” yum -y localinstall jdk-8u131-linux-x64.rpm We can check java version as down below; To install Cassandra, we need to add following parameters into /etc/yum.repos.d/cassandra.repo [cassandra] name=Apache Cassandra baseurl=https://www.apache.org/dist/cassandra/redhat/311x/ gpgcheck=1 repo_gpgcheck=1 gpgkey=https://www.apache.org/dist/cassandra/KEYS You can […]

Read More

What is Zend OpCache?

15 September 2019   0 Comment

It is a low level cache mechanism used by Zend to reduce CPU usage on each request through the intermediate code generated by the standard Zend runtime compiler in the Zend Optimizer. A product that improves for faster operation. If you are using php 5.5 on your server and you have not turned it off, […]

Read More