일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- otpkey
- 인증
- kmip
- fido
- appres
- 앨범북
- FIDO2
- 2FA
- 안드로이드
- WebAuthn
- Android
- SSL
- apple
- SwiftUI
- git
- OSX
- css
- MFA
- OTP
- Nodejs
- 앱리소스
- SWIFT
- MSYS2
- 앱스토어
- Xcode
- albumbook
- SSH
- openssl
- 애플
- MYSQL
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
CentOS 8 에 워드프레스 설치형 패키지를 설치하는 방법을 소개합니다. 우선, 워드프레스는 PHP, MySQL (혹은 MiriaDB) 그리고 Apache Web Server 가 기본적으로 설치되어 있어야만 됩니다. 물론, DB 혹은 Apache Web Server 는 다른 솔루션으로 대체 하셔도 됩니다. $ sudo dnf makecache $ sudo dnf install mariadb mariadb-server httpd php-mysqlnd php-pecl-zip wget $ sudo systemctl start httpd $ sudo systemctl status httpd $ sudo systemctl enable httpd $ sudo systemctl status mariadb $ sud..
MySQL 을 설치한 후 별도의 설정을 하지 않으면 아마도 초기 패스워드 (암호) 는 비어있게 됩니다. 이 경우 localhost 의 root 접근에 암호를 걸어주는 방법을 다음과 같이 수행하면 됩니다. 순서는 다음과 같습니다. 1) mysql 접속 $ mysql -u root -p 2) 패스워드 입력 Enter password: 초기설치후 패스워드가 없다면 그냥 'Enter' 키를 치면 됩니다. 만약, 패스워드가 걸려 있다면 해당 패스워드를 입력하면 됩니다. 3) mysql db 사용 mysql> use mysql; 4) 현재 패스워드 설정 관련 내용 리스트 mysql> select host,user,authentication_string from user; 5) 새로운 패스워드 설정 mysql> al..
MySQL 서버를 설치 한 후 sock 파일을 다른 곳으로 이동한 후 mysql 접속을 할 때 다음과 같은 에러 메시지가 나오면서 접속을 못하는 경우가 발생합니다. mysql -u root -p Enter password: Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' 이 경우 아마 mysql-server.cnf 파일에 다음과 같이 socket 디렉토리를 옮긴 경우일 것입니다. [mysqld] datadir=/DATA/mysql socket=/DATA/mysql/mysql.sock log-error=/var/log/mysql/mysqld.log pid-file=/run/mysqld/mysqld.pid 이렇게 가..
MySQL 의 DATA 저장 위치를 바꾼후 mysqld 를 실행하면 로그 출력과 함께 MySQL 이 가동되지 못할 경우가 있습니다. [Warning] [MY-010091] [Server] Can't create test file /DATA/mysql/mysqld_tmp_file_case_insensitive_test.lower-test [System] [MY-010116] [Server] /usr/libexec/mysqld (mysqld 8.0.21) starting as process 7366 [Warning] [MY-010091] [Server] Can't create test file /DATA/mysql/mysqld_tmp_file_case_insensitive_test.lower-test [Wa..
OpenSSH 서버를 를 사용할 때 보안을 위해서 ssh 인증서를 설치하여 인증서 로그인을 하게됩니다. 이때, 암호 (Password) 로그인을 차단하는 방법에 대한 것입니다. 물론, 원격 접속중일때는 ssh 인증서로 로그인이 되는것을 확인 후 설정하길 바랍니다. 그렇지, 않으면 서버까지 가서 직접 무려서 해야 합니다. 설정 후에는 ssh 접속이 인증서를 사용할 경우에만 접속되기 때문입니다. 1. sshd_config 파일 수정하기 다음과 같은 명령으로 sshd_config 파일을 vi 에디터로 수정합니다. # vi /etc/ssh/sshd_config 수정할 내용은 다음과 같습니다. 패스워드 차단, 공개키 인증방식만 허용 PermitRootLogin without-password PasswordAuth..

cloud.google.com/sdk/docs/quickstart-redhat-centos?hl=ko Red Hat 및 Centos 빠른 시작 | Cloud SDK 문서 | Google Cloud Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trade cloud.google.com cloud.google.c..

ayonc.tistory.com/136 JavaScript 모듈, 모듈 형식, 모듈 로더 및 모듈 번들러에 대한 10분 입문서 [원글] JavaScript 모듈, 모듈 형식, 모듈 로더 및 모듈 번들러에 대한 10분 입문서: A 10 minute primer to JavaScript modules, module formats, module loaders and module bundlers 모듈(module) 모듈이란 구.. ayonc.tistory.com
Flutter 를 설치 후 flutter doctor -v 에서 다음과 같은 에러가 나올때. 물론 AndroidStudio 에서 해당 plugin 은 설치한 상태이다. [!] Android Studio • Android Studio at /Applications/Android Studio 4.2 Preview.app/Contents ✗ Flutter plugin not installed; this adds Flutter specific functionality. ✗ Dart plugin not installed; this adds Dart specific functionality. • Java version OpenJDK Runtime Environment (build 11.0.8+10-b944.6916..
stackoverflow.com/questions/950087/how-do-i-include-a-javascript-file-in-another-javascript-file
ES5 var name = req.body.name var age = req.body.age var email = req.body.email ES6 const {name, age, email} = req.body ES5 var name = 'hak' var age = 27 var email = 'code.ryan.lee@gmail.com' var datas = { name: name, age: age, email: email } ES6 let name = 'hak' let age = 27 let email = 'code.ryan.lee@gmail.com' let datas = {name, age, email} let datas2 = {username: name, age, email} ES5 var use..