Monday, August 22, 2016

How to Delete Network Interface using command line.

Using below steps you can remove unwanted network interfaces 1. Running the ifconfig command without any arguments, it will display information about all network interfaces currently in operation. ifconfig br-3b6bfc3c75d3 Link encap:Ethernet HWaddr 02:42:c2:fd:af:40 inet addr:172.18.0.1 Bcast:0.0.0.0 Mask:255.255.0.0 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0...

Friday, August 19, 2016

Increasing the number of process and sessions in Oracle 12C.

This post explains how to increase the number of process and sessions in Oracle 12C. 1. Log in to the database as system administrator sqlplus / as sysdba 2. Check existing values for sessions and processes. show parameter sessions; show parameter processes; 3. Set the number of processes to you need to increase alter system set processes=<no_processes> scope=spfile;...