{"id":20020204,"url":"https://github.com/wonism/for_record__temporary","last_synced_at":"2026-03-04T16:31:10.833Z","repository":{"id":94612442,"uuid":"64265438","full_name":"wonism/for_record__temporary","owner":"wonism","description":null,"archived":false,"fork":false,"pushed_at":"2016-07-27T09:04:12.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-01T16:09:19.843Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wonism.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-27T01:00:00.000Z","updated_at":"2016-07-27T01:00:00.000Z","dependencies_parsed_at":"2023-03-21T15:51:03.523Z","dependency_job_id":null,"html_url":"https://github.com/wonism/for_record__temporary","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wonism/for_record__temporary","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wonism%2Ffor_record__temporary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wonism%2Ffor_record__temporary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wonism%2Ffor_record__temporary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wonism%2Ffor_record__temporary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wonism","download_url":"https://codeload.github.com/wonism/for_record__temporary/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wonism%2Ffor_record__temporary/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30086451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T15:40:14.053Z","status":"ssl_error","status_checked_at":"2026-03-04T15:40:13.655Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-13T08:30:14.961Z","updated_at":"2026-03-04T16:31:10.372Z","avatar_url":"https://github.com/wonism.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# 임시\n\n## AWS EC2 인스턴스 세팅하기\n- AWS EC2 대쉬보드에서 Launch 로 인스턴스 생성\n\n```sh\n# 인스턴스 접속\n$ ssh -i ~/.ssh/인증서.pem 계정명@주소\n\n# 패키지 업데이트\n$ sudo apt-get update\n$ sudo apt-get upgrade\n```\n\n## MySQL 설치\n__5.5 or 5.6__\n```sh\n$ sudo apt-get install mysql-server mysql-client\n```\n\n__5.7__\n```sh\n$ wget http://dev.mysql.com/get/mysql-apt-config_0.7.2-1_all.deb\n$ dpkg -i mysql-apt-config_0.7.2-1_all.deb\n\n$ sudo apt-get update\n$ sudo apt-get install mysql-server\n```\n\n```sh\n# 비밀번호 설정 뒤, \n# Security Script 실행 및 설정\n$ sudo mysql_secure_installation\n\n# 외부에서 MySQL 접속이 가능하도록 설정\n$ mysql -u root -p\nmysql\u003e use mysql;\nmysql\u003e GRANT ALL PRIVILEGES ON *.* to 'root'@'%' IDENTIFIED BY 'password';\nmysql\u003e flush privileges;\n```\n\n## MySQL my.cnf 설정\n```sh\n$ sudo vi /etc/mysql/my.cnf\n```\n```\n# bind-address = 127.0.0.1 부분 주석 처리\n# bind-address = 127.0.0.1\n\n# 인코딩 설정\n[mysqld]\n...\ncharacter-set-server = utf8\ncollation-server = utf8_general_ci\ninit_connect = set collation_connection = utf8_general_ci\ninit_connect = set names utf8\n\n[mysql]\n...\ndefault-character-set = utf8\n\n[mysqld_safe]\n...\nlog-error = /var/log/mysql/error.log\npid-file = /var/run/mysqld/mysqld.pid\ndefault-character-set = utf8\n\n[client]\n...\ndefault-character-set = utf8\n\n[mysqldump]\n...\ndefault-character-set = utf8\n\n# innoDB설정 (안됌)\n[mysqld]\n...\ninnodb_data_home_dir = /var/lib/mysql\ninnodb_data_file_path = ibdata1:10M:autoextend\ninnodb_autoextend_increment = 10M\ninnodb_log_group_home_dir = /var/lib/mysql\ninnodb_buffer_pool_size = 256M\ninnodb_additional_mem_pool_size = 20M\ninnodb_log_file_size = 64M\ninnodb_log_buffer_size = 8M\ninnodb_flush_method = O_DIRECT\ninnodb_flush_log_at_trx_commit = 1\ninnodb_lock_wait_timeout = 50\ninnodb_thread_concurrency = 8\n``` \n\n## MySQL 재시작\n```sh\n$ sudo /etc/init.d/mysql restart\n```\n\n## Data Directory 설정\n__MySQL 5.7.6 이전 버전을 사용하는 경우__\n```sh\n$ sudo mysql_install_db\n\n# mysql_install_db 는 5.7.6 에서 deprecated 되었다.\n```\n__MySQL 5.7.6 이후 버전을 사용하는 경우__\n```sh\n$ mysqld --initialize\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwonism%2Ffor_record__temporary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwonism%2Ffor_record__temporary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwonism%2Ffor_record__temporary/lists"}