Start QAD services for 2008 Standard Edition

linlinux

New Member
Hi,all,
Start QAD services for 2008 Standard Edition
[root@lin eb21]# hostname
lin

Last login: Sat Apr 25 21:16:26 2009
[root@lin ~]# cd /app/progress/bin/
[root@lin bin]# pwd
/app/progress/bin

[root@lin bin]# ./proadsv -query
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006
AdminServer is alive. (8545)

[root@lin bin]# ./nsman -name lin -start
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006

Connecting to Progress AdminServer using rmi://localhost:20931/Chimera (8280)
Searching for lin (8288)
Unable to connect to lin (8289)
Unable to find lin (8281)

[root@lin bin]# /app/mfgpro/eb21/start.Production
22:43:50 BROKER 0: Multi-user session begin. (333)
22:44:23 BROKER 0: Begin Physical Redo Phase at 40704 . (5326)
22:44:35 BROKER 0: Physical Redo Phase Completed at blk 40805 off 3881 upd 261. (7161)
22:44:36 BROKER 0: Started for mfgprod using TCP, pid 3418. (5644)
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006
22:44:37 BROKER 1: Started for mfgrpodsql using TCP, pid 3426. (5644)
22:44:37 BROKER 1: This is an additional broker for this protocol. (5645)
22:44:37 BROKER 1: This broker supports SQL server groups only. (8864)
22:44:38 BROKER 0: Multi-user session begin. (333)
22:44:38 BROKER 0: Begin Physical Redo Phase at 128 . (5326)
22:44:41 BROKER 0: Physical Redo Phase Completed at blk 5 off 7725 upd 10201. (7161)
22:44:42 BROKER 0: Started for hlpprod using TCP, pid 3428. (5644)
22:44:44 BROKER 0: Multi-user session begin. (333)
22:44:44 BROKER 0: Begin Physical Redo Phase at 0 . (5326)
22:44:55 BROKER 0: Physical Redo Phase Completed at blk 86 off 5974 upd 413. (7161)
22:44:57 BROKER 0: Started for admprod using TCP, pid 3430. (5644)

[root@lin bin]# ./wtbman -name lin -start
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006

Connecting to Progress AdminServer using rmi://localhost:20931/Chimera (8280)
Searching for lin (8288)
Unable to connect to lin (8289)
Unable to find lin (8281)

Can anybody help me to solve the issue.
TKS!
 
The system is unable to authenticate you Please contact your System Administrator
 

Attachments

  • qaddesk.jpg
    qaddesk.jpg
    25.6 KB · Views: 18
Unless you have purposely created a name server named lin using the default name server port, you should do:

nsman -name NS1 -start

then

nsman -name NS1 -query

If you created a name server lin, the lin name server should be define in the $DLC/properties/ubroker.properties file.

As for the webspeed broker (and appserver) these should have been defined during the configuration on the UI in mfgutil.
 
Hi,all,
Start QAD services for 2008 Standard Edition
[root@lin eb21]# hostname
lin

Last login: Sat Apr 25 21:16:26 2009
[root@lin ~]# cd /app/progress/bin/
[root@lin bin]# pwd
/app/progress/bin

[root@lin bin]# ./proadsv -query
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006
AdminServer is alive. (8545)

[root@lin bin]# ./nsman -name lin -start
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006

Connecting to Progress AdminServer using rmi://localhost:20931/Chimera (8280)
Searching for lin (8288)
Unable to connect to lin (8289)
Unable to find lin (8281)

[root@lin bin]# /app/mfgpro/eb21/start.Production
22:43:50 BROKER 0: Multi-user session begin. (333)
22:44:23 BROKER 0: Begin Physical Redo Phase at 40704 . (5326)
22:44:35 BROKER 0: Physical Redo Phase Completed at blk 40805 off 3881 upd 261. (7161)
22:44:36 BROKER 0: Started for mfgprod using TCP, pid 3418. (5644)
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006
22:44:37 BROKER 1: Started for mfgrpodsql using TCP, pid 3426. (5644)
22:44:37 BROKER 1: This is an additional broker for this protocol. (5645)
22:44:37 BROKER 1: This broker supports SQL server groups only. (8864)
22:44:38 BROKER 0: Multi-user session begin. (333)
22:44:38 BROKER 0: Begin Physical Redo Phase at 128 . (5326)
22:44:41 BROKER 0: Physical Redo Phase Completed at blk 5 off 7725 upd 10201. (7161)
22:44:42 BROKER 0: Started for hlpprod using TCP, pid 3428. (5644)
22:44:44 BROKER 0: Multi-user session begin. (333)
22:44:44 BROKER 0: Begin Physical Redo Phase at 0 . (5326)
22:44:55 BROKER 0: Physical Redo Phase Completed at blk 86 off 5974 upd 413. (7161)
22:44:57 BROKER 0: Started for admprod using TCP, pid 3430. (5644)

[root@lin bin]# ./wtbman -name lin -start
OpenEdge Release 10.0B05 as of Sat Apr 15 00:44:33 EDT 2006

Connecting to Progress AdminServer using rmi://localhost:20931/Chimera (8280)
Searching for lin (8288)
Unable to connect to lin (8289)
Unable to find lin (8281)

Can anybody help me to solve the issue.
TKS!

To add on to previous comments,check whether if your Nameserver is pointing to port 5162. Refer to ubroker.properties file under progress properties directory.

After you have started your nameserver, you might wanna check the log file NS1.log under your progress working directory . Eg /usr/wrk


Cheers,
Goo
 
Hi

This will happen due to some hung session on some port.

Just shut down the DB Webspeed and connection manager.

identify the hung session and kill it, the restart the DB Webspeed and connection manager.

to identify the hung session use

Ps –ef | grep command

Then kill any processes these commands showed using

pkill -9 the process ID #

another way is to REBOOT THE physical server that will solve all the problem.
 
Back
Top