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 – Update Patch cho QAD Aplication EE 2013 July 5, 2014

Mục tiêu: Tài liệu này cung cấp những bước cơ bản để deploy 1 QAD patch. Chỉ áp dụng cho QAD EE 2013
Thực hiện:
1. Shutdown tất cả database và server:
a. Tắt tomcat
b. Tắt server và database đang chạy: stopenv
2. Download patch từ trang chủ, giải nén, sẽ được 1 thư mục cần thiết để cài đặt.
3. Chạy script instpatch.ksh trong thư mục con install

4. Đọc và đồng ý với điều khoản sử dụng

5. Điền các thông tin : nơi chứa file log, progress openedge, thư mục qadhome

Kiểm tra thông tin rồi nhấn Yes

6. Kiểm tra lỗi khi chép file. Kết thúc quá trình chép file.

Nếu có nhiều hơn 1 environment thì lặp lại các bước tương tự cho từng enviroment.
7. Mở QDT vào QDT admin, chọn Admin

8. Chọn Character Client| Generate R-Code, chọn Reset

9. Chọn Edit

10. Điền file proxy-mfgpro.lst vào ô Compile List File, chọn Done khi chạy xong.

11. Kiểm tra lỗi trong file log XXbatchCompile.log chứa trong thư mục logs đã khai báo

12. Close, hoàn thành xong việc update patch.

13. Khởi động QAD Application database và server:

a. Chạy startenv cho từng environment.

b. Chạy tomcat

14. Mở Application và chạy thôi 😀
Edit by Nhanpt

No Comments on QAD – Update Patch cho QAD Aplication EE 2013
Categories: Uncategorized

QAD – Khắc phục lỗi khi cài đặt QAD Application trên IE 11 hoặc Chrome July 1, 2014

Do QAD Application hiện tại chỉ chạy tốt trên IE các phiên bản cũ ( 7, 8, 9), nên khi chúng ta cài đặt Application cho Client thường gặp khó khăn ( IE 10, 11, Chrome…)
Lỗi thường gặp khi cài đặt bằng IE11, hoặc Chrome:
Các khắc phục khi bạn đang dùng IE 10, 11:
Vào Settings, chọn Compatibility View Settings:
Chọn site bsd rồi Add vào dann sách:
Vậy là xong rồi đó:
Tương tự cho Chrome: Bạn dùng IE Tab để mở link cài đătj
Vậy là ok rồi :
 
Have fun :)
No Comments on QAD – Khắc phục lỗi khi cài đặt QAD Application trên IE 11 hoặc Chrome
Categories: Uncategorized

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