- 浏览: 844833 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (379)
- struts (5)
- hibernate (16)
- spring (16)
- ssh (20)
- MySQL (16)
- 数据库脚本 (2)
- DownLoad (1)
- GAE (5)
- Java (103)
- LoadRunner (2)
- VF (1)
- 学习资料 (24)
- 软件使用 (21)
- 通信类 (4)
- 生活 (3)
- J2ME (1)
- 心理学 (1)
- Linux (26)
- Android (3)
- Oracle (1)
- 面向对象概念&面试准备 (11)
- ExtJs (2)
- Google Map (1)
- Flex (47)
- 算法研究 (1)
- share (20)
- python (1)
- MongoDB (7)
- centos6 (13)
- C++ (8)
- DB2 (3)
- C# (1)
- 代码片段 (24)
- Lucene (2)
- php (1)
- NodeJS (1)
- Express (1)
最新评论
-
shua1991:
已阅,我表示同意。
Eclipse统计代码行数 -
nakedou:
写的不错,挺详细的
在CentOS中使用 yum 安装MongoDB及服务器端配置 -
sjp524617477:
好方法
Eclipse统计代码行数 -
simpletrc:
<script>ale ...
Java写到.txt文件,如何实现换行 -
csdn_zuoqiang:
Apache Ftp Server,目前是1.0.4,非常好的 ...
Apache FtpServer在64位系统下服务不能启动解决方法
[root@www ~]# yum -y install mysql-server [root@www ~]# /etc/rc.d/init.d/mysqld start Initializing MySQL database: Installing MySQL system tables... OK Filling help tables... OK To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! To do so, start the server, then issue the following commands: /usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h www.server.world password 'new-password' Alternatively you can run: /usr/bin/mysql_secure_installation which will also give you the option of removing the test databases and anonymous user created by default. This is strongly recommended for production servers. See the manual for more instructions. You can start the MySQL daemon with: cd /usr ; /usr/bin/mysqld_safe & You can test the MySQL daemon with mysql-test-run.pl cd /usr/mysql-test ; perl mysql-test-run.pl Please report any problems with the /usr/bin/mysqlbug script! Starting mysqld: [ OK ] [root@www ~]# chkconfig mysqld on [root@www ~]# mysql -u root # connect to MySQL Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.1.52 Source distribution 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 license Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. # show user info mysql> select user,host,password from mysql.user; # set root password mysql> set password for root@localhost=password('password'); Query OK, 0 rows affected (0.00 sec) # set root password mysql> set password for root@'127.0.0.1'=password('password'); Query OK, 0 rows affected (0.00 sec) # set root password mysql> set password for root@'www.server.world'=password('password'); Query OK, 0 rows affected (0.00 sec) # delete anonymous user mysql> delete from mysql.user where user=''; Query OK, 2 rows affected (0.00 sec) mysql> select user,host,password from mysql.user; mysql> exit # quit Bye [root@www ~]# mysql -u root -p # connect with root Enter password:# MySQL root password Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.1.52 Source distribution 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 license Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> exit Bye
发表评论
-
mysql、sqlserver、oracle分页,java分页统一接口实现
2012-03-13 17:56 0定义: pageStart 起始页,pageEnd 终止页, ... -
DB2 9.7 64bit 在 CentOS5.4 64bit 上的安装
2011-09-02 17:57 3447都是安装的时候记的笔记了,应该能看懂。 1. downloa ... -
CentOS 5.5 防火墙开启、关闭以及开放指定端口
2011-09-01 10:34 1171服务器使用的是CentOS 5.5,部署好Tomcat之后却发 ... -
CentOS6下安装flashplayer
2011-08-25 14:34 1057将解压后的libflashplayer.so文件复制到/usr ... -
如何删除 CentOS 6 更新后产生的多余的内核
2011-08-25 13:30 2465在CentOS 6更新后,不可避免的会在启动选项中产生多个 ... -
CentOS6挂载NTFS分区问题
2011-08-25 13:24 1841[zuoqiang@centos ~]$ su Pass ... -
CentOS6 下Eclipse C++ 开发环境配置
2011-08-24 23:46 10564在CentOS下安装Eclipse C++开发环境 ... -
centos6 install jdk-6u27-linux-x64.bin
2011-08-24 23:43 7693#java -version如有openjdk的东东要删除yu ... -
在ubuntu和centos下面安装fcitx
2011-08-22 16:35 4028为了改变启动顺序,想 ... -
vim配置文件(带详细中文注释)
2011-08-22 16:33 7085" 不要使用vi的键 ... -
7个Linux chkconfig命令实例
2011-08-22 16:32 904http://www.centos.bz/2011/07/7- ... -
[CentOS]Yum命令详解
2011-08-22 10:39 4055yum是什么 yum = Yellow dog ... -
[CentOS]压缩+解压+打包命令大全
2011-08-22 10:25 1423.tar 解包:tar xvf FileName.tar ... -
MYSQL性能优化【总结】
2011-08-16 16:43 13441、分库分表 很明显,一个主表(也就是很重要的表,例 ... -
Installing MongoDB 1.8.1 on Ubuntu 10.10 & 11.04 and running with an ‘init’ scri
2011-07-20 14:57 1218Installing MongoDB 1.8.1, in my ... -
mysql中创建外键的条件
2011-03-16 10:52 24661、外键的引用类型必须一致,如果主键是int外键是char则不 ... -
Web服务器性能/压力测试工具http_load、webbench、ab、Siege使用教程
2010-09-14 14:58 1223一、http_load 程序非常 ... -
MySQL整理
2010-09-08 22:59 15391. 备份 mysqldump -u roo ... -
SQL FOREIGN KEY 约束
2010-09-03 13:55 1272一个表中的 FOREIGN KEY 指向另一个表中的 PRIM ... -
MySQL DBA 职位要求
2010-08-12 14:48 2098职位描述 <!-- Job Desc Page ...
相关推荐
通过执行相应的命令,如`sudo apt-get install mysql-server` 或 `sudo yum install mysql-server`,可以自动下载并安装MySQL服务器及其依赖。 - **手动编译安装**:对于较旧的系统或特定需求,可以从MySQL官方网站...
dpkg: error processing package mysql-community-server (--install): dependency problems - leaving unconfigured Processing triggers for man-db (2.6.7.1-1ubuntu1) ... Processing triggers for ureadahead ...
yum -y install mysql-server 安装完成后,需要配置 MySQL 服务器。使用以下命令编辑 my.cnf 文件: vi my.cnf 在 my.cnf 文件中,需要添加以下内容: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/...
sudo mysql.server start 2.4 输入命令: ./mysql 回车进入到 Mysql 编辑环境 2.5 刷新 Mysql 系统权限: FLUSH PRIVILEGES; 2.6 重置密码: ALTER USER 'root'@'localhost' IDENTIFIED BY '新的密码'; 三、...
- `sudo apt-get install mysql-server` (Ubuntu/Debian) - `sudo yum install mysql-server` (CentOS/RHEL) 四、初始化与配置 1. 首次安装后,需要启动MySQL服务并初始化数据库。在命令行输入: - Windows:`...
sudo apt-get install mysql-server 安装完成后,我们需要配置 MySQL 服务器以便外部访问数据库。我们可以使用以下命令来编辑 MySQL 配置文件: sudo vim /etc/mysql/my.cnf 在配置文件中,我们需要注意一处地方...
在本文中,它们分别是`MySQL-server-4.0.16-0.i386.rpm`和`MySQL-client-4.0.16-0.i386.rpm`。确保下载的是与你的Linux发行版相匹配的版本。 **二、安装MySQL** 1. **安装服务器端** 安装MySQL服务器端,你需要...
### 使用Embulk实现SQL Server至MySQL的数据迁移 #### 一、背景介绍 随着业务发展和技术迭代,企业常常需要在不同的数据库之间进行数据迁移。本文主要介绍如何使用Embulk这一工具来实现从SQL Server到MySQL的数据...
在IT行业中,数据库的多样性是常见的现象,不同的项目可能需要使用不同的数据库系统,例如SQL Server和MySQL。在某些情况下,我们需要在PHP环境中同时处理这两种数据库,进行数据迁移、同步或其他操作。本文将深入...
[root@stonex ~]# yum -y install mysql-server 这将安装 MySQL 服务器和相关的依赖项。安装结果将显示安装的软件包,包括 mysql-server、mysql 和 perl-DBD-MySQL 等。 设置开机启动 安装完成后,我们需要设置 ...
sudo apt-get install mysql-server # For CentOS/RHEL sudo yum install mysql-server ``` 接着,创建一个用于备份的Shell脚本。打开终端并使用`vim`或你喜欢的文本编辑器创建一个新的文件,例如`mysqlbak.sh`。...
如果选择命令行方式,你需要先更新系统软件库,输入`zypper update`,接着使用`zypper install mysql-server mysql-client`命令安装MySQL服务器和客户端。这里`mysql-server`是数据库服务端,而`mysql-client`则包含...
sudo apt install mysql-server ``` 安装过程中,系统会提示设置MySQL的root用户的密码。请确保选择一个安全且易于记忆的密码。 安装完成后,你需要启动MySQL服务并检查其状态: ```shell sudo systemctl start ...
5. 安装MySQL 5.7:`sudo apt-get install mysql-server` 6. 配置MySQL:`sudo mysql_secure_installation` - 设置root密码 - 清理匿名用户 - 禁止root远程登录 - 删除测试数据库 - 重新加载权限表 7. 开启...
sudo apt-get install mysql-server ``` 在安装过程中,系统会提示你设置root用户的密码。请确保选择一个安全且易于记忆的密码。 如果使用的是RHEL、CentOS或Fedora,你需要先启用MySQL的Yum存储库: ```bash ...
例如,`sudo apt-get install mysql-server` 或 `sudo yum install mysql-server`。 - **macOS**: 可以使用Homebrew,输入`brew install mysql`。 4. **配置MySQL**:安装完成后,需要初始化数据库并设置root用户...
sudo apt-get install mysql-server ``` 在CentOS或Fedora中,用的是yum命令: ```bash sudo yum install mysql-server ``` 安装过程中,系统可能会提示你设置root用户的密码。 二、启动与停止MySQL服务 安装...
1.3. Overview of the MySQL Database Management System 1.3.1. What is MySQL? 1.3.2. History of MySQL 1.3.3. The Main Features of MySQL 1.4. MySQL Development History 1.5. What Is New in MySQL 5.5 1.5.1...
对于Linux用户,MySQL5.1的安装通常通过包管理器进行,例如在Ubuntu中可以使用`sudo apt-get install mysql-server`命令,而在CentOS或RHEL中则是`sudo yum install mysql-server`。安装过程中,系统也会提示你设置...