# With SMTP IP1=172.29.21.134 # # # Must resolve to IP address or DNS name of host - not to 127.0.0.1 or localhost. HOSTIP=$(hostname -i) # # # Edge sys admin credentials ADMIN_EMAIL="opdk@google.com" APIGEE_ADMINPW="Secret123" # If omitted, you are prompted for it. # # # Specify the Management Server port. APIGEE_PORT_HTTP_MS=8080 # # # # # Monetization configuration properties. # # # # Postgres credentials from Edge installation. PG_USER=apigee # Default from Edge installation PG_PWD=postgres # Default from Edge installation # # # Specify Postgres server. MO_PG_HOST="$IP1" # Only specify one Postgres node. # # # Create a Postgres user for Monetization. # # Default username is "postgre". # # If you specify a different user, that user must already exist. MO_PG_USER="postgre" MO_PG_PASSWD="moUserPWord" # # # Specify one ZooKeeper host. # # Ensure this is a ZooKeeper leader node in a multi-datacenter environment. ZK_HOSTS="$IP1" # # # Specify Cassandra information. # # Ensure CASS_HOSTS is set to the same value as when you installed Edge. # # Must use IP addresses for CASS_HOSTS, not DNS names. # CASS_HOSTS="$IP1:1,1 $IP2:1,1 $IP3:1,1" CASS_HOSTS="$IP1" # # # Default is "Apigee", unless it was changed during Edge install. CASS_CLUSTERNAME="Apigee" # # # Cassandra uname/pword required only if you enabled Cassandra authentication. # # CASS_USERNAME= # # CASS_PASSWORD= # # # Specify the region. # # Default is dc-1 unless you are in a multi-datacenter environment. REGION="dc-1" # # # If your Edge config file did not specify SMTP information, add it. # # Monetization requires an SMTP server. # SMTPHOST=smtp.gmail.com # SMTPPORT=465 # SMTPUSER=your@email.com # SMTPPASSWORD=yourEmailPassword # SMTPSSL=y # SMTPMAILFROM="My Company " SKIP_SMTP=n SMTPHOST=smtp.example.com SMTPUSER=smtp@example.com # omit for no username SMTPPASSWORD=smtppwd # # omit for no password SMTPSSL=n SMTPPORT=25 SMTPMAILFROM="My Company "