본문 바로가기

전체 글

(45)
centos에 postgre9.6설치하고 윈도우에서 포트포워딩으로 접속하는법 먼저 ping 명령어를 날려서 네트워크가 정상으로 동작하고 있는지 확인한다. ping www.naver.com 네트워크가 정상적으로 동작하지 않으면 네트워크 설정이 안 된 것이니 밑에 경로로 이동한다. 그리고 vi 를 이용하여서 파일을 수정을 한다. 맨 밑에 글자를 바꿔주면 된다. cd /etc/syscinfig/network-scripts vi ifcfg-enp0s3 맨 밑에 ONBOOT=no를 ONBOOT=yes로 바꿔준다. 만약에 해당 글자가 없으면 새로 써주면 된다. 그 다음 다시 ping www.naver.com 을 하면 정상적으로 응답이 된다. 리눅스에 방화벽을 설치한다. sudo yum install firewalld 방화벽을 시작한다. sudo systemctl start firewalld..
The 2021 Web Developer Readmap 하나씩 따라하기-(1)DNS and how it works? https://levelup.gitconnected.com/the-2020-web-developer-roadmap-76503ddfb327 The 2021 Web Developer Roadmap Learn to become a Frontend, Backend, Fullstack, or DevOps developer with this visual guide — no CS degree required levelup.gitconnected.com 위에 링크에서 가져온 2021 Web Developer Roadmap에 있는 내용 중 천천히 하나씩 공부해보려 한다. 오늘은 빨간 색으로 되어있는 DNS and how it works? 에 대해 알아보고자 한다. DNS란 무엇인가? DNS는 Domain Name Sys..
git fast-forward 원인 및 해결 깃에 로컬에서 작업한 파일들을 올리려고 하니 밑에와 같은 메시지가 나오면서 push가 되지 않았다. hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usually caused by another repository pushing hint: to the same ref. You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for d..