일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SWIFT
- SwiftUI
- 앱리소스
- Android
- MYSQL
- git
- WebAuthn
- css
- FIDO2
- 앨범북
- OSX
- 애플
- kmip
- otpkey
- Nodejs
- albumbook
- openssl
- Xcode
- 인증
- fido
- MSYS2
- 안드로이드
- SSL
- SSH
- 2FA
- apple
- OTP
- appres
- 앱스토어
- MFA
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
yum clean all rpm --rebuilddb yum update yum clean all yum reinstall glibc glibc-common libgcc yum upgrade yum install yum-utils package-cleanup --problems package-cleanup --dupes
nodejs 설치npm install -g yonpm install -g bowernpm install -g grunt-clinpm install -g generator-angular 제너레이터http://yeoman.io/generators/official.htmlhttp://yeoman.io/generators/community.html todo 샘플https://github.com/AngularJS-SPA-Development/chapter01-todo
$ nohup node server.js &
How to install GIT on CentOS4 CommentsToday I would like to show you how I install GIT on CentOS servers. It might be super easy or slightly harder. It depends if you want to have the latest version (2.14.0) or you don't care:)Easy way to install git on CentOS with yumThe easiest way is to use yum of course. Simply typesudo yum install git -yand it will install git on your server. That's it 😀 Ho..
Mac 환경에서 MySQL 5.7.9 버젼 설치 후 root 접속 시도 시 패스워드 장애로 MySQL 접속이 불가능하다. #sudo /usr/local/mysql/support-files/mysql.server stop#sudo mysqld_safe --skip-grant-tables#mysql -u rootupdate mysql.user set password=password('2261bbs') where user='root'; 콘솔 윈도우에서 mysqld_safe 실행으로 safe 모드로 MySQL 데몬을 구동하고 다른 콘솔 윈도우를 띄어 MySQL에 접속한다. #mysql -u root 접속 후 다음 명령어로 root 비밀번호를 업데이트한다. [5.7 이전 버젼] update mysql.user s..
만약 리눅스 서버에 scp 가 없다면 scp 명령으로 copy 날릴때 다음과 같은 메세지 나온다.$ scp noip-duc-linux.tar.gz kcsrd:/usr/local/src/NOIP/. bash: scp: command not found lost connection 이럴 때 이것만 설치하면 된다.yum install openssh-clients
서버쪽에 authorized_keys 파일에 암만 공개키를 등록해 놓아도 자꾸 물어본다.물론 디렉토리 및 파일의 권한도 정확히 주었다.그때 해결할 수 있는 방법이다. restorecon -vchcon -R unconfined_u:object_r:user_home_t:s0 ~/.ssh/결국 파일의 읽기 권한에서 SELinux 가 관여하기 때문이다. 참고로 centos 에서 sshd 로그 관련은tail -f /var/log/audit/audit.log을 사용해 보자.
From : http://hackintosher.com/guides/updating-hackintosh-sierra-10-12-6/ Sierra 10.12.6 brought a number of stability and security improvements to macOS as well fixing a bug with the front headphone jack. The latest update also brings native support for Kabylake CPU’s and HD 630 graphics. Here is what you need to know to safely upgrade your hackintosh and what change you should make to take adv..
bin/mysqld_safe --user=mysql
OpenVPN on CentOS 7https://www.digitalocean.com/community/tutorials/how-to-setup-and-configure-an-openvpn-server-on-centos-7http://www.joinc.co.kr/modules/moniwiki/wiki.php/Site/System_management/VPN/OpenVPN위의 링크를 참고하여 CentOS7 에서 OpenVPN 설치 및 설정했습니다.준비사항CentOS7리눅스 관리를 위한 최소한의 설정Epel (Extra Package for Enterprise Linux)OpenVPN 은 기본 레포지토리에 없으므로 epel 을 추가 후 설치를 진행해야 한다.# yum install epel-releaseOpe..