일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Mac
- html
- Certbot
- Xdebug
- 구글 클라우드
- git pull
- https
- mysql
- Google Cloud
- Fail2ban
- child theme
- LetsEncrypt
- DOM Parser
- php
- home page
- MariaDB
- CentOS7
- non-www
- SSL
- vscode
- Liniux
- wordpress
- launch.json
- new user
- front page
- centos
- Apache
- root
- crontab
- Linux
- Today
- Total
목록전체 글 (35)
between 0 and 1
Error Message Error: Your CLT does not support macOS 11. It is either outdated or was modified. Please update your CLT or delete it if no updates are available. Update them from Software Update in System Preferences or run: softwareupdate --all --install --force If that doesn't show you an update run: sudo rm -rf /Library/Developer/CommandLineTools sudo xcode-select --install Alternatively, manu..
Local SSL development (for localhost) 1) create Certificate authority (CA) for local machine $> openssl req -x509 -nodes -new -sha256 -days 1024 -newkey rsa:2048 -keyout RootCA.key -out RootCA.pem -subj "/C=US/CN=Example-Root-CA" $> openssl x509 -outform pem -in RootCA.pem -out RootCA.crt 2) create Domain name certificate create a domains.ext file with following contents authorityKeyIdentifier=k..
httpd-vhosts.conf ServerName localhost ServerAlias www.localhost Redirect permanent / https://localhost DocumentRoot "/Users/devxpert/Dev/webroot" ServerName localhost ServerAlias www.localhost Protocols h2 http/1.1 Redirect permanent / https://localhost SSLEngine on SSLCertificateFile "/Users/devxpert/Dev/webroot/ssl/localhost.crt" SSLCertificateKeyFile "/Users/devxpert/Dev/webroot/ssl/localhos..
OS Start Stop Load & Unload (Run at Startup) List Linus systemctl start daemon systemctl stop daemon Load: systemctl enable daemon Unload: systemctl disable daemon systemctl list MaxOS launchctl start daemon launchctl stop daemon Load: launchctl load daemon Unlaod: launchctl unload daemon launchctl list
the simplest way is clean project, remove cached data and reinstall modules. In my case, This helped to solve the issues. Xcode clean project in Xcode (Menu -> Product -> Clean Build Folder) Terminal remove cached data rm -rf ~/Library/Developer/Xcode/DerivedData/ rm -rf ~/Library/Caches/CocoaPods/ reinstall modules pod deintegrate pod update