forked from bsi-software/docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-machine.py
37 lines (30 loc) · 811 Bytes
/
add-machine.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright (c) 2014-2016 Oracle and/or its affiliates. All rights reserved.
#
# Script to create and add NodeManager automatically to the domain's AdminServer running on '$ADMIN_HOST'.
#
# Since: October, 2014
# Author: [email protected]
#
# =============================
import os
import socket
execfile('/u01/oracle/commonfuncs.py')
# NodeManager details
nmhost = os.environ.get('NM_HOST', socket.gethostbyname(hostname))
nmport = os.environ.get('NM_PORT', '5556')
# Connect to the AdminServer
# ==========================
connectToAdmin()
# Create a Machine
# ================
editMode()
cd('/')
cmo.createMachine(nmname)
cd('/Machines/%s/NodeManager/%s' % (nmname, nmname))
cmo.setListenPort(int(nmport))
cmo.setListenAddress(nmhost)
cmo.setNMType('Plain')
saveActivate()
# Exit
# ====
exit()