Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JavaScript
- smarty
- mariadb
- jQuery
- yum
- i18n
- TextBox
- Selectbox
- Oracle
- Eclipse
- SVN
- TPL
- Python
- random
- 부모창
- replace
- 확장자
- RabbitMQ
- centos
- Postfix
- 한글 깨짐
- php
- ubuntu
- 문자열자르기
- install
- docker
- MySQL
- 천단위
- 일괄변경
Archives
- Today
- Total
wilson's story
Ubuntu 18.04 에 Mariadb 10.5 설치 본문
반응형
Ubuntu 18.04에 Mariadb를 기본으로 설치 하면 최신 버전이 설치가 되지 않는다
최신 버전을 설치하고 싶으다면
sudo apt-get install software-properties-common sudo apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc' sudo add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.yongbok.net/mariadb/repo/10.5/ubuntu bionic main' sudo apt update sudo apt install mariadb-server
설치 완료 후 외부에서도 접속 가능 하도록 하기 위해
sudo vim /etc/mysql/mariadb.conf.d/50-server.cnf bind-address = 127.0.0.1 ->변경 bind-address = 0.0.0.0 sudo service mysql restart
반응형