ホームページ データベース mysql チュートリアル oracle收购Mysql后,Mysql的安装配置方法_MySQL

oracle收购Mysql后,Mysql的安装配置方法_MySQL

Jun 01, 2016 pm 01:28 PM
mysql oracle

bitsCN.com

oracle收购Mysql后,Mysql的安装配置方法

 

现在在oracle官网上下载的mysql有以下几个rpm包

 

MySQL-client-advanced

 

MySQL-devel-advanced

 

MySQL-embedded-advanced-5.6.14-1.rhel5.x86_64.rpm

 

MySQL-server-advanced-5.6.14-1.rhel5.x86_64.rpm

 

MySQL-shared-advanced-5.6.14-1.rhel5.x86_64.rpm

 

MySQL-shared-compat-advanced-5.6.14-1.rhel5.x86_64.rpm

 

MySQL-test-advanced-5.6.14-1.rhel5.x86_64.rpm

 

1、先把系统里安装的所有mysql找出来

 

#rpm -qa | grep -i mysql 运行此命令后,显示所有列表:

 

mysqlclient10-3.23.58-4.RHEL4.1

 

mysqlclient10-devel-3.23.58-4.RHEL4.1

 

2、将列表一一强制删除:

 

#rpm -ev --nodeps mysqlclient10-3.23.58-4.RHEL4.1

 

#rpm -ev --nodeps mysqlclient10-devel-3.23.58-4.RHEL4.1

 

3、将老版本的几个文件手工删除:

 

#rm -f /etc/my.cnf

 

#rm -rf /var/lib/mysql

 

#rm -rf/var/share/mysql

 

# rm -rf/usr/bin/mysql*

 

 4.安装下载的版本的mysql,如上,

 

[root@oracle11 ~]#rpm -ivh MySQL-server-advanced-5.6.14-1.el6.x86_64.rpm

 

Preparing...               ########################################### [100%]

 

   1:MySQL-server-advanced  ###########################################[100%]

 

5.安装client

 

[root@oracle11 ~]#rpm -ivh MySQL-client-advanced-5.6.14-1.el6.x86_64.rpm

 

Preparing...               ########################################### [100%]

 

   1:MySQL-client-advanced  ###########################################[100%]

 

说明:不安装mysql-client是不能使用mysql工具登陆到mysql数据库

 

6.oracle收购Mysql后,新版的mysql刚安装完mysql后不能直接输入mysql登录数据库,而是设置了默认free password密码,默认密码放在了/root/.mysql_secret文件中,登陆后需要修改密码

 

安装完成后有这么一段话,

 

A RANDOMPASSWORD HAS BEEN SET FOR THE MySQL root USER !

 

You willfind that password in '/root/.mysql_secret'.

 

 

 

You must change thatpassword on your first connect,

 

no other statementbut 'SET PASSWORD' will beaccepted.

 

See the manual forthe semantics of the 'password expired' flag.

 

 

 

Also, the accountfor the anonymous user has been removed.

 

 

 

In addition, you canrun:

 

 

 

  /usr/bin/mysql_secure_installation

 

 

 

which will also giveyou the option of removing the test database.

 

This is stronglyrecommended for production servers.

 

 

 

See the manual formore instructions.

 

 

 

Please report anyproblems with the /usr/bin/mysqlbug script!

 

 

 

The latestinformation about MySQL is available on the web at

 

 

 

  http://www.mysql.com

 

 

 

Support MySQL bybuying support/licenses at http://shop.mysql.com

 

 

 

New default configfile was created as /usr/my.cnf and

 

will be used bydefault by the server when you start it.

 

You may edit thisfile to change server settings

 

7.修改密码

 

(1)查看文件寻找密码

 

[root@oracle11 ~]#vi /root/.mysql_secret

 

 

 

# The randompassword set for the root user at Mon Oct 28 11:09:39 2013 (local time): 3eriwUfI

 

(2)登陆Mysql

 

[root@oracle11 ~]#mysql -u root -p

 

Enter password:

 

Welcome to the MySQLmonitor.  Commands end with ; or /g.

 

Your MySQLconnection id is 3

 

Server version:5.6.14-enterprise-commercial-advanced

 

 

 

Copyright (c) 2000,2013, Oracle and/or its affiliates. All rights reserved.

 

 

 

Oracle is aregistered trademark of Oracle Corporation and/or its

 

affiliates. Othernames may be trademarks of their respective

 

owners.

 

 

 

Type 'help;' or '/h'for help. Type '/c' to clear the current input statement.

 

 

 

mysql>

 

(3)修改密码

 

mysql> setpassword for 'root'@'localhost' = password ('root');

 

Query OK, 0 rowsaffected (0.05 sec)

 

当然也可以使用脚本 /usr/bin/mysql_secure_installation进行交互式的修改mysql的root密码,如下:

 

[root@oracle11 ~]# /usr/bin/mysql_secure_installation

 

 

 

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL

      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

 

In order to log into MySQL to secure it, we'll need the current

password for the root user.  If you've just installed MySQL, and

you haven't set the root password yet, the password will be blank,

so you should just press enter here.

 

Enter current password for root (enter for none): 

OK, successfully used password, moving on...

 

Setting the root password ensures that nobody can log into the MySQL

root user without the proper authorisation.

 

Set root password? [Y/n] y

New password: 

Re-enter new password: 

Password updated successfully!

Reloading privilege tables..

 ... Success!

 

 

By default, a MySQL installation has an anonymous user, allowing anyone

to log into MySQL without having to have a user account created for

them.  This is intended only for testing, and to make the installation

go a bit smoother.  You should remove them before moving into a

production environment.

 

Remove anonymous users? [Y/n] n

 ... skipping.

 

Normally, root should only be allowed to connect from 'localhost'.  This

ensures that someone cannot guess at the root password from the network.

 

Disallow root login remotely? [Y/n] n

 ... skipping.

 

By default, MySQL comes with a database named 'test' that anyone can

access.  This is also intended only for testing, and should be removed

before moving into a production environment.

 

Remove test database and access to it? [Y/n] n

 ... skipping.

 

Reloading the privilege tables will ensure that all changes made so far

will take effect immediately.

 

Reload privilege tables now? [Y/n] n

 ... skipping.

 

 

 

 

All done!  If you've completed all of the above steps, your MySQL

installation should now be secure.

 

Thanks for using MySQL!

 

 

Cleaning up...

 

 

bitsCN.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。

ホットAIツール

Undresser.AI Undress

Undresser.AI Undress

リアルなヌード写真を作成する AI 搭載アプリ

AI Clothes Remover

AI Clothes Remover

写真から衣服を削除するオンライン AI ツール。

Undress AI Tool

Undress AI Tool

脱衣画像を無料で

Clothoff.io

Clothoff.io

AI衣類リムーバー

AI Hentai Generator

AI Hentai Generator

AIヘンタイを無料で生成します。

ホットツール

メモ帳++7.3.1

メモ帳++7.3.1

使いやすく無料のコードエディター

SublimeText3 中国語版

SublimeText3 中国語版

中国語版、とても使いやすい

ゼンドスタジオ 13.0.1

ゼンドスタジオ 13.0.1

強力な PHP 統合開発環境

ドリームウィーバー CS6

ドリームウィーバー CS6

ビジュアル Web 開発ツール

SublimeText3 Mac版

SublimeText3 Mac版

神レベルのコード編集ソフト(SublimeText3)

PHP で MySQL クエリのパフォーマンスを最適化するにはどうすればよいですか? PHP で MySQL クエリのパフォーマンスを最適化するにはどうすればよいですか? Jun 03, 2024 pm 08:11 PM

MySQL クエリのパフォーマンスは、検索時間を線形の複雑さから対数の複雑さまで短縮するインデックスを構築することで最適化できます。 PreparedStatement を使用して SQL インジェクションを防止し、クエリのパフォーマンスを向上させます。クエリ結果を制限し、サーバーによって処理されるデータ量を削減します。適切な結合タイプの使用、インデックスの作成、サブクエリの使用の検討など、結合クエリを最適化します。クエリを分析してボトルネックを特定し、キャッシュを使用してデータベースの負荷を軽減し、オーバーヘッドを最小限に抑えます。

PHP で MySQL のバックアップと復元を使用するにはどうすればよいですか? PHP で MySQL のバックアップと復元を使用するにはどうすればよいですか? Jun 03, 2024 pm 12:19 PM

PHP で MySQL データベースをバックアップおよび復元するには、次の手順を実行します。 データベースをバックアップします。 mysqldump コマンドを使用して、データベースを SQL ファイルにダンプします。データベースの復元: mysql コマンドを使用して、SQL ファイルからデータベースを復元します。

PHP を使用して MySQL テーブルにデータを挿入するにはどうすればよいですか? PHP を使用して MySQL テーブルにデータを挿入するにはどうすればよいですか? Jun 02, 2024 pm 02:26 PM

MySQLテーブルにデータを挿入するにはどうすればよいですか?データベースに接続する: mysqli を使用してデータベースへの接続を確立します。 SQL クエリを準備します。挿入する列と値を指定する INSERT ステートメントを作成します。クエリの実行: query() メソッドを使用して挿入クエリを実行します。成功すると、確認メッセージが出力されます。

Oracle にはどれくらいのメモリが必要ですか? Oracle にはどれくらいのメモリが必要ですか? May 10, 2024 am 04:12 AM

Oracle が必要とするメモリーの量は、データベースのサイズ、アクティビティー・レベル、および必要なパフォーマンス・レベル (データ・バッファー、索引バッファーの保管、SQL ステートメントの実行、およびデータ・ディクショナリー・キャッシュの管理) によって異なります。正確な量は、データベースのサイズ、アクティビティ レベル、および必要なパフォーマンス レベルによって影響されます。ベスト プラクティスには、適切な SGA サイズの設定、SGA コンポーネントのサイズ設定、AMM の使用、メモリ使用量の監視などが含まれます。

Oracle データベース サーバーのハードウェア構成要件 Oracle データベース サーバーのハードウェア構成要件 May 10, 2024 am 04:00 AM

Oracle データベース サーバーのハードウェア構成要件: プロセッサ: マルチコア、少なくとも 2.5 GHz のメイン周波数 大規模なデータベースの場合は、32 コア以上が推奨されます。メモリ: 小規模データベースの場合は少なくとも 8 GB、中規模のデータベースの場合は 16 ~ 64 GB、大規模なデータベースまたは重いワークロードの場合は最大 512 GB 以上。ストレージ: SSD または NVMe ディスク、冗長性とパフォーマンスのための RAID アレイ。ネットワーク: 高速ネットワーク (10GbE 以上)、専用ネットワーク カード、低遅延ネットワーク。その他: 安定した電源、冗長コンポーネント、互換性のあるオペレーティング システムとソフトウェア、放熱と冷却システム。

MySQL 8.4 で mysql_native_password がロードされていないエラーを修正する方法 MySQL 8.4 で mysql_native_password がロードされていないエラーを修正する方法 Dec 09, 2024 am 11:42 AM

MySQL 8.4 (2024 年時点の最新の LTS リリース) で導入された主な変更の 1 つは、「MySQL Native Password」プラグインがデフォルトで有効ではなくなったことです。さらに、MySQL 9.0 ではこのプラグインが完全に削除されています。 この変更は PHP および他のアプリに影響します

PHP で MySQL ストアド プロシージャを使用するにはどうすればよいですか? PHP で MySQL ストアド プロシージャを使用するにはどうすればよいですか? Jun 02, 2024 pm 02:13 PM

PHP で MySQL ストアド プロシージャを使用するには: PDO または MySQLi 拡張機能を使用して、MySQL データベースに接続します。ストアド プロシージャを呼び出すステートメントを準備します。ストアド プロシージャを実行します。結果セットを処理します (ストアド プロシージャが結果を返す場合)。データベース接続を閉じます。

Oracle データベースを使用するために必要なメモリの量 Oracle データベースを使用するために必要なメモリの量 May 10, 2024 am 03:42 AM

Oracle データベースに必要なメモリの量は、データベースのサイズ、ワークロードの種類、同時ユーザーの数によって異なります。一般的な推奨事項: 小規模データベース: 16 ~ 32 GB、中規模データベース: 32 ~ 64 GB、大規模データベース: 64 GB 以上。考慮すべきその他の要素には、データベースのバージョン、メモリ最適化オプション、仮想化、ベスト プラクティス (メモリ使用量の監視、割り当ての調整) などがあります。

See all articles