monitor edecek olan sunucuya oem 10.2.0.1.1(windows ise 10.2.0.1.2) kurulumu yapılır daha sonra 10.2.05 e update etmek için 3731593 nolu patch kurulur.
monitor edilecek sunuculara da direk olarak 10.2.0.5 agent ı kurulur(NOT:sunucudaki işletim sisteminin 32 yada 64 bit olduğuna dikkat) agent kurulumu bitince haberleşme başlayacaktır.
22 Temmuz 2009 Çarşamba
How to kill Unix user session
kill -9 `ps -u username grep -v PID awk '{ printf ("%s ", $1); }'`
burda username i değiştirip uygula
burda username i değiştirip uygula
15 Temmuz 2009 Çarşamba
E-mail server kurulumu
bu yazı aşağıdaki adresten alınmıştır.
http://blogs.bpel-people.com/2007/01/using-email-to-initiate-bpel-process.html
Installation of James is very straight forward you just download it and unzip it to a convenient location. To start it, use the script run.bat or run.sh, depending on your operating system in the james-2.3.0/bin directory.
To configure James just bring up a telnet session (on port 4555) to bring up the Remote Administration Tool from which you can create the required accounts. For example, to create the accounts bpel and jsmith (where the password is welcome1) enter the following:
JAMES Remote Administration Tool 2.3.0
Please enter your login and password
Login id:
root
Password:
root
Welcome root. HELP for a list of commands
adduser bpel welcome1
User bpel added
adduser jsmith welcome1
User jsmith added
listusers
Existing accounts 2
user: bpel
user: jsmith
quit
http://blogs.bpel-people.com/2007/01/using-email-to-initiate-bpel-process.html
Email Server
To make testing easier, I installed my own local mail server. For this I used James (which is an Open Source Java Mail Server from Apache).Installation of James is very straight forward you just download it and unzip it to a convenient location. To start it, use the script run.bat or run.sh, depending on your operating system in the james-2.3.0/bin directory.
To configure James just bring up a telnet session (on port 4555) to bring up the Remote Administration Tool from which you can create the required accounts. For example, to create the accounts bpel and jsmith (where the password is welcome1) enter the following:
JAMES Remote Administration Tool 2.3.0
Please enter your login and password
Login id:
root
Password:
root
Welcome root. HELP for a list of commands
adduser bpel welcome1
User bpel added
adduser jsmith welcome1
User jsmith added
listusers
Existing accounts 2
user: bpel
user: jsmith
quit
8 Temmuz 2009 Çarşamba
Unix Disk Space Usage
du -ksort -nr
her dizinin ne kadar olduğunu büyükten küçüğe sıralar
Display hard disk partition size in Mega bytes
$ df -H
Display TOTAL hard disk size
fdisk command is partition table manipulator for Linux. But it can be use to display total hard disk site. You must type the following command as the root user:
# fdisk -l grep Disk
her dizinin ne kadar olduğunu büyükten küçüğe sıralar
Display hard disk partition size in Mega bytes
$ df -H
Display TOTAL hard disk size
fdisk command is partition table manipulator for Linux. But it can be use to display total hard disk site. You must type the following command as the root user:
# fdisk -l grep Disk
1 Temmuz 2009 Çarşamba
eski library leri yenisi ile link etme
mesela loglarda böyle bir hata alıyorum.
libraries: libdb.so.2: cannot open shared object file: No such file or directory
bu durumda yapmam gereken
# ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2
# chmod 755 /usr/lib/libgdbm.so.2.0.0
# chmod 755 /usr/lib/libdb.so.2
bu işlemleri yapıp tekrar denemektir...
libraries: libdb.so.2: cannot open shared object file: No such file or directory
bu durumda yapmam gereken
# ln -s /usr/lib/libgdbm.so.2.0.0 /usr/lib/libdb.so.2
# chmod 755 /usr/lib/libgdbm.so.2.0.0
# chmod 755 /usr/lib/libdb.so.2
bu işlemleri yapıp tekrar denemektir...
Kaydol:
Yorumlar (Atom)