Ubuntu16.04 MySQL 설치
우선 본인이 사용하는 환경을 확인해주세요.
Debian
$ cat /etc/debian_version
CentOS 및 RedHat
$ cat /etc/redhat-release
fedora
$ cat /etc/fedora-release
★ 우분투← 대상!
$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.4 LTS"
Ubuntu에 MySQL을 설치해보세요!
$ sudo apt update
$ sudo apt install mysql-server mysql-client
감상
매우 단순하고 명쾌하다!좋아!!!
완성된 줄 알았어요.
$mysql -u xxx -p
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)
뜻밖에!Ubuntu에서 설치한 MySQL을 시작하십시오!
데몬 있어요?
ps aux | grep mysqld
있잖아재부팅 시도
$ /etc/init.d/mysql stop
$ rm -f /var/run/mysqld/mysqld.sock
$ rm -f /tmp/mysql.sock
$ /etc/init.d/mysql start
$ mysql -u xxx -p
안 돼요.재부팅도 해봐 ↑ 똑같아.
$ /etc/init.d/mysql restart
$ mysql -u xxx -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.22-0ubuntu0.16.04.1 (Ubuntu)
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
괜찮겠어!다시
미안하지만, 나는 대답하지 않았다
Reference
이 문제에 관하여(Ubuntu16.04 MySQL 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kenboo/items/3edda73f1626851ed823텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)