linux下oracle 数据库的启动和关闭
QQ:1156316388 Tel:010-51527259
一、启动
三个命令:
1、sqlplux /nolog
2、connect /as sysdba
3、startup
二、关闭
1、shutdown immediate;
[oracle@zhao ~]$ sqlplus /nolog
SQL*Plus: Release 9.2.0.4.0 - Production on Sun Nov 1 15:08:40 2009
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> connect /as sysdba
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 236000356 bytes
Fixed Size 451684 bytes
Variable Size 201326592 bytes
Database Buffers 33554432 bytes
Redo Buffers 667648 bytes
Database mounted.
Database opened.
SQL>
惊叹号在 SQL> ! 回车可以退出 sql命令行
查看oracle数据库运行启动的进程
SQL> !
[oracle@zhao ~]$ ps -ef | grep oracle
root 4268 4235 0 15:08 pts/0 00:00:00 su - oracle
oracle 4269 4268 0 15:08 pts/0 00:00:00 -bash
oracle 4299 4269 0 15:08 pts/0 00:00:00 sqlplus
oracle 4302 1 0 15:09 ? 00:00:00 ora_pmon_lx92
oracle 4304 1 0 15:09 ? 00:00:00 ora_dbw0_lx92
oracle 4306 1 0 15:09 ? 00:00:00 ora_lgwr_lx92
oracle 4308 1 0 1
相关文档:
eaccelerator.shm_size
The amount of shared memory (in megabytes) that eAccelerator will use.
"0" means OS default. Default value is "0".
eaccelerator.cache_dir
The directory that is used for disk cache. eAccelerator stores precompiled code ......
1.删除文件夹用:rmdir 文件夹名
但是rmdir不能删除非空的文件夹,那如何删除非空文件夹呢:
2.通常情况下,删除文件用:rm 文件名
-d或--directory 直接把欲删除的目录的硬连接数据删成0,删除该目录。
-f或--force 强制删除文件或目录。
-i或--interactive ......
课程简介
RH033 红帽企业Linux基础课程
适合没有使用Linux 或 UNIX 命令行的经验,但想掌握使用和定制红帽 Linux工作站环境所需技能的人员。
RH133 系统管理
适用于想通过学习红帽企业Linux 的系统管理技能,自己可以在现有网络中添加和配置工作站的用户。
这一课程的最后一天为 RH202 红帽认证技师认证操作考试。
RH ......
1. 准备工作:
开发板的ip设置
gzsd> net set ipaddr 192.168.0.11 设置开发板的IP
gzsd> net set serverip 192.169.0.10 设置tftp server的IP
gzsd> net set netmask 255.255.255.0 设置子网掩码
gzsd> net save 保存设置
gzsd> net ping XXX 测试连接状况
安装tftp服务器
windows下
运行光盘工具 ......
在linux系统上同样可以配置串口,使用串口来与其他设备进行通信。
在配置串口前,我们有取得linux系统的root权限,这个很重要。否则无法完成下面步骤。
1.切换到root用户.
[root@localhost ~]#su root
2. 查找有效的串设备.
[root@localhost ~]#cat /proc/devices
Character devices:
1 mem
4 /dev/v ......