본문 바로가기

전체 글

(52)
Mysql 8.0.32 설치 ( tar 파일로 설치 ) centos 7에 mysql 8.0.32 버전을 설치해보도록 하겠습니다. 우선 mysql 설치에 필요한 파일부터 다운로드 받습니다. wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.32-linux-glibc2.12-x86_64.tar.xz 위 명령어를 통해 설치를 받거나 https://dev.mysql.com/downloads/mysql/ 홈페이지에 접속하여 아래와 같이 설정한 후 파일을 다운로드 합니다. Select Operating System -> Linux - Generic 설정 (mysql-8.0.32-linux-glibc2.12-x86_64.tar.xz) Download ** 설치를 하기 위해서 root 계정 또는 sudo 권한이 있..
vmware workstation player 포트포워딩 vmware를 통해 서버를 만들게 되면, 가상서버를 만든 host 이외에는 가상서버에 접근이 불가능합니다. host 말고 외부에서도 접속이 가능하게 하기 위해서는 포트포워딩을 사용해야 합니다. 그래서 오늘은 vmware workstation player 15 버전을 기준으로 포트포워딩을 한번 해보겠습니다. https://customerconnect.vmware.com/downloads/details?downloadGroup=PLAYER-1557&productId=800&rPId=55787 https://customerconnect.vmware.com/downloads/details?downloadGroup=PLAYER-1557&productId=800&rPId=55787 Your browser is no..
ntp 서버 설정 ( + ubuntu에서 진행 ) NTP 는 시간을 NTP 서버와 자동으로 동기화 해주는 프로토콜입니다. 여러 서버가 구축되어 있을 때, 모든 서버의 시간을 정확하게 맞추기 위해 사용합니다. yum install ntp 또는 apt-get install ntp 명령어를 통해 ntp를 설치합니다. 이후 /etc/ntp.conf 파일에서 내용을 수정합니다. - NTP 서버 설정 #pool 0.ubuntu.pool.ntp.org iburst #pool 1.ubuntu.pool.ntp.org iburst #pool 2.ubuntu.pool.ntp.org iburst #pool 3.ubuntu.pool.ntp.org iburst server 127.127.1.0 # Use Ubuntu's ntp server as a fallback. #pool ..