Autostart Script for Websphere Services on Linux

This works on me …

 

#!/bin/bash
# Source function library.
. /etc/init.d/functions

#Developed by Dadan
WAS_HOME=/opt/IBM/WebSphere/AppServer
export WAS_HOME

start() {

# WebSphere® Application Server, start Deployment Manager
$WAS_HOME/profiles/ctgDmgr01/bin/startManager.sh

# WebSphere Application Server, start Node
$WAS_HOME/profiles/ctgAppSrv01/bin/startNode.sh

# WebSphere Application Server, start webserver1
$WAS_HOME/profiles/ctgAppSrv01/bin/startServer.sh webserver1 -username wasadmin -password r4h4514

# WebSphere Application Server, start MXServer
$WAS_HOME/profiles/ctgAppSrv01/bin/startServer.sh MXServer -username wasadmin -password r4h4514

# WebSphere Application Server, start HTTP Server and webserver1
/opt/IBM/HTTPServer/bin/apachectl start
return $RETVAL

}

stop() {

# WebSphere Application Server, start HTTP Server and webserver1
/opt/IBM/HTTPServer/bin/apachectl stop

# WebSphere Application Server, start MXServer
$WAS_HOME/profiles/ctgAppSrv01/bin/stopServer.sh MXServer -username wasadmin -password r4h4514

# WebSphere Application Server, start webserver1
$WAS_HOME/profiles/ctgAppSrv01/bin/stopServer.sh webserver1 -username wasadmin -password r4h4514

# WebSphere Application Server, start Node
$WAS_HOME/profiles/ctgAppSrv01/bin/stopNode.sh

# WebSphere® Application Server, start Deployment Manager
$WAS_HOME/profiles/ctgDmgr01/bin/stopManager.sh

return $RETVAL

}

case "$1" in
start)
start
;;
stop)
stop
;;

*)
echo $"Usage: $0 {start|stop}"
exit 1
esac

exit $?
exit $RETVAL


Berbagi :
Tambahkan Autostart Script for Websphere Services on Linux Tambahkan Autostart Script for Websphere Services on Linux Tambahkan Autostart Script for Websphere Services on Linux Tambahkan Autostart Script for Websphere Services on Linux Tambahkan Autostart Script for Websphere Services on Linux Tambahkan Autostart Script for Websphere Services on Linux Tambahkan Autostart Script for Websphere Services on Linux

Fixing warning BMXAA6422W

I got these warning while trying to update my Maximo (7.1.1.5) into newer release (7.1.1.11) manually :

BMXAA6422W - The value for MAXPROP ....

after spent a minutes to googling, i got some resolution. Here (I’m using Oracle database 11.2.0.1) :

update maxtable set storagepartition='PRIMARY' 
update maxtablecfg set storagepartition='PRIMARY' 
update maxsysindexes set storagepartition='PRIMARY'
 

Source : here

 


Berbagi :
Tambahkan Fixing warning BMXAA6422W Tambahkan Fixing warning BMXAA6422W Tambahkan Fixing warning BMXAA6422W Tambahkan Fixing warning BMXAA6422W Tambahkan Fixing warning BMXAA6422W Tambahkan Fixing warning BMXAA6422W Tambahkan Fixing warning BMXAA6422W

Manually installing applications in WebSphere Application Server Network Deployment

Maximo® Asset Management applications can be added to WebSphere® Application Server Network Deployment manually…

Procedure

  1. Log on to the WebSphere Application Server Network Deployment administrative console.
  2. Browse to Applications > New Application > New Enterprise Application.
  3. From the Specify the EAR, WAR, JAR, or SAR module to upload and install page, select Local file system.
  4. Browse to the location on your system of the maximo.ear file and click Next.
  5. Select Detailed and then click Next.
  6. From the Application Security Warnings panel, click Continue.
  7. Click Step 2: Map modules to servers.
  8. Highlight all entries listed in the Clusters and servers field, check all check boxes for Modules listed in the table, and click Apply.
  9. Click Step 11: Map virtual hosts for Web modules.
  10. Check all check boxes for web modules listed in the table.
  11. Expand Apply Multiple Mappings.
  12. Select a virtual host, for example, maximo_host, from the Virtual Host menu, and click Apply.
  13. Click Step 15: Map security roles to users or groups.
  14. Select the check box for maximouser in the Role table, and then select Everyone from the Map Special Subjects menu.
  15. Click Step 17: Summary, review the summary information, and click Finish.

Source : IBM


Berbagi :
Tambahkan Manually installing applications in WebSphere Application Server Network Deployment Tambahkan Manually installing applications in WebSphere Application Server Network Deployment Tambahkan Manually installing applications in WebSphere Application Server Network Deployment Tambahkan Manually installing applications in WebSphere Application Server Network Deployment Tambahkan Manually installing applications in WebSphere Application Server Network Deployment Tambahkan Manually installing applications in WebSphere Application Server Network Deployment Tambahkan Manually installing applications in WebSphere Application Server Network Deployment

Automatic Startup Maximo di Websphere

  1. Akses https://ip-server-websphere-anda:9043/ibm/console/logon.jsp
  2. Login setara wasadmin ke WebSphere Integrated Solutions Console
  3. Dari panel navigasi kiri pilih Servers
  4. Lalu pilih Application Servers
  5. Pilih nama Maximo Application Server anda (default name MXServer).
  6. Dari panel navigasi kanan tepat dibawah Server Infrastructure pilih Java and Process Management
    • Pilih Monitoring Policy
  7. Lalu akan muncul tampilan sub menu Monitoring Policy
  8. Plih RUNNING
  9. Pilih OK dan Simpan

Source : sini


Berbagi :
Tambahkan Automatic Startup Maximo di Websphere Tambahkan Automatic Startup Maximo di Websphere Tambahkan Automatic Startup Maximo di Websphere Tambahkan Automatic Startup Maximo di Websphere Tambahkan Automatic Startup Maximo di Websphere Tambahkan Automatic Startup Maximo di Websphere Tambahkan Automatic Startup Maximo di Websphere

Reset Semua Security Pada Drive NTFS

Saya sering sekali mengalami kendala saat berusaha mengakses file file pada NTFS drive saya. Hal ini saya alami setiap kali usai mereinstalasi Windows 7.

Setelah googling kesana kemari, saya menemukan beberapa tips yang bermanfaat.

Berikut tips penanganannya :

  1. Buka CMD, klik kanan, RUN AS Administrator
  2. Pindah ke Drive yang dimaksud
  3. Lakukan ini :

icacls * /T /Q /C /RESET


Berbagi :
Tambahkan Reset Semua Security Pada Drive NTFS Tambahkan Reset Semua Security Pada Drive NTFS Tambahkan Reset Semua Security Pada Drive NTFS Tambahkan Reset Semua Security Pada Drive NTFS Tambahkan Reset Semua Security Pada Drive NTFS Tambahkan Reset Semua Security Pada Drive NTFS Tambahkan Reset Semua Security Pada Drive NTFS