일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SSH
- MSYS2
- git
- 애플
- 인증
- 앨범북
- MYSQL
- fido
- 앱리소스
- albumbook
- apple
- 앱스토어
- SSL
- WebAuthn
- css
- Xcode
- MFA
- 안드로이드
- SWIFT
- Android
- appres
- OTP
- otpkey
- kmip
- openssl
- FIDO2
- 2FA
- Nodejs
- SwiftUI
- OSX
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
증상remote ssh 서버에 공개키를 등록하고 .ssh 폴더와 authorized_keys 파일의 permission 도 맞는데 자동 로그인이 안 됨. 원인사용자의 홈디렉토리나 .ssh 의 SELinux context 가 맞지 않으면 sshd가 authorized_keys 을 읽을 수 없어서 자동 로그인이 안 될수 있음 해결 # restorecon -R ~/.ssh/
/Users/kgy/Library/Containers/org.smartdisk.imageresizer.pro/Data/Library/Application Support/org.smartdisk.imageresizer.pro/Presets2
~/Library/Application\ Support/Sequel\ Pro/Favorites.plist
/Users/$USER/Library/Preferences/VMware Fusion/preferences
MySQL 5.6 쯤부터 보안문제로 커맨드에 비밀번호를 넣을수 없게되었다. Warning: using a password on the command line interface can be insecure.기존처럼 커맨드에 비밀번호 넣어서 사용하면 이런 메시지를 보게된다. 이럴때 login-path 옵션을 사용하면 된다. #생성mysql_config_editor set --login-path=설정이름 --host=주소 --user=아이디 --port=포트 --password user$ mysql_config_editor set --login-path=myroot --host=localhost --user=root --port=3306 --password Enter password: ***** #확인mysq..
우선 작동 중인 firewalld 데몬을 중지 시킨 후 재부팅 시에도 올라오지 않도록 설정한다.systemctl stop firewalld systemctl mask firewalld 다음으로 iptables 명령어와 연관된 패키지를 설치한다. CentOS 설치할 때의 옵션에 따라 설치 되었을 수도 있다. 나는 웹 서버 구성으로 설치 했더니 이미 설치 되어 있었다.yum install iptables-services iptables 서비스 데몬이 재부팅시에 자동으로 올라오도록 만들자 systemctl enable iptables iptables 서비스를 중지 | 시작 | 재시작systemctl [stop | start | restart ] iptables iptables 규칙 저장service iptab..
sudo lsof -i -n -P | grep TCP
윈도우 7 .NET Framework 3.5 윈도우 8 .NET Framework 4.5 윈도우 8.1 .NET Framework 4.5.1 윈도우 10 .NET Framework 4.6
MySQL 의 ibdata1 파일이 날라가면 DB 실행조차 안된다. ㅠㅠ이것을 해결하려고 하루 종일 걸렸다.방법은. 이 파일을 지우거나 혹은 예전에 백업받아두었던 DB 로 복귀를 한다.이 ibdata1 파일과 ib_logfile0, ib_logfile1 파일을 삭제하고MYSQL 의 cnf 파일의 innodb_force_recovery=1 를 하고 재실행하면 MySQL 은 그 상태에서이 파일들을 새로 생성된다. 물론 이때 DB 뷰 같은것으로 테이블을 선택하면 먹통 되듯이문제가 발생됨을 알 수 있다. 즉, 깨진 (혹은 새로 생성된) ibdata1 파일로는 DB 테이블을 구동할 수없는 것이다. 만약 복구하려는 db 이름이 jira 라면 jira 폴더 안에 있는 frm과 ibd 파일을 백업 해 놓는다. (중요함..
2.11.3 Rebuilding or Repairing Tables or IndexesThis section describes how to rebuild or repair tables or indexes, which may be necessitated by:Changes to how MySQL handles data types or character sets. For example, an error in a collation might have been corrected, necessitating a table rebuild to update the indexes for character columns that use the collation.Required table repairs or upgrades..