mirror of https://github.com/apache/druid.git
53 lines
1.7 KiB
Perl
Executable File
53 lines
1.7 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
# 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.
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Socket;
|
|
|
|
my $skip_var = $ENV{'DRUID_SKIP_PORT_CHECK'};
|
|
if ($skip_var && $skip_var ne "0" && $skip_var ne "false" && $skip_var ne "f") {
|
|
exit 0;
|
|
}
|
|
|
|
my @ports = (1527, 2181, 8081, 8082, 8083, 8090, 8091, 8200, 8888);
|
|
|
|
my $tcp = getprotobyname("tcp");
|
|
for my $port (@ports) {
|
|
socket(my $sock, PF_INET, SOCK_STREAM, $tcp) or die "socket: $!";
|
|
setsockopt($sock, SOL_SOCKET, SO_REUSEADDR, pack("l", 1)) or die "setsockopt: $!";
|
|
if (!bind($sock, sockaddr_in($port, INADDR_ANY))) {
|
|
print STDERR <<"EOT";
|
|
Cannot start up because port $port is already in use.
|
|
|
|
If you need to change your ports away from the defaults, check out the
|
|
configuration documentation:
|
|
|
|
https://druid.apache.org/docs/latest/configuration/index.html
|
|
|
|
If you believe this check is in error, or if you have changed your ports away
|
|
from the defaults, you can skip the check using an environment variable:
|
|
|
|
export DRUID_SKIP_PORT_CHECK=1
|
|
|
|
EOT
|
|
exit 1;
|
|
}
|
|
}
|