kafka_neu-1778570057504.zip-extract/kafka-4.2.0-src/vagrant/broker.sh

Path
kafka_neu-1778570057504.zip-extract/kafka-4.2.0-src/vagrant/broker.sh
Status
scanned
Type
file
Name
broker.sh
Extension
.sh
Programming language
Bash
Mime type
text/x-shellscript
File type
Bourne-Again shell script, ASCII text executable
Tag

      
    
Rootfs path

      
    
Size
1879 (1.8 KB)
MD5
17e5c9a5d5531747a15215d5825c044c
SHA1
896912045fbb26edb62dcb099a7f627ecc8cef42
SHA256
1572d4c0a9d9f5795fe96b5fa3788a983c6cc5c7c5b7b3cfa94cd35c5891558f
SHA512

      
    
SHA1_git
986f0fae43650ea8da5dbc0937df1952fba68ccd
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
broker.sh | 1.8 KB |

#!/usr/bin/env 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. # Usage: brokers.sh <broker ID> <public hostname or IP> <list zookeeper public hostname or IP + port> set -e BROKER_ID=$1 PUBLIC_ADDRESS=$2 PUBLIC_ZOOKEEPER_ADDRESSES=$3 JMX_PORT=$4 kafka_dir=/opt/kafka-dev cd $kafka_dir sed \ -e 's/broker.id=0/'broker.id=$BROKER_ID'/' \ -e 's/#advertised.host.name=<hostname routable by clients>/'advertised.host.name=$PUBLIC_ADDRESS'/' \ -e 's/zookeeper.connect=localhost:2181/'zookeeper.connect=$PUBLIC_ZOOKEEPER_ADDRESSES'/' \ $kafka_dir/config/server.properties > $kafka_dir/config/server-$BROKER_ID.properties echo "Killing server" bin/kafka-server-stop.sh || true sleep 5 # Because kafka-server-stop.sh doesn't actually wait echo "Starting server" if [[ -n $JMX_PORT ]]; then export JMX_PORT=$JMX_PORT export KAFKA_JMX_OPTS="-Djava.rmi.server.hostname=$PUBLIC_ADDRESS -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false " fi bin/kafka-server-start.sh $kafka_dir/config/server-$BROKER_ID.properties 1>> /tmp/broker.log 2>> /tmp/broker.log &
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
41.46
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9