Home | History | Annotate | Download | only in mys
      1 #
      2 # CDDL HEADER START
      3 #
      4 # The contents of this file are subject to the terms of the
      5 # Common Development and Distribution License (the License).
      6 # You may not use this file except in compliance with the License.
      7 #
      8 # You can obtain a copy of the license at usr/src/CDDL.txt
      9 # or http://www.opensolaris.org/os/licensing.
     10 # See the License for the specific language governing permissions
     11 # and limitations under the License.
     12 #
     13 # When distributing Covered Code, include this CDDL HEADER in each
     14 # file and include the License file at usr/src/CDDL.txt.
     15 # If applicable, add the following below this CDDL HEADER, with the
     16 # fields enclosed by brackets [] replaced with your own identifying
     17 # information: Portions Copyright [yyyy] [name of copyright owner]
     18 #
     19 # CDDL HEADER END
     20 #
     21 
     22 #
     23 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
     24 # Use is subject to license terms.
     25 #
     26 
     27 #ident	"@(#)mysql_config.ksh	1.6	07/08/07 SMI"
     28 
     29 # This file will be sourced in by mysql_register and the parameters
     30 # listed below will be used.
     31 #
     32 
     33 # Where is mysql installed (BASEDIR)
     34 MYSQL_BASE=
     35 
     36 # Mysql admin-user for localhost (Default is root)
     37 MYSQL_USER=
     38 
     39 # Password for mysql admin user
     40 MYSQL_PASSWD=
     41 
     42 # Configured logicalhost
     43 MYSQL_HOST=
     44 
     45 # Specify a username for a faultmonitor user
     46 FMUSER=
     47 
     48 # Pick a password for that faultmonitor user
     49 FMPASS=
     50 
     51 # Socket name for mysqld ( Should be /tmp/<logical-host>.sock )
     52 MYSQL_SOCK=
     53 
     54 # Specify the physical hostname for the physical NIC that this logicalhostname 
     55 # belongs to for every node in the cluster this Resource group can get located on.
     56 # IE: The logicalhost lh1 belongs to hme1 for physical-node phys-1 and
     57 # hme3 for  physical-node phys-2. The hostname for hme1 is phys-1-hme0 and
     58 # for hme3 on phys-2 it is phys-2-hme3.
     59 # IE: MYSQL_NIC_HOSTNAME="phys-1-hme0 phys-2-hme3"
     60 MYSQL_NIC_HOSTNAME=
     61 
     62 # where are your databases installed, (location of my.cnf)
     63 MYSQL_DATADIR=
     64