橢圓機(jī)怎么開 橢圓機(jī)怎么開機(jī)使用
2023-11-04
更新時間:2023-11-04 00:10:55作者:未知
要安裝MariaDB,我們首先要設(shè)置MariaDB倉庫。
設(shè)置 MariaDB 倉庫
安裝 MariaDB :
$ sudo apt-get update
$ sudo apt-get install mariadb-server
在安裝中,你會被要求設(shè)置MariaDB的root密碼。
從命令行連接到MariaDB :
linuxtechi@mail:~$ mysql -uroot -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 40
Server version: 10.0.14-MariaDB-1~trusty-log mariadb.org binary distribution
Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
MariaDB 服務(wù)
$ sudo /etc/init.d/mysql stop$ sudo /etc/init.d/mysql start