alpine linux ssh,linux – 在Alpine Docker容器中运行OpenSSH

用户尝试通过运行/etc/init.d/sshdstart启动已安装的OpenSSH服务,但遇到了命令未找到的错误。检查显示/etc/init.d/sshd文件存在且具有执行权限。问题可能在于系统未能正确识别或执行sshd启动脚本,可能需要检查配置文件和依赖项。
摘要由CSDN通过智能技术生成

我已经

installed OpenSSH了,现在我希望通过运行/etc/init.d/sshd start来运行它,如

documentation所述.但是它没有开始:

/ # /etc/init.d/sshd start

/bin/ash: /etc/init.d/sshd: not found

思考?

附:

/ # ls -la /etc/init.d/sshd

-rwxr-xr-x 1 root root 2622 Jan 14 20:48 /etc/init.d/sshd

/etc/init.d/sshd的内容:

#!/sbin/openrc-run

# Copyright 1999-2015 Gentoo Foundation

# Distributed under the terms of the GNU General Public License v2

# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/files/sshd.rc6.4,v 1.5 2015/05/04 02:56:25 vapier Exp $

description="OpenBSD Secure Shell server"

description_checkconfig="Verify configuration file"

description_reload="Reload configuration"

extra_commands="checkconfig"

extra_started_commands="reload"

: ${SSHD_CONFDIR:=/etc/ssh}

: ${SSHD_CONFIG:=${SSHD_CONFDIR}/sshd_config}

: ${SSHD_PIDFILE:=/var/run/${SVCNAME}.pid}

: ${SSHD_BINARY:=/usr/sbin/sshd}

depend() {

use logger dns

if [ "${rc_need+set}" = "set" ] ; then

: # Do nothing, the user has explicitly set rc_need

else

local x warn_addr

for x in $(awk '/^ListenAddress/{ print $2 }' "$SSHD_CONFIG" 2>/dev/null) ; do

case "${x}" in

0.0.0.0|0.0.0.0:*) ;;

::|\[::\]*) ;;

*) warn_addr="${warn_addr} ${x}" ;;

esac

done

if [ -n "${warn_addr}" ] ; then

need net

ewarn "You are binding an interface in ListenAddress statement in your sshd_config!"

ewarn "You must add rc_need=\"net.FOO\" to your /etc/conf.d/sshd"

ewarn "where FOO is the interface(s) providing the following address(es):"

ewarn "${warn_addr}"

fi

fi

}

checkconfig() {

if [ ! -d /var/empty ] ; then

mkdir -p /var/empty || return 1

fi

if [ ! -e "${SSHD_CONFIG}" ] ; then

eerror "You need an ${SSHD_CONFIG} file to run sshd"

eerror "There is a sample file in /usr/share/doc/openssh"

return 1

fi

if ! yesno "${SSHD_DISABLE_KEYGEN}"; then

ssh-keygen -A || return 1

fi

[ "${SSHD_PIDFILE}" != "/var/run/sshd.pid" ] \

&& SSHD_OPTS="${SSHD_OPTS} -o PidFile=${SSHD_PIDFILE}"

[ "${SSHD_CONFIG}" != "/etc/ssh/sshd_config" ] \

&& SSHD_OPTS="${SSHD_OPTS} -f ${SSHD_CONFIG}"

"${SSHD_BINARY}" -t ${SSHD_OPTS} || return 1

}

start() {

checkconfig || return 1

ebegin "Starting ${SVCNAME}"

start-stop-daemon --start --exec "${SSHD_BINARY}" \

--pidfile "${SSHD_PIDFILE}" \

-- ${SSHD_OPTS}

eend $?

}

stop() {

if [ "${RC_CMD}" = "restart" ] ; then

checkconfig || return 1

fi

ebegin "Stopping ${SVCNAME}"

start-stop-daemon --stop --exec "${SSHD_BINARY}" \

--pidfile "${SSHD_PIDFILE}" --quiet

eend $?

if [ "$RC_RUNLEVEL" = "shutdown" ]; then

_sshd_pids=$(pgrep "${SSHD_BINARY##*/}")

if [ -n "$_sshd_pids" ]; then

ebegin "Shutting down ssh connections"

kill -TERM $_sshd_pids >/dev/null 2>&1

eend 0

fi

fi

}

reload() {

checkconfig || return 1

ebegin "Reloading ${SVCNAME}"

start-stop-daemon --signal HUP \

--exec "${SSHD_BINARY}" --pidfile "${SSHD_PIDFILE}"

eend $?

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值