redhat

    Docker) redhat7 - service command not found

    docker에서 redhat을 다운로드하고 ssh를 하기 위해 service ssh start를 하려고 했다. service command not found 가 나와서 # yum install initscripts 후 service 명령어를 사용하면 될 것이다. 만약 그래도 service ssh start 가 안된다면 # systemctl start sshd 를 사용하면 된다.

    docker redhat 기본 환경 세팅

    yum 사용 가능하게 아래 홈페이지 참고 1. https://nitocin.tistory.com/entry/Redhat7-%EC%97%90%EC%84%9C-%EB%8B%A4%EC%9D%8C-repository%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0 # yum clean all # yum repolist all => repository 목록 확인 가능 # yum -y install openssh-server => ssh 설치 # yum install initscripts -y => service, systemctl 명령어 안될 때 # vi /etc/ssh/sshd_config => 파일 가운데의 PermitRootLogin을 yes로 바꿈 # passwd root => 비밀번호 변..