启动数据库服务器,系统组件基准文件丢失
发布网友
发布时间:2022-04-13 07:15
我来回答
共2个回答
懂视网
时间:2022-04-13 11:36
启动数据库报错,ORA-18008: cannot find OUTLN schema 问题现象: 数据库版本 Oracle 11g r2 hrdb1startup Oracle 例程已经启动。 Total System Global Area 4392697856 bytes Fixed Size 2233616 bytes Variable Size 1090521840 bytes Database Buffers 32
启动数据库报错,ORA-18008: cannot find OUTLN schema
问题现象:
数据库版本 Oracle 11g r2
hrdb1>startup
Oracle 例程已经启动。
Total System Global Area 4392697856 bytes
Fixed Size 2233616 bytes
Variable Size 1090521840 bytes
Database Buffers 3288334336 bytes
Redo Buffers 11608064 bytes
数据库装载完毕。
ORA-01092: Oracle instance terminated. Disconnection forced
ORA-18008: cannot find OUTLN schema
进程 ID: 5294
会话 ID: 683 序列号: 3
hrdb1>!oerr ora 18008
18008, 00000, "cannot find OUTLN schema"
// *Cause: The database creation script that creates this schema must not
// have been executed.
// *Action: Review the log files to see what happened when the database
// was created.
问题原因:
outlin用户被误删除
解决方法:
按照metalink上的解决办法,先修改replication_dependency_tracking参数,重建数据库outln用户及相关对象即可。
1,启动到mount状态,修改replication_dependency_tracking参数
alter system set replication_dependency_tracking =false scope=spfile;
2,启动数据库至open状态
hrdb1>shutdown immediate
hrdb1>startup
3,执行脚本doptim.bsq,Oracle 10g版本可参考执行附录脚本
@$Oracle_HOME/rdbms/admin/doptim.bsq
此时,用户已创建
hrdb1>select username from dba_users;
USERNAME
------------------------------
OUTLN
4,修改回replication_dependency_tracking参数为true
alter system set replication_dependency_tracking =true scope=spfile;
5,重新启动数据库,系统恢复正常
hrdb1>shutdown abort
Oracle 例程已经关闭。
hrdb1>startup
Oracle 例程已经启动。
Total System Global Area 4392697856 bytes
Fixed Size 2233616 bytes
Variable Size 1090521840 bytes
Database Buffers 3288334336 bytes
Redo Buffers 11608064 bytes
数据库装载完毕。
数据库已经打开。
hrdb1>select username from dba_users;
USERNAME
------------------------------
WJ
OUTLN
SYS
SYSTEM
HR
STRMADMIN
已选择6行。
由于版本是Oracle 11g,直接执行相关脚本即可,oracle 10g版本可以参考《Script to Create User OUTLN in 10.2 [ID 422983.1]》
备注:用于复制的一个参数,第一次碰到,做个记录
REPLICATION_DEPENDENCY_TRACKING enables or disables dependency tracking for read/write operations to the database. Dependency tracking is essential for propagating changes in a replicated environment in parallel.
参考资料:
Unable To Start The Database With OUTLN Schema Dropped ORA-01092& ORA-18008 [ID 855104.1]
Script to Create User OUTLN in 10.2 [ID 422983.1]
热心网友
时间:2022-04-13 08:44
一早起来,发现数据目录下的mysql文件全部消失,一声冷汗,怎么回事!!???被黑了,还是因为前两天重启服务器导致mysql数据丢失???这是怎么回事,上网看看怎么解决,没找到解决方案!!!!看看mysql服务是不是开启的,
[root@pacteralinux mysql]# ps -ef|grep mysql
root 5379 4291 0 13:10 pts/0 00:00:00 grep mysql
[root@pacteralinux mysql]# service mysqld start
Starting MySQL..The server quit without updating PID file (/mnt/resource/mysqldate/pacteralinux.pid).[FAILED]
靠,服务关闭,而且启动不了!看日志:
131126 13:10:57 mysqld_safe Starting mysqld daemon with databases from /mnt/resource/mysqldate
2013-11-26 13:10:58 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2013-11-26 13:10:58 5650 [Note] Plugin 'FEDERATED' is disabled.
/usr/local/mysql/bin/mysqld: Table 'mysql.plugin' doesn't exist
2013-11-26 13:10:58 5650 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
2013-11-26 13:10:58 5650 [Note] InnoDB: The InnoDB memory heap is disabled
2013-11-26 13:10:58 5650 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2013-11-26 13:10:58 5650 [Note] InnoDB: Compressed tables use zlib 1.2.3
2013-11-26 13:10:58 5650 [Note] InnoDB: Not using CPU crc32 instructions
2013-11-26 13:10:58 5650 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2013-11-26 13:10:58 5650 [Note] InnoDB: Completed initialization of buffer pool
2013-11-26 13:10:58 5650 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
2013-11-26 13:10:58 5650 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
2013-11-26 13:10:58 5650 [Note] InnoDB: Database physically writes the file full: wait...
2013-11-26 13:10:58 5650 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
2013-11-26 13:10:58 5650 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
2013-11-26 13:10:58 5650 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
2013-11-26 13:10:58 5650 [Warning] InnoDB: New log files created, LSN=45781
2013-11-26 13:10:58 5650 [Note] InnoDB: Doublewrite buffer not found: creating new
2013-11-26 13:10:58 5650 [Note] InnoDB: Doublewrite buffer created
2013-11-26 13:10:58 5650 [Note] InnoDB: 128 rollback segment(s) are active.
2013-11-26 13:10:59 5650 [Warning] InnoDB: Creating foreign key constraint system tables.
2013-11-26 13:10:59 5650 [Note] InnoDB: Foreign key constraint system tables created
2013-11-26 13:10:59 5650 [Note] InnoDB: Creating tablespace and datafile system tables.
2013-11-26 13:10:59 5650 [Note] InnoDB: Tablespace and datafile system tables created.
2013-11-26 13:10:59 5650 [Note] InnoDB: Waiting for purge to start
2013-11-26 13:10:59 5650 [Note] InnoDB: 5.6.14 started; log sequence number 0
2013-11-26 13:10:59 5650 [Note] Server hostname (bind-address): '*'; port: 3306
2013-11-26 13:10:59 5650 [Note] IPv6 is available.
2013-11-26 13:10:59 5650 [Note] - '::' resolves to '::';
2013-11-26 13:10:59 5650 [Note] Server socket created on IP: '::'.
2013-11-26 13:10:59 5650 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.user' doesn't exist
131126 13:10:59 mysqld_safe mysqld from pid file /mnt/resource/mysqldate/pacteralinux.pid ended
[ERROR] Fatal error: Can't open and lock privilege tables: Table 'mysql.user' doesn't exist:
表初始化没做好;不管,下意识的删除日志看下能不能重启
1234567891011 [root@pacteralinux mysqldate]# ll
total 110640
-rw-rw----. 1 mysql mysql 56 Nov 25 17:17 auto.cnf
-rw-rw----. 1 mysql mysql 12582912 Nov 26 13:15 ibdata1
-rw-rw----. 1 mysql mysql 50331648 Nov 26 13:15 ib_logfile0
-rw-rw----. 1 mysql mysql 50331648 Nov 26 13:10 ib_logfile1
-rw-rw----. 1 mysql root 39056 Nov 26 13:15 pacteralinux.err
[root@pacteralinux mysqldate]# rm ib*
rm: remove regular file `ibdata1'? y
rm: remove regular file `ib_logfile0'? y
rm: remove regular file `ib_logfile1'? y
不行,网上看看能不能恢复数据,无解决方案!!
幸好这时一个mysql从服务器(我做了一个主从mysql热备份)!!!没办法,数据恢复不了就重新在复制一份吧!
上述步骤后还是不能启动数据
试试重新初始化:
[root@pacteralinux mysqldate]# /usr/local/mysql/scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql/data/ --datadir=/mnt/resource/mysqldate/
FATAL ERROR: Could not find ./bin/my_print_defaults
If you compiled from source, you need to run 'make install' to
copy the software into the correct location ready for operation.
If you are using a binary release, you must either be at the top
level of the extracted archive, or pass the --basedir option
pointing to that location.
[root@pacteralinux mysqldate]# cd /usr/local/mysql/bin/
[root@pacteralinux mysql]# /usr/local/mysql/scripts/mysql_install_db --user=mysql --no-defaults
Installing MySQL system tables...2013-11-26 13:20:42 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2013-11-26 13:20:42 6036 [Note] InnoDB: The InnoDB memory heap is disabled
2013-11-26 13:20:42 6036 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2013-11-26 13:20:42 6036 [Note] InnoDB: Compressed tables use zlib 1.2.3
2013-11-26 13:20:42 6036 [Note] InnoDB: Not using CPU crc32 instructions
2013-11-26 13:20:42 6036 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2013-11-26 13:20:42 6036 [Note] InnoDB: Completed initialization of buffer pool
2013-11-26 13:20:42 6036 [Note] InnoDB: Highest supported file format is Barracuda.
2013-11-26 13:20:42 6036 [Note] InnoDB: 128 rollback segment(s) are active.
2013-11-26 13:20:42 6036 [Note] InnoDB: Waiting for purge to start
2013-11-26 13:20:42 6036 [Note] InnoDB: 5.6.14 started; log sequence number 1600607
2013-11-26 13:20:42 6036 [Warning] InnoDB: Cannot open table mysql/innodb_table_stats from the internal data dictionary of InnoDB though the .frm file for the table exists. See http://dev.mysql.com/doc/refman/5.6/en/innodb-troubleshooting.html for how you can resolve the problem.
ERROR: 1146 Table 'mysql.innodb_table_stats' doesn't exist
2013-11-26 13:20:42 6036 [ERROR] Aborting
2013-11-26 13:20:42 6036 [Note] Binlog end
2013-11-26 13:20:42 6036 [Note] InnoDB: FTS optimize thread exiting.
2013-11-26 13:20:42 6036 [Note] InnoDB: Starting shutdown...
2013-11-26 13:20:44 6036 [Note] InnoDB: Shutdown completed; log sequence number 1600617
2013-11-26 13:20:44 6036 [Note] ./bin/mysqld: Shutdown complete
初始化不了,,删除之前初始化的文件试试
[root@pacteralinux data]# ll
total 12
drwx------. 2 mysql mysql 4096 Sep 25 12:27 mysql
drwx------. 2 mysql mysql 4096 Sep 25 12:27 performance_schema
drwxr-xr-x. 2 mysql mysql 4096 Sep 25 10:28 test
[root@pacteralinux data]# cd ..
[root@pacteralinux mysql]# rm -rf data/追问看上去很专业的样子,就是没看懂