일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 미국집구하기
- node
- 홈하다미국
- mongo
- Express
- 팔빠지날
- 뉴질랜드렌트
- 미국집렌트
- 용한의느님
- 금연
- 게시판
- 외국인주택구입
- 오클랜드
- 선스크린
- 보안
- 외국인집구하기
- 뉴질랜드
- 리액트
- 전자담배
- 유모차태우기
- 말듣게하기
- 뉴질랜드_여자혼자_여행하기
- 홈하다
- 서버 2016
- 뉴질랜드범죄
- 뉴질랜드집구하기
- 노드
- 홈하다뉴질랜드
- react
- 윈도우서버
- Today
- Total
목록참고라이브러리 (7)
이런일도있었어
cent0S 7 이상 부터는 firewall 을 사용해서 포트를 열어줘야한다. 현재 firewalld 상태 확인 systemctl status firewalld TCP 또는 UDP 추가 firewall-cmd --permanent --add-port=22/TCP # 22 SSH 포트 오픈 firewall-cmd --perfirewall-cmd --permanent --add-port=53/UDP #53 포트오픈 포트 삭제 firewall-cmd --permanent --remove-port=444/tcp 서비스 추가 firewall-cmd --permanent --add-serivce=ssh firewall-cmd --permanent --add-service=http 서비스 삭제 firewall-cmd..
관리자권한으로 POWERSHELL 열어서 New-SelfSignedCertificate -FriendlyName "FTP Server" -CertStoreLocation cert:\localmachine\my -DnsName ftp.example.com ftp.expample.com 은 원하는이름으로. 그리고 IIS에 만들어둔 FTP 서버에 넣어두면 TLS로 연결됨
이미지 압축 프로그램으로 그나마 가장 괜찮은것. https://saerasoft.com/caesium/ 한번에 폴더전체를 할수 있다.
특정 아이피만 SSH (포트22) 에 접근가능하도록 하는 방법 sudo iptables -A INPUT -p tcp -s YOUR.IP.HERE --dport 22 -j ACCEPT sudo iptables -A INPUT -p tcp --dport 22 -j DROP sudo iptables-save 다시 블럭 시킬리면 sudo iptables -D INPUT -p tcp --dport 22 -j DROP
vim /etc/mysql/my.cnf 실행 다음 라인 찾아서 bind-address = 127.0.0.1 127.0.0.1 을 0.0.0.0 으로 변경mysql 리스타트 service mysql restart mysql -u username -p 로들어가서 전체 아이피 오픈 mysql> GRANT ALL PRIVILEGES ON *.* TO 'USERNAME'@'%' IDENTIFIED BY 'PASSWORD' WITH GRANT OPTION; 특정아이피만 오픈 mysql> GRANT ALL PRIVILEGES ON *.* TO 'USERNAME'@'1.2.3.4' IDENTIFIED BY 'PASSWORD' WITH GRANT OPTION; 1.2.3.4 는 오픈하고 싶은 아이피주소 SELECT * ..
If paypal payment give an error with connection problem,1. check shipping address - having null or no value to first_namelast_namelocalitypostal_coderegionstreet_addresswill give this error. Alternative solution change enableShippingAddress to false braintree.setup('CLIENT-TOKEN-FROM-SERVER', 'custom', { paypal: { container: 'paypal-container', singleUse: true, // Required amount: 10.00, // Requ..