설치
$ apt update
$ apt install mariadb-server
설치확인 및 제어
$ systemctl status mariadb
$ systemctl start mariadb
$ systemctl stop mariadb
$ systemctl restart mariadb
$ dpkg -l | grep mariadb
접속 (root 계정인 경우)
$ mysql
제거 (깨끗이 지워지지 않으므로 dpkg -l | grep mariadb 명령으로 확인하며 지워야 함)
$ apt purge mariadb-server
$ dpkg -l | grep mariadb
git은 버전 관리를 위해 필요하며, 내부 스토리지가 아닌 git repository 제공 사이트를 이용해 관리하면 어디서든지 사용이 가능해 집니다.
$ git --version
git 설정 확인
$ git config --list
$ git config --list --local (로컬)
$ echo "# dc_app" >> README.md
$ git init
$ git add README.md
$ git commit -m "first commit"
$ git branch -M main
$ git remote add origin https://할당받은주소
$ git push -u origin main