使用yum
完成Oracle数据库依赖包、系统参数、用户的安装。
切换oracle用户直接安装就行了。
下面是yum配置方法:
如果可以联网,资料库列举如下
Oracle
Linux
5
#
cd
/etc/yum.repos.d
输入 root的 密码。1. 安装MySQL
使用管理员权限运行apt-get获取最新的MySQL及Python编程接口(之后用于数据库编程):
$ sudo apt-get install mysql-server python-mysqldb
安装过程中需要输入root管理员的密码,该密码之后用于访问数据库系统。
2. 测试MySQL
通过以下命令运行MySQL的命令提示系统,并输入在安装过程中设置的密码:
mysql -u root -pEnter password:Welcome to the MySQL monitor. Commands end with or \g.Your MySQL connection id is 47Server version: 5.5.41-0+wheezy1 (Debian)Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.Type 'help' or '\h' for help. Type '\c' to clear the current input statement.
查看当前已建立的数据库:
mysql>SHOW DATABASES+--------------------+| Database |+--------------------+| information_schema || mysql || performance_schema |+--------------------+
rows in set (0.00 sec)
3. 创建一个新的数据库和表单
以上数据库都是系统建立的数据库,要想开始插入数据,首先需要建立新的数据库和表单。这里假设要实现一个CPU温度记录的功能,存放在名为"sensordb"的数据库中。使用以下命令建立数据库:
mysql>CREATE DATABASE sensordbQuery OK, 1 row affected (0.00 sec)
查看数据库是否建立成功:
mysql>SHOW databases+--------------------+| Database |+--------------------+| information_schema || mysql || performance_schema || sensordb |+--------------------+
rows in set (0.01 sec)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)