blob: 6460d2095aa5337b6fe5892d373100a18170752f [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301#!/bin/sh
2#
3# Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
4#
5# This program and the accompanying materials are made available under the
6# terms of the Eclipse Public License v. 2.0, which is available at
7# http://www.eclipse.org/legal/epl-2.0.
8#
9# This Source Code may also be made available under the following Secondary
10# Licenses when the conditions for such availability set forth in the
11# Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
12# version 2 with the GNU Classpath Exception, which is available at
13# https://www.gnu.org/software/classpath/license.html.
14#
15# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
16#
17
18# Extract domain name from config.properties and start the domain
19for x in `cat $APS_HOME/config.properties`
20do
21 varval=`echo $x |cut -d'=' -f1`
22
23 if [ $varval = "admin.user" ];
24 then
25 AS_ADMIN_USER=`echo $x |cut -d'=' -f2`
26 fi
David Matějčekf4dc06a2021-05-17 12:10:57 +020027
Vinay Vishal57171472018-09-18 20:22:00 +053028 if [ $varval = "admin.password" ];
29 then
30 AS_ADMIN_PASSWORD=`echo $x |cut -d'=' -f2`
31 fi
32
33 if [ $varval = "admin.domain" ];
34 then
35 AS_ADMIN_DOMAIN=`echo $x |cut -d'=' -f2`
36 fi
37done
38
39${S1AS_HOME}/bin/asadmin start-domain --user ${AS_ADMIN_USER} --password ${AS_ADMIN_PASSWORD} ${AS_ADMIN_DOMAIN}