Chuyện của sys

DevOps Blog

MFG/PRO Simple Init script for Tomcat and Progress OpenEdge October 10, 2015

haizz, đã bỏ dỡ qúa lâu, mốc meo hết rồi.

tomcat.init

#!/bin/bash
HOME=/qserver/apache-tomcat-8.0.27/bin
case “$1” in
    start)
# Main startup
echo -n “Starting Apache Tomcat Server: “
$HOME/startup.sh
echo “OK”
;;
    stop)
# Main shutdown
echo -n “Shutdown Apache Tomcat Server: “
$HOME/shutdown.sh
echo “OK”
;;
    reload|restart)
$0 stop
$0 start
;;
    configtest)
$HOME/configtest.sh
;;
*)
echo “Usage: `basename $0` start|stop|restart|reload|configtest”
exit 1
esac
exit 0

oe11.init

#!/bin/bash
DLC=/qserver/oe11/dlc
case “$1” in
    start)
# Main startup
echo -n “Starting Progress Admin Server: “
$DLC/bin/proadsv -start
sleep 1
$DLC/bin/proadsv -query
echo “OK”
;;
    stop)
# Main shutdown
echo -n “Stop Progress Admin Server: “
$DLC/bin/proadsv -stop
echo “OK”
;;
    reload|restart)
$0 stop
$0 start
;;
    status)
$DLC/bin/proadsv -query
;;
*)
echo “Usage: `basename $0` start|stop|restart|reload|status”
exit 1
esac
exit 0
Hope it helps.
No Comments on MFG/PRO Simple Init script for Tomcat and Progress OpenEdge

[QAD error] Unable to get value of the property 'getAttribute': object is null November 10, 2014

Lỗi:

Gặp lỗi này ghi mở Process Map Editor:
Unable to get value of the property ‘getAttribute’: object is null or undefined in Process Maps.
Process Maps give script error   Unable to get value of the property ‘getAttribute’: Object is null or undefined.
😐 lại nợ 1 tấm hình ở đây @@

Resolution:

QAD SVG plugin chưa được cài đặt, và không tìm thấy ở HomeServer, có thể lúc cài đặt Client, phần mềm diệt virus ngăn cản không cho cài plugin.

Download lại SVGView.exe và cài đặt lại theo link:

Cài lại SVG Plugin, hoặc cài lại luôn QAD .net UI clien, hoặc cài Adobe SVG viewer: Link http://www.adobe.com/devnet/svg/adobe-svg-viewer-download-area.html 

Nguyên nhân:

SVG viewer chưa được cài đặt khi cài QAD .NUI
Environment/Conditions:
IE9
.NET 2.9.4, 2.9.6
QAD SE 2013

No Comments on [QAD error] Unable to get value of the property 'getAttribute': object is null

QAD – How to check QAD Software Compatibility? June 30, 2014

How can I verify what version of Java is needed to install and run my version of QAD?

How can I verify my version of Progress is certified with my versions of QAD?

What version of QAD Software can I install?
any question for it…

You can use http://store.qad.com/content/compatibility-guide to check it 🙂

Getting Started

  1. Add Products

    • Add your core product (MFG/PRO or Enterprise Applications)
    • Select add-on module
  2. Check Compatibility

    • See compatibility between products, systems, and languages
  3. Next Steps

    • Share, export, save or load systems

An example result:

Image

No Comments on QAD – How to check QAD Software Compatibility?
Tags: , ,
Categories: Uncategorized