ubuntu安装Mysql

来源:互联网 发布:怎么在爱淘宝上推广 编辑:程序博客网 时间:2024/05/09 07:09

这个比较简单

1.安装

sudo apt-get install mysql-server mysql-client
装完后会自动打开服务,使用netstat看看是否装上了,如下:
lord@ubuntu:~$ sudo netstat -tap|grep mysql[sudo] password for lord: tcp        0      0 localhost:mysql         *:*                     LISTEN      772/mysqld      lord@ubuntu:~$ 

2.开启服务命令如下:

lord@ubuntu:~$ sudo /etc/init.d/mysql restartRather than invoking init scripts through /etc/init.d, use the service(8)utility, e.g. service mysql restartSince the script you are attempting to invoke has been converted to anUpstart job, you may also use the stop(8) and then start(8) utilities,e.g. stop mysql ; start mysql. The restart(8) utility is also available.mysql stop/waitingmysql start/running, process 2302lord@ubuntu:~$ 

3.连接数据库,进行数据库操作

lord@ubuntu:~$ mysql -h localhost -u root -pEnter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 37Server version: 5.1.54-1ubuntu4 (Ubuntu)Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.This software comes with ABSOLUTELY NO WARRANTY. This is free software,and you are welcome to modify and redistribute it under the GPL v2 licenseType 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>
至此Mysql在ubuntu中安装成功。如有不对的地方请指正。


	
				
		
原创粉丝点击