Domain: Displays the FileNet P8 domain name if a domain was found. Global Configuration Database: Verifies that the GCD contains a valid domain object
How can i install and use iptables on RHEL 7.2
Firstly, stop and mask the firewalld service: systemctl stop firewalld systemctl mask firewalld Then, install the iptables-services package: yum
Configuring the number of allowable open files in Redhat Enterprise Linux
Edit the /etc/security/limits.conf file then set the limit for open files from 1024 to 65536. "username" hard nofiles 65536 "use
Linux Swap Space
Linux swap space is normally configured either on a dedicated partition or a logical volume. Such space is used to extend the amount of effective RAM
TSQL Script to Take Database Offline and Take Database Online Microsoft SQL Server 2014
If You wish to take a Microsoft SQL Server 2014 database offline or online, You need to use the GUI . GUI path is Tasks-Take Online or Take Offline.
How to find files that are modified in the last x number of days?
The following command will list all the files that were modified in the last two days under the current directory. find . -mtime -2
How to find files that are not modified in the last x number of days?
The following command will list all the files that were modified more than 60 days ago under the current directory. find . -mtime +
Working with Links in Linux
In a Linux file system, it is very useful to be able to access a single file from different locations. This discourages you from copying a file to di
Practical examples where shell scripting actively used
// • Monitoring your Linux system. • Data backup and creating snapshots. • Dumping Oracle or MySQL database for backup. â
Symptoms of Software Development Problems
- User or business needs not met - Requirements not addressed - Modules not integrating - Difficulties with maintenance - Late discovery of flaws