Archivo del Autor: carlosap

How to configure Veaam (a backup software for VMware virtual machines) to make use of proquiet when doing VMware snapshots of CentOS 6 Linux machines , snapshots

http://knowledgebase.progress.com/articles/Article/000055417 Article Number 000055417 Environment Product: OpenEdge Version: All supported versions OS: CentOS/Red Hat 6 Question/Problem Description How to configure Veeam to use PROQUIET when taking VMware snapshots of CentOS 6 Linux machines? How to use PROQUIET before and after a VMware snapshot against a running OpenEdge database? How to take Veeam backups against online… Leer más »

What is the fastest way to remove all records from a database table?

http://knowledgebase.progress.com/articles/Article/P36834 nformación Article Number 000020585 Environment Question/Problem Description What is the fastest way to remove all records from a database table? Steps to Reproduce Clarifying Information Error Message Defect/Enhancement Number Cause Resolution The fastest way to remove all records from a database table without messing around with the metasachema is to use the following code:… Leer más »

How to connect to iSCSI target using Solaris 10?

# iscsiadm add discovery-address 192.168.1.50:3260 # iscsiadm modify discovery –sendtargets enable # devfsadm -i iscsi then after putting «format» command we were able to format iSCSI target – See more at: http://kb.open-e.com/How-to-connect-to-iSCSI-target-using-Solaris-10_322.html#sthash.VrnyqYbI.dpuf    

Disable Firewalld firewall centos 7

To disable firewalld, run the following command as root: systemctl disable firewalld Stop Firewalld To stop firewalld, run the following command as root: systemctl stop firewalld

What are the pre-requistes for installing OpenEdge on RHEL 7.0 64 bit?

Article Number 000056050 Environment Product: OpenEdge Version: 10.2B 08, 11.3.2, 11.4, 11.5 and higher OS: RHEL (Red Hat) 7.0 64 bit Question/Problem Description What are the pre-requistes for installing OpenEdge on RHEL 7.0 64 bit? Steps to Reproduce Clarifying Information Error Message Defect/Enhancement Number Cause Resolution OpenEdge Product requires C++ library “libstdc++.so.6”. Ensure that the… Leer más »

solaris 11 ssh slow login

in sshd_config add LookupClientHostnames no VerifyReverseMapping no GSSAPIAuthentication no on cli run # cryptoadm disable provider=/usr/lib/security/\$ISA/pkcs11_tpm.so mechanism=all # cryptoadm uninstall provider=/usr/lib/security/\$ISA/pkcs11_tpm.so

Finding the PID of the process using a specific port?

http://unix.stackexchange.com/questions/106561/finding-the-pid-of-the-process-using-a-specific-port Also you can use lsof utility. Need to be root. # lsof -i :25 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME exim4 2799 Debian-exim 3u IPv4 6645 0t0 TCP localhost:smtp (LISTEN) exim4 2799 Debian-exim 4u IPv6 6646 0t0 TCP localhost:smtp (LISTEN) You can use netstat’s -p option. You’re already issuing it, but… Leer más »