본문 바로가기

전체 글74

docker 그룹 유저 추가 usermode -aG docker $USER 2021. 9. 16.
docker 설치 curl -fsSL https://get.docker.com/ | sudo sh 2021. 9. 15.
robots.txt 싹다 막아버리기 도메인/robots.txt에 아래 내용 써넣기 #####아래내용##### User-agent: * Disallow: / ################# 정보) 도메인마다 설정해줘야함 정보) 하위도메인과 루트도메인을 따로 취급함 2021. 9. 14.
mariadb(mysql) 간단 시간 설정 명령어 mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -uroot -p mysql (mysql 쿼리) SELECT @@global.time_zone, @@session.time_zone; SET GLOBAL time_zone='Asia/Seoul'; SET time_zone = 'Asia/Seoul'; SELECT @@global.time_zone, @@session.time_zone; SELECT NOW(); 2021. 9. 13.
mysql 백업 mysqldump -h[HOST] -u[USER_NAME] -p --databases [DATABASE_NAME] > sql.sql 2021. 9. 12.
aws mariadb 한글문제 alter table [table] convert to charset utf8; 2021. 9. 11.
우분투 mariadb 10.3 설치 apt-get -y install software-properties-common dirmngr apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xF1656F24C74CD1D8 add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://mirror.zol.co.zw/mariadb/repo/10.3/debian stretch main' apt-get update apt-get install -y mariadb-server-10.3 apt-get install mysql-client 2021. 9. 10.
우분투 시간 설정 /usr/share/zoneinfo에서 시간 고르기 ln -sf "고른 시간대" /etc/localtime [예시] ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime 2021. 9. 9.
리눅스 가상메모리 설정 swap [메모리 체크] free (메모리 확인) [생성] fallocate -l 1GB /swapdata (대용량 파일 생성) chmod 600 /swapdata (권한설정) mkswap /swapdata (swap으로 포멧) swapon /swapdata (swap 등록) vim /etc/fstab (추가) ############################################# /swapdata none swap sw 0 0 ############################################# [제거] swapoff /swapdata rm /swapdata 2021. 9. 8.
[Debian계열] apt로 nodejs 최신버전 설치 ROOT 기준 nodejs version 12 apt-get install -y curl curl -sL https://deb.nodesource.com/setup_12.x | bash - apt-get update apt-get install -y nodejs nodejs --version nodejs version 11 apt-get install -y curl curl -sL https://deb.nodesource.com/setup_11.x | bash - apt-get update apt-get install -y nodejs nodejs --version nodejs version 10 apt-get install -y curl curl -sL https://deb.nodesource.com/.. 2021. 9. 8.