블로그
-
CentOS에서 Mysql 설치 (CentOS 7 버전 에서 Mysql 설치)
. # yum -y install mysql-community-server 3. # systemctl start mysqld 4. # systemctl enable mysqld 5. 그럴땐 characterset을 utf8로 바꿔줘야합니다. my.cnf 파일을 편집하기 - /etc/my.cnf # vi /etc/my.cnf [client] default-characte
blog.naver.com · 2017.05.26
-
python3,라즈베리파이3, 소켓 프로그래밍 TCP/IP Client and Server
https://pymotw.com/2/socket/tcp.html Echo ServerThis sample program, based on the one in the standard library documentation, receives incoming messages and echo
blog.naver.com · 2016.11.01
-
[정보Tip] Windows Server/Client 패치 업데이트 변경 정책 안내
blog.naver.com · 2016.10.10
-
파이썬 스레드,소켓 프로그래밍
#server programimport socketimport threading HOST = '' PORT = 8089 s = socket.socket(socket.AF_INET, _start_new_thread(gettingMsg,()) while True: pass #client programimport socketimport thre.......
blog.naver.com · 2016.11.16
-
게임회사 채용공고, 일렉트로닉 아츠(Electronic Arts) EA 신규, 경력직 채용 진행중입니다~!
신입, 경력 공개채용 및 상시모집도 진행중이랍니다~ 지금 채용 하고 잇는 부분은 Creative Director Software Engineer (Client / Server) Game
blog.naver.com · 2016.08.24
-
bacula 설치 관련 참고
http://www.unixmen.com/install-and-configure-bacula-server-in-centos-6-4-rhel-6-4/ 윈도우용 bacula client
blog.naver.com · 2016.05.18
-
HTTP Response(응답 코드)
Success 200 : Ok > 정상 201 : Created > PUT method에 의해 원격지 서버에 파일 생성됨 202 : Accepted > Web server Moved permanently > 요구한 데이터를 변경된 임시 URL에서 찾음 302 : Moved temporarily > 요청 URL 정보를 다른 URL에 요청함 Client
blog.naver.com · 2016.04.01
-
MySQL 한글깨짐현상 제거 ( UTF8 )
/etc/my.cnf에 아래 내용 추가 ------------------------------------ [mysql] default-character-set = utf8 [client = utf8_general_ci" init_connect="SET NAMES utf8" character-set-server = utf8 collation-server = utf8
blog.naver.com · 2016.01.29
-
example of Sockets - Server & Client using QT
http://www.bogotobogo.com/cplusplus/sockets_server_client_QT.php
blog.naver.com · 2015.08.13
-
DHCP: Dynamic Host Configuration Protocol (RFC2131)
Internet Bootstrap Protocol, RFC0951, RFC1542) 프로토콜을 기반으로 구성 따라서 DHCP와 호화됨, --BOOTP : UDP/IP 패킷전달, port는 client 68 server 67사용 -주소할당 방식 : 자동할당, 동적할당, 수동할당 --동적할당: 서버에서 구성한 주소pool에서 client에게 취소될수 있는 ip주소를 할당 --자동할당
blog.naver.com · 2015.04.10