반응형
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
- Flux
- codedeploy
- SQL
- codepipeline
- Kafka
- Spring Error
- bootstrap
- docker
- VPN
- Spring
- JavaScript
- 도커
- PostgreSQL
- chartjs
- aws
- COALESCE
- Airflow
- Python
- node
- IntelliJ
- Jenkins
- or some instances in your deployment group are experiencing problems.
- aws cicd
- kubeflow
- redis
- chart.js
- codedeploy error
- AWS CI/CD 구축하기
- codebuild
- java bigdecimal
Archives
- Today
- Total
목록리눅스 포트 열기 (1)
Small Asteroid Blog
[linux] 리눅스 방화벽 설정 (포트 확인 및 포트 열기)
리눅스 버전 확인 uname -a 리눅스 7버전 이하 iptables 리눅스 7버전 이상 Firewall Daemon 사용 아래내용은 iptables 이다. 포트 확인 netstat -tnlp # only server netstat -tnlp # servers and established netstat -na #자신의 웹서버 포트 확인 netstat -nat iptables -A INPUT -p tcp --dport 8088 -j ACCEPT 리눅스 상에서 방화벽 열어줄 때 사용하는 명령어로 tcp 프로토콜의 포트를 열어주는 명령어이다. (ex 8080 port) iptables -A INPUT -p tcp --dport 8080 -j ACCEPT -A : append의 약자로 방화벽 규칙 추가 -p :..
클라우드 및 인프라/Linux
2021. 4. 26. 13:55