반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- codedeploy
- Python
- AWS CI/CD 구축하기
- aws cicd
- Spring
- IntelliJ
- codepipeline
- or some instances in your deployment group are experiencing problems.
- PostgreSQL
- java bigdecimal
- Jenkins
- aws
- 도커
- node
- codedeploy error
- docker
- SQL
- COALESCE
- redis
- chartjs
- kubeflow
- bootstrap
- codebuild
- Spring Error
- VPN
- chart.js
- JavaScript
- Flux
- Airflow
- Kafka
Archives
- Today
- Total
목록도커 (2)
Small Asteroid Blog
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
2020. 8. 7. 14:40
외부에서 도커 접속 ssh
(Ubuntu) 1. 업데이트 하기 apt-get update && apt-get install apt-file -y && apt-file update && apt-get install vim -y 위의 코드 사용하면 한번에 설치됨 추가로 apt-get install -y sudo 2. openssh-server - ssh 접속을 위해 필요 apt-get install net-tools nano openssh-server 3. ssh config 변경 vi /etc/ssh/sshd_config 파일 가운데의 PermitRootLogin을 yes로 바꿈 : 해당 설정을 바꾸지 않으면 다른 컴퓨터에서 일치하는 root 비밀번호를 넣더라도 접속이 되지 않는다. root로 접속하면 모든 권한을 가지므로 위험할 ..
클라우드 및 인프라/Docker
2020. 7. 17. 16:10