MYSQL 비밀번호 변경하기
MYSQL 비밀번호 변경하기 버전 >= 5.7.6 이상 mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; 버전 5.7.6 미만 mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456'); Post Tags: #mariadb, #mysql, #password, #sql, …
MYSQL 비밀번호 변경하기 버전 >= 5.7.6 이상 mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; 버전 5.7.6 미만 mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('123456'); Post Tags: #mariadb, #mysql, #password, #sql, …
우분투에서 Mariadb 설치하기 Install Start installing the package. apt -y install mariadb-server mariadb-client Enables you to improve the security of your MariaDB installation. /usr/bin/mysql_secure_installation $ vi /etc/my.cnf [mysqld] character-set-server=utf8mb4 collation-server=utfmb4_unicode_ci …
우분투에서 MySQL 설치하기 Install apt install -y mysql-server 캐릭터셋 설정하기 $ vi /etc/my.cnf … [mysqld] character-set-server=utf8mb4 collation-server=utfmb4_unicode_ci systemctl restart mysql 서버 재부팅시 자동 활성화하기 $ systemctl stop mysql $ systemctl …
우분투에서 기본 패키지 설치하기 sudo su Upgrade your operating system to the latest. apt update && apt -y upgrade Installing prerequisites apt -y install git curl wget zip unzip vim …
워드프레스에서 업로드 사이즈 제한하기 function limit_upload_size() { add_filter('wp_handle_upload_prefilter', function ($file) { $file_size_limit = 1024; // 1MB in KB if (!current_user_can('manage_options')) { $current_size = $file['size']; $current_size = $current_size / 1024; //get …
IOS에서 폼 필드 초기화하기 텍스트 필드 input,textarea{background-clip:padding-box;-webkit-appearance:none;-webkit-border-radius: 0;} 라디오 버튼 input[type=radio]{border-radius:100%;}
IOS에서 Auto Tel 제거하기 <meta name="format-detection" content="telephone=no" />
폰트 단위 REM 기본 설정 Edit style.css html { font-size: 62.5%; line-height: 1; } body { font-size: 16px; font-size: 1.6rem; line-height: 1.6; }
폰트 굵기 목록 속성 굵기 설명 font-weight 100 Thin | Hairline font-weight 200 Extra Light | Ultra Light font-weight 300 Light | Book font-weight 400 Normal | Regular | Plain …
일본어 유니코드 범위 유니코드 목록 Kanji: [U+4E00–U+9FBF] Hiragana: [U+3040–U+309F] Katakana: [U+30A0–U+30FF] 유니코드 범위 Unicode: U+4E00-U+9FBF U+3040-U+309F U+30A0-U+30FF Javascript: [\u4E00-\u9FBF]|[\u3040-\u309F]|[\u30A0-\u30FF] // Unicode and Japanese Kanji for(uint i=0x4E00;i <= 0x9FFF;i++){ string line …