Ubuntu系統下的Mysql安裝與使用,ubuntumysql
摘要
在本篇博文中,筆者將從基礎出發,介紹Mysql在Linux環境下的安裝和基本使用命令,僅適用於Mysql初學者,大牛請繞道……
安裝Mysql資料庫
這裡介紹最最簡單的安裝方式,至於編譯安裝,可以下載安裝包, ./configure 產生Makefile,然後 make clean, make , make test, make install 我想這些命令應該很基本了吧,這裡不再敖述。
1. 安裝命令
king@king-desktop:~$ sudo apt-get install mysql-server mysql-client
2. 查看資料庫版本,這裡密碼為“11”
king@king-desktop:~$ sudo mysqladmin -u root -p versionEnter password: mysqladmin Ver 8.42 Distrib 5.1.70, for debian-linux-gnu on i486Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
3. 查看Mysql服務狀態,啟動或者關閉Mysql服務
king@king-desktop:~$ service mysql statusmysql start/running, process 899king@king-desktop:~$ sudo /etc/init.d/mysql start|stop|restart
4. 登陸資料庫,並退出操作
命令裡的 -u 指的是使用者名稱, 這裡指的是 root, -p 後接密碼, 這裡指安裝資料庫時候設定的密碼,筆者的為11
king@king-desktop:~$ sudo mysql -uroot -p11
5. 資料庫內的基本操作
// 顯示資料庫mysql> show databases;+--------------------+| Database |+--------------------+| information_schema || jxc || mysql |+--------------------+3 rows in set (0.08 sec)// 使用某個資料庫mysql> use mysqlReading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changed// 建立資料庫mysql> create database thinkphp;Query OK, 1 row affected (0.00 sec)// 刪除資料庫mysql> drop database thinkphp;Query OK, 0 rows affected (0.07 sec)// 顯示資料庫中的某張表mysql> show tables;// 顯示某個表的結構mysql> describe slow_log;// 選擇顯示的表內容mysql> select * from slow_log;Empty set (0.00 sec)// 刪除表mysql> drop table slow_log;// 匯入資料庫mysql> source /var/www/webPage.sql;或者命令: ~$ sudo mysql –uroot –p11 thinktest < WebPage.sql
mysql 表結構AUD操作
添加表欄位 alter table tablename add elemName varchar(10) not null;修改某個表欄位類型 alter table tablename change elemName elemNewName varchar(10) null; alter table tablename modify elemName varchar(10) null;刪除某個欄位 alter table tablename drop elemName;向資料表中插入資料 insert into tablename (elem1,elem2,...) values (A,B,...);刪除資料表中資料 delete from tablename where id>1 order by time limit 1;更新資料表中資料 UPDATE tablename SET elem1=1, elem2=2 WHERE id=1;
ubuntu下mysql-server安裝問題
自己編譯吧,需要的庫太多了。最好不要用RPM的,可以到老闆本的ubuntu的源裡面自己尋找DEB的包,但是可能滿足不了依賴。
如果是可能,建議用5.0以上版本,4.0的資料庫可以用工具轉換成5.0的格式。
怎在linux系統下安裝一個mysql資料庫我的系統是ubuntu 10給個詳細的操作流程
上面的回答正確。就是一個應該是mysql-client-5.1也可以使用,新立得來做。
系統| 系統管理 |新立得軟體包管理器
開啟之後,在新立得中搜尋Mysql就可以找到相關的軟體包了。
也可以在編輯菜單中,選擇 使用任務分組管理軟體包。
然後選擇Lamp server就可以了!接著跟著操作就行了,這個叫做一鍵安裝LAMP。
LAMP你懂的吧!