$ ./sbin/start-all.sh starting org.apache.spark.deploy.master.Master, logging to /home/zhangjc/frin/spark/spark-3.5.1-bin-hadoop3/logs/spark-zhangjc-org.apache.spark.deploy.master.Master-1-frin.out localhost: ERROR: Python with virtualenvwrapper module not found! localhost: Either, install virtualenvwrapper module for the default python3 interpreter localhost: or set VIRTUALENVWRAPPER_PYTHON to the interpreter to use. localhost: starting org.apache.spark.deploy.worker.Worker, logging to /home/zhangjc/frin/spark/spark-3.5.1-bin-hadoop3/logs/spark-zhangjc-org.apache.spark.deploy.worker.Worker-1-frin.out
for host in `echo "$HOSTLIST"|sed "s/#.*$//;/^$/d"`; do if [ -n "${SPARK_SSH_FOREGROUND}" ]; then ssh $SPARK_SSH_OPTS "$host" $"${@// /\\ }" \ 2>&1 | sed "s/^/$host: /" else ssh $SPARK_SSH_OPTS "$host" $"${@// /\\ }" \ 2>&1 | sed "s/^/$host: /" & fi if [ "$SPARK_WORKER_SLEEP" != "" ]; then sleep $SPARK_WORKER_SLEEP fi if [ "$SPARK_SLAVE_SLEEP" != "" ]; then >&2 echo "SPARK_SLAVE_SLEEP is deprecated, use SPARK_WORKER_SLEEP" sleep $SPARK_SLAVE_SLEEP fi done