SSL initAppserver.sh
Interaktion und PortierbarkeitShell
#!/bin/bash
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License.
## Script to init GlassFish application server for automated tests. ## If not installed or newer binary is available, it uninstalls GlassFish, ## and installs it. Then it always stops domain if running, kills all ## related processes, deletes domain and creates new domain.
cleanup() { # check status all domains, stop running domains for domain in `$AS_HOME/bin/asadmin list-domains | grep running | grep -v not` ; do if [ $domain != "running" ]; then echo"Stopping domain $domain."
$AS_HOME/bin/asadmin stop-domain $domain fi done
# kill all App server processes for pid in `ps -ef | grep $AS_HOME | grep -v grep | awk {'print $2'}` ; do
kill -9 $pid done
# delete and create new domain
COUNT=`$AS_HOME/bin/asadmin list-domains | grep $AS_DOMAIN | wc -l` if [ "$COUNT" -eq 1 ]; then echo"Deleting domain $AS_DOMAIN."
$AS_HOME/bin/asadmin delete-domain $AS_DOMAIN
ERROR_CODE=$? if [ $ERROR_CODE != 0 ]; then echo"ERROR: $ERROR_CODE - Can't delete domain $AS_DOMAIN - trying to uninstall and install Glassfish."
uninstall
install
$AS_HOME/bin/asadmin delete-domain domain1 fi fi echo"Creating domain $AS_DOMAIN." echo AS_ADMIN_PASSWORD=adminadmin > $AS_HOME/passwd echo AS_ADMIN_ADMINPASSWORD=adminadmin >> $AS_HOME/passwd echo AS_ADMIN_USERPASSWORD=adminadmin >> $AS_HOME/passwd echo AS_ADMIN_MASTERPASSWORD=adminadmin >> $AS_HOME/passwd
$AS_HOME/bin/asadmin create-domain --adminport 4848 --user admin --savemasterpassword=true --passwordfile $AS_HOME/passwd $AS_DOMAIN
}
install() { # install only if new binary is available if [ -f ${AS_HOME}/version ]; then
AS_VERSION=`cat ${AS_HOME}/version` if [ "${AS_BINARY}" = "${AS_VERSION}" ]; then
return fi fi
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.