일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- Android
- WebAuthn
- 앨범북
- 애플
- SwiftUI
- openssl
- css
- MYSQL
- OSX
- SWIFT
- apple
- 앱리소스
- MFA
- albumbook
- OTP
- Nodejs
- otpkey
- 인증
- SSH
- SSL
- Xcode
- MSYS2
- kmip
- FIDO2
- git
- 앱스토어
- appres
- fido
- 2FA
- Today
- Total
목록개발 플랫폼 및 언어/네트워크 기술 (32)
인디노트
프로토콜 스택 내부 데이터의 송수신을 담당하는 TCP, UDP 와 패킷 송수신 동작을 제어하는 IP 로 나뉨 - 애플리케이션 데이터를 송수신 할 때는 TCP 프로토콜을 사용 - DNS 서버에 대한 조회 등 짧은 제어용 데이터를 송수신 할 떄는 UDP 프로토콜 사용 - IP 내부에는 ICMP 와 ARP 를 포함 -- ICMP 는 패킷을 운반할 때 발생하는 오류를 통지하거나 제어용 메시지를 통지할 때 사용 -- ARP 는 IP 주소에 대응하는 Ethernet MAC 주소를 조사할 때 사용 IP 아래에는 LAN 드라이버가 있음 - LAN 드라이버는 LAN 어댑터의 하드웨어를 제어함 LAN 어댑터가 실제 송수신 (케이블에 신호를 송수신) 동작을 함 프로토콜 스택은 내부 메모리 영역에 통신 동작을 제어하기 위한 ..
https://graspingtech.com/vmware-fusion-add-network-adapter/ VMware Fusion: How to add an extra Network Adapter to a Ubuntu VM - GraspingTech This tutorial will show you how to add extra network adapters to VMware Fusion VMs with an example of how to configure them in Ubuntu once added. When you first create a Windows or Ubuntu VM with VMware Fusion*, you’ll notice it has a single network adap gr..
워드프레스를 Linux 에 설치 중이다. MySQL 에 wordpress 라는 DB 와 wordpress 라는 user 를 생성하는 문구를 기록한다. mysql> drop user wordpress@192.168.0.200; Query OK, 0 rows affected (0.01 sec) mysql> create user wordpress@192.168.0.200 identified with mysql_native_password by 'password'; Query OK, 0 rows affected (0.01 sec) mysql> grant all privileges on wordpress.* to wordpress@192.168.0.200; Query OK, 0 rows affected (0.00..
info.php 위의 코드는 잘 된다. dbtest.php 이 코드를 실행하면 php 로그에 다음의 내용이 찍힌다. Call to undefined function mysql_connect() 다음 명령을 실행 해 보았다. # yum list php-mysql Last metadata expiration check: 1:22:33 ago on Wed 14 Apr 2021 12:25:56 AM PDT. Error: No matching Packages to list 패키지가 없단다. 그래서, 설치했다. PHP 설치는 sudo dnf install php php-fpm php-gd php-mysqlnd 를 이용하여 설치 했었다. 참고 : tecadmin.net/install-apache-php-fpm-cen..
Apache - PHP 이용하여 WordPress 구축시 페이지가 안나오고 다음과 같이 파일 리스트가 보일때는... 다음과 같이 해당 컨테이너에 index.php 를 선언 해 줘야 한다. SSLEngine on DirectoryIndex index.php 적용하고 httpd 를 재시작하면 이렇게 잘 표시된다.
해당 웹페이지가 (php 존재하는) /home/web/site 일때 $ sudo semanage fcontext -a -t httpd_sys_rw_content_t "/home/web/site(/.*)?" $ sudo restorecon -Rv /home/web/site 를 해주고 httpd 서비스 재 시작한다. SELinux 관련이다.
sudo useradd -d /var/www/html -G apache
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..
https://getgrav.org/blog/macos-catalina-apache-multiple-php-versions Part 1: macOS 10.15 Catalina Web Development Environment Developing web applications on macOS is a real joy. There are plenty of options for setting up your development environments, including the ever-popular MAMP Pro that provides a nice UI on top of Apache, PHP and MySQL. However, there are times when MAMP Pro has slow downs..
https://www.howtoforge.com/tutorial/how-to-install-openvpn-server-and-client-with-easy-rsa-3-on-centos-8/ How to Install OpenVPN Server and Client with Easy-RSA 3 on CentOS 8 OpenVPN is an open-source application that allows you to create a secure private network over the public internet. In this tutorial, we will show you ... www.howtoforge.com 위에 링크된 문서를 갈무리 하였습니다. 가능하다면 위의 링크를 클릭하여 내용 참조 바랍니다..