Ubuntu系統下的Mysql安裝與使用,ubuntumysql

來源:互聯網
上載者:User

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你懂的吧!
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.