Start Services in Clustered Environment


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers Start Services in Clustered Environment
# 1  
Old 05-28-2019
Start Services in Clustered Environment

Hello Experts,

I have a requirement to start and stop weblogic services in a clustered environment.

First i need to start weblogic server and once the server is in Running mode i need to do SSH to other server and there i need to start Node Manager and Managed server, After these two are in Running mode i need to exit from the box and display message like "services are running" Else "Services cannot start there is some issue in Admin Server"

Thanks in advance.
# 2  
Old 05-28-2019
You can consider running a cron file on your "Node Manager and Managed server" which looks for a file and if that file exists, start the service.

You can have that same cron file on your "Node Manager and Managed server" write a file to the weblogic server which can be used as a flag to indicate success or failure.

You might consider using scp and not ssh for this, where you copy the status messages as files (used as flags) from one server to the other.

Hope this helps.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to Start services based on dependent services on other AIX machine

Hi, I just started working on a script. After my research, i found a command which can help me: AIM: To build a script which starts the services (Services 1) on server 1 automatically whenever its down. And it has a dependency on other service (Service 2) on Server 2. So my script has to... (4 Replies)
Discussion started by: draghun9
4 Replies

2. AIX

Thoughts on HACMP: Automatic start of cluster services

Hi all, I remember way back in some old environment, having the HA cluster services not being started automatically at startup, ie. no entry in /etc/inittab. I remember reason was (taken a 2 node active/passive cluster), to avoid having a backup node being booted, so that it will not... (4 Replies)
Discussion started by: zaxxon
4 Replies

3. Solaris

How to configure start up services/processes in Solaris 10?

I normally use "chkconfig" to configure start up services in a particular run level..... But i don't know how to do it in solaris 10.... please help me !!! (2 Replies)
Discussion started by: vamshigvk475
2 Replies

4. Shell Programming and Scripting

How to start a shell script in a terminal console from graphic environment?

Hello. Normally when you double click on the file name, the shell script start in background. If you want to see what is going on, you must open a terminal console and start the shell within the terminal. Is it possible to start directly a shell script in a terminal console from the file... (0 Replies)
Discussion started by: jcdole
0 Replies

5. UNIX for Advanced & Expert Users

start some services automatically

Hello All i have a question related to some services,i want to start some services with server linux centos. i make "chkconfig httpd on" and "chkconfig asterisk on",but when i verify with chkconfig --list i found httpd 0: off 1: off 2: on 3: on 4: on 5: on 6:... (6 Replies)
Discussion started by: bernard12
6 Replies

6. Shell Programming and Scripting

Services Start & stop scripts--help required

Dear All, Pls find my scripts for Agent services strat & stop. EAMSROOT=/opt/panaces export EAMSROOT cd $EAMSROOT nohup ./OracleAgent.sh start & nohup ./PFRAgent.sh start & nohup ./PFR.sh start & nohup ./SolarisOSAgent.sh start & exit 0 EAMSROOT=/opt/panaces export EAMSROOT cd... (0 Replies)
Discussion started by: starnaresh
0 Replies

7. HP-UX

Couldn't start nrpe services (Unknown service)

Good morning, I've installed nrpe 2.12 (from nagios) on a HP-UX B.11.11 U server! Then I've configured the following files : $ tail /etc/services nrpe 5666/tcp # NRPE $ tail /etc/inetd.conf nrpe stream tcp nowait nagios /software/nagios/nrpe/bin/nrpe -c... (0 Replies)
Discussion started by: hiddenshadow
0 Replies

8. SuSE

start services during the startup

I'm trying to add services to start services automatically during the system start up in suse linux. I followed these steps.. chkconfig servicename on and created symbolic link at /etc/rc.d/rc3.d/ folder with name S80servicename. here is the command I used ln -s /etc/init.d/servicename... (8 Replies)
Discussion started by: s_linux
8 Replies

9. UNIX and Linux Applications

Oracle Cluster Ready Services waiting for SunCluster on x86 to start

Recently i faced problem starting oracle application on my galaxy cluster on one node.In the log i found that the CRS demon was not started after the booting of the node , so i manually tried to start it but faced some error. So here are the work around that i had done and the CRS services got... (0 Replies)
Discussion started by: amitranjansahu
0 Replies

10. Solaris

Start Up Services?

Solaris uses a few different mechanisms to start up services and processes at boot time. Where do all the running processes come from? Can you find from where they were started? (8 Replies)
Discussion started by: gc40
8 Replies
Login or Register to Ask a Question