Opatch报错,OUI-67035,OUI-67073…

来源:互联网 发布:宝宝生长曲线图软件 编辑:程序博客网 时间:2024/06/05 08:30

bash-3.00$ opatch apply
Oracle Interim Patch Installer version 11.2.0.3.5
Copyright (c) 2013, Oracle Corporation.  Allrights reserved.


OracleHome      : /u01/dev/db/tech_st/11.2.0
Central Inventory : /u01/app/oraInventory
  from          : /u01/dev/db/tech_st/11.2.0/oraInst.loc
OPatchversion    :11.2.0.3.5
OUIversion      : 11.2.0.3.0
Log file location :/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_17_15_34/apply2014-05-06_17-15-34PM_1.log

Applying interim patch '18544852' to OH'/u01/dev/db/tech_st/11.2.0'
Verifying environment and performing prerequisite checks...
[ Error during Oracle Home discovery Phase]. Detail: OPatch failed:ApplySession failed to prepare the system. oracle/cluster/install/InstallException
Log file location:/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_17_15_34/apply2014-05-06_17-15-34PM_1.log

Recommended actions: Please make sure no other OPatch or OUIprocesses is running. Try to run $ORACLE_HOME/oui/bin/runInstsaller.

OPatch failed with error code 20

日志显示:

May 6, 2014 5:15:41PM]    Size of directory "/u01/dev/db/tech_st/11.2.0/.patch_storage" aftercleanup is 98368496 bytes.
[May 6, 2014 5:15:41PM]    UtilSession: Backup area for restore has been cleaned up. For acomplete list of files/directories
                            deleted, Please refer log file.
[May 6, 2014 5:15:41PM]    [ Error during Oracle Home discovery phase ]Detail:                             OUI-67073:OPatch failed: ApplySession failed to prepare the system.oracle/cluster/install/InstallException
[May 6, 2014 5:15:41PM]    OUI-67035:System is intact, OPatch will not restore thesystem
[May 6, 2014 5:15:41PM]    Finishing ApplySession at Tue May 06 17:15:41 CST 2014
[May 6, 2014 5:15:41PM]    Total time spent waiting for user-input is 0seconds.  Finish at Tue May 06 17:15:41 CST2014
[May 6, 2014 5:15:41PM]    Log file location:/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_17_15_34/apply2014-05-06_17-15-34PM_1.log
[May 6, 2014 5:15:41PM]    Stack Description: java.lang.RuntimeException: ApplySession failedto prepare the system.oracle/cluster/install/InstallException
[May 6, 2014 5:15:41PM]    StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgClusterwareInfo.createClusterwareInfo(OiipgClusterwareInfo.java:155)
[May 6, 2014 5:15:41PM]    StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgClusterwareInfo.getClusterwareInfo(OiipgClusterwareInfo.java:180)
[May 6, 2014 5:15:41PM]    StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgDetectCluster.(OiipgDetectCluster.java:131)
[May 6, 2014 5:15:41PM]    StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgDetectCluster.getDetectCluster(OiipgDetectCluster.java:146)
[May 6, 2014 5:15:41PM]    StackTrace: oracle.opatch.Rac.getLocalNode(Rac.java:1789)
[May 6, 2014 5:15:41PM]    StackTrace: oracle.opatch.Rac.getInstance(Rac.java:1236)
[May 6, 2014 5:15:41PM]    StackTrace:oracle.opatch.ApplySession.processLocal(ApplySession.java:3758)
[May 6, 2014 5:15:41PM]    StackTrace:oracle.opatch.ApplySession.process(ApplySession.java:5939)
[May 6, 2014 5:15:41PM]    StackTrace:oracle.opatch.OPatchSession.main(OPatchSession.java:2063)
[May 6, 2014 5:15:41PM]    StackTrace: oracle.opatch.OPatch.main(OPatch.java:613)
bash-3.00$
bash-3.00$

--查找资料,原因如下:

Cause
Opatch is trying to get local and remote node but fails and throwsexception.

The inventory.xml file (in /ContentsXML) has an inconsistentnodelist.

 

--发现节点信息不对,更新inventory.xml节点信息


bash-3.00$ runInstaller -updateNodeList -local -silentCLUSTER_NODES=uat1,uat2 ORACLE_HOME=/u01/dev/db/tech_st/11.2.0LOCAL_NODE=uat1
You do not have sufficient permissions to access the inventory'/u01/app/oraInventory/oraInstaller.properties'. Installationcannot continue. It is required that the primary group of theinstall user is same as the inventory owner group. Make sure thatthe install user is part of the inventory owner group and restartthe installer.: Permission denied
bash-3.00$ runInstaller -updateNodeList -local -silentCLUSTER_NODES=uat1,uat2 ORACLE_HOME=/u01/dev/db/tech_st/11.2.0LOCAL_NODE=uat1
You do not have sufficient permissions to access the inventory'/u01/app/oraInventory/Contents'. Installation cannot continue. Itis required that the primary group of the install user is same asthe inventory owner group. Make sure that the install user is partof the inventory owner group and restart the installer.: Permissiondenied

 

--权限不对,修改 inventory.xml文件权限,继续

 

bash-3.00$ runInstaller -updateNodeList -local -silentCLUSTER_NODES=uat1,uat2 ORACLE_HOME=/u01/dev/db/tech_st/11.2.0LOCAL_NODE=uat1
Starting Oracle Universal Installer...

Checking swap space: must be greater than 500MB.   Actual 171287MB   Passed
The inventory pointer is located at/var/opt/oracle/oraInst.loc
The inventory is located at /u01/app/oraInventory
'UpdateNodeList' was successful.
bash-3.00$

 

--第二个节点执行


$ORACLE_HOME/oui/bin/runInstaller -updateNodeList -local -silentCLUSTER_NODES=uat1,uat2 ORACLE_HOME=/u01/dev/db/tech_st/11.2.0LOCAL_NODE=uat2

--继续

ash-3.00$ opatch apply
Oracle Interim Patch Installer version 11.2.0.3.5
Copyright (c) 2013, Oracle Corporation.  Allrights reserved.


OracleHome      : /u01/dev/db/tech_st/11.2.0
Central Inventory : /u01/app/oraInventory
  from          : /u01/dev/db/tech_st/11.2.0/oraInst.loc
OPatchversion    :11.2.0.3.5
OUIversion      : 11.2.0.3.0
Log file location :/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_18_23_29/apply2014-05-06_18-23-29PM_1.log

Applying interim patch '18544852' to OH'/u01/dev/db/tech_st/11.2.0'
Verifying environment and performing prerequisite checks...
Prerequisite check "CheckActiveFilesAndExecutables" failed.
The details are:


Following executables are active :
/u01/dev/db/tech_st/11.2.0/lib/libclntsh.so.11.1
Log file location:/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_18_23_29/apply2014-05-06_18-23-29PM_1.log

Recommended actions: OPatch needs to modify files which arebeing used by some processes.

OPatch failed with error code 41

 

pplying interim patch '18544852' to OH'/u01/dev/db/tech_st/11.2.0'
Verifying environment and performing prerequisite checks...
Prerequisite check "CheckActiveFilesAndExecutables" failed.
The details are:


Following executables are active :
/u01/dev/db/tech_st/11.2.0/lib/libclntsh.so.11.1
Log file location:/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_18_34_15/apply2014-05-06_18-34-14PM_1.log

Recommended actions: OPatch needs to modify files which arebeing used by some processes.

OPatch failed with error code 41

 

--查找进程,OPatch needs to modify files which are being used by someprocesses.


bash-3.00$ ps -fu oradev
    UID   PID PPID     STIMETTY        TIME CMD
  oradev  2704 2703    Apr 28pts/19     0:11 rman target /
  oradev  8836 5777    Mar 13pts/13     0:00 -sh
  oradev  6799 6795    Apr 29pts/16     0:00 bash
  oradev  8115 9661    Mar 14pts/9      0:00 -sh
  oradev  8840 8836    Mar 13pts/13     0:01 bash
  oradev 2879528794    Apr 24pts/18     0:00 -sh
  oradev  8119 8115    Mar 14pts/9      0:01 bash
  oradev 2931415839    Apr 29pts/12     0:00 -sh
  oradev 2932029314    Apr 29pts/12     0:00 bash
  oradev  2699 2697    Apr 28pts/19     0:00 -sh
  oradev  679525212    Apr 29pts/16     0:00 -sh
  oradev 16504 8840   0 18:35:29pts/13     0:00 ps -fu oradev
  oradev 2879928795    Apr 24pts/18     0:00 bash
  oradev  2703 2699    Apr 28pts/19     0:00 bash

 

 -- Kill rman连接进程,继续

 

bash-3.00$ kill 2704
bash-3.00$ ps -fu oradev
    UID   PID PPID     STIMETTY        TIME CMD
  oradev 16506 8840   0 18:35:52pts/13     0:00 ps -fu oradev
  oradev  8836 5777    Mar 13pts/13     0:00 -sh
  oradev  6799 6795    Apr 29pts/16     0:00 bash
  oradev  8115 9661    Mar 14pts/9      0:00 -sh
  oradev  8840 8836    Mar 13pts/13     0:01 bash
  oradev 2879528794    Apr 24pts/18     0:00 -sh
  oradev  8119 8115    Mar 14pts/9      0:01 bash
  oradev 2931415839    Apr 29pts/12     0:00 -sh
  oradev 2932029314    Apr 29pts/12     0:00 bash
  oradev  2699 2697    Apr 28pts/19     0:00 -sh
  oradev  679525212    Apr 29pts/16     0:00 -sh
  oradev 2879928795    Apr 24pts/18     0:00 bash
  oradev  2703 2699    Apr 28pts/19     0:00 bash
  oradev  2703 2699    Apr 28pts/19     0:00 bash
bash-3.00$ opatch apply
Oracle Interim Patch Installer version 11.2.0.3.5
Copyright (c) 2013, Oracle Corporation.  Allrights reserved.


OracleHome      : /u01/dev/db/tech_st/11.2.0
Central Inventory : /u01/app/oraInventory
  from          : /u01/dev/db/tech_st/11.2.0/oraInst.loc
OPatchversion    :11.2.0.3.5
OUIversion      : 11.2.0.3.0
Log file location :/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_18_36_09/apply2014-05-06_18-36-09PM_1.log

Applying interim patch '18544852' to OH'/u01/dev/db/tech_st/11.2.0'
Verifying environment and performing prerequisite checks...
All checks passed.

This node is part of an Oracle Real Application Cluster.
Remote nodes: 'uat2'
Local node: 'uat1'
Please shutdown Oracle instances running out of this ORACLE_HOME onthe local system.
(Oracle Home = '/u01/dev/db/tech_st/11.2.0')


Is the local system ready for patching? [y|n]

Applying interim patch '18544852' to OH'/u01/dev/db/tech_st/11.2.0'
Verifying environment and performing prerequisite checks...
All checks passed.

This node is part of an Oracle Real Application Cluster.
Remote nodes: 'uat2'
Local node: 'uat1'
Please shutdown Oracle instances running out of this ORACLE_HOME onthe local system.
(Oracle Home = '/u01/dev/db/tech_st/11.2.0')


Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...

Patching component oracle.rdbms.rsf, 11.2.0.3.0...

Patching component oracle.rdbms, 11.2.0.3.0...

OPatch found the word "warning" in the stderr of the makecommand.
Please look at this stderr. You can re-run this make command.
Stderr output:
ld: warning: symbol `_start' has differing types:
       (file /u01/dev/db/tech_st/11.2.0/lib/prod/lib/v9/crt1.o type=FUNC;file /u01/dev/db/tech_st/11.2.0/lib//libserver11.a(skds.o)type=OBJT);

 

Verifying the update...

The local system has been patched.  You canrestart Oracle instances on it.


Patching in rolling mode.


The node 'uat2' will be patched next.


Please shutdown Oracle instances running out of this ORACLE_HOME on'uat2'.
(Oracle Home = '/u01/dev/db/tech_st/11.2.0')

Is the node ready for patching? [y|n]
y
User Responded with: Y
Updating nodes 'uat2'
   Apply-related files are:
    FP ="/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_files.txt"
    DP ="/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_dirs.txt"
    MP ="/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/make_cmds.txt"
    RC ="/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/remote_cmds.txt"

Instantiating the file"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_files.txt.instantiated"by replacing $ORACLE_HOME in"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_files.txt"with actual path.
Propagating files to remote nodes...

OPatch failed to copy files to remote nodes 'uat2'.  Detail: Error while copying files insidedirectory '/u01/dev/db/tech_st/11.2.0' based on listed file'/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_files.txt.instantiated'to nodes 'uat2'. [PRKC-1073 : Failed to transfer directory"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_files.txt.instantiated"to any of the given nodes "uat2 ".
Error on node uat2:PRKC-1044 : Failed to check remote commandexecution setup for node uat2 using shells /usr/bin/ssh and/usr/bin/rsh
permission denied]

OPatch failed to copy files to remote nodes 'uat2' .
Do you want to proceed? [y|n]
y
User Responded with: Y
Instantiating the file"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_dirs.txt.instantiated"by replacing $ORACLE_HOME in"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/copy_dirs.txt"with actual path.
Propagating directories to remote nodes...
Instantiating the file"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/make_cmds.txt.instantiated"by replacing $ORACLE_HOME in"/u01/dev/db/tech_st/11.2.0/.patch_storage/18544852_May_5_2014_15_19_11/rac/make_cmds.txt"with actual path.
Running command on remote node 'uat2':
cd /u01/dev/db/tech_st/11.2.0/network/lib; /usr/ccs/bin/make -fins_net_client.mk client_sharedlibORACLE_HOME=/u01/dev/db/tech_st/11.2.0 || echoREMOTE_MAKE_FAILED::>&2

Running command on remote node 'uat2':
cd /u01/dev/db/tech_st/11.2.0/rdbms/lib; /usr/ccs/bin/make -fins_rdbms.mk client_sharedlibORACLE_HOME=/u01/dev/db/tech_st/11.2.0 || echoREMOTE_MAKE_FAILED::>&2

Running command on remote node 'uat2':
cd /u01/dev/db/tech_st/11.2.0/rdbms/lib; /usr/ccs/bin/make -fins_rdbms.mk irenamedg ORACLE_HOME=/u01/dev/db/tech_st/11.2.0 ||echo REMOTE_MAKE_FAILED::>&2

Running command on remote node 'uat2':
cd /u01/dev/db/tech_st/11.2.0/rdbms/lib; /usr/ccs/bin/make -fins_rdbms.mk ioracle ORACLE_HOME=/u01/dev/db/tech_st/11.2.0 || echoREMOTE_MAKE_FAILED::>&2


The node 'uat2' has been patched.  You can restartOracle instances on it.

There were relinks on remote nodes.  Rememberto check the binary size and timestamp on the nodes 'uat2' .
The following make commands were invoked on remote nodes:
'cd /u01/dev/db/tech_st/11.2.0/network/lib; /usr/ccs/bin/make -fins_net_client.mk client_sharedlibORACLE_HOME=/u01/dev/db/tech_st/11.2.0
cd /u01/dev/db/tech_st/11.2.0/rdbms/lib; /usr/ccs/bin/make -fins_rdbms.mk client_sharedlibORACLE_HOME=/u01/dev/db/tech_st/11.2.0
cd /u01/dev/db/tech_st/11.2.0/rdbms/lib; /usr/ccs/bin/make -fins_rdbms.mk irenamedg ORACLE_HOME=/u01/dev/db/tech_st/11.2.0
cd /u01/dev/db/tech_st/11.2.0/rdbms/lib; /usr/ccs/bin/make -fins_rdbms.mk ioracle ORACLE_HOME=/u01/dev/db/tech_st/11.2.0
'

Patch 18544852 successfully applied
OPatch Session completed with warnings.
Log file location:/u01/dev/db/tech_st/11.2.0/cfgtoollogs/opatch/18544852_May_06_2014_18_36_09/apply2014-05-06_18-36-09PM_1.log

OPatch completed with warnings.


--- OK,总算打上了,Patch 18544852 successfully applied


参考文档:


patch Apply Fails with Error Code 20 during Oracle Home DiscoveryPhase (文档 ID 1631715.1) 转到底部 


--------------------------------------------------------------------------------

修改时间:2014-3-25类型:PROBLEM    
 

In this Document


 Symptoms
 Changes
 Cause
 Solution
 References

--------------------------------------------------------------------------------

 

Applies to:
Oracle Database - Enterprise Edition - Version 11.2.0.1 andlater
Information in this document applies to any platform.

Symptoms
 Opatch online patching fails with error code 20during Oracle Home discovery Phase:

 

opatch apply online -connectStringRACDB1:sys:test:ORACLERAC1,RACDB2:sys:test:ORACLERAC2

Oracle Interim Patch Installer version 11.2.0.3.4

Copyright (c) 2012, Oracle Corporation.  Allrights reserved.

 

The patch should be applied/rolled back in '-all_nodes' modeonly.

Converting the RAC mode to '-all_nodes' mode.

Applying interim patch '13984324' to OH'/u01/app/oracle/product/11.2.0.3/dbhome_7'

Verifying environment and performing prerequisite checks...

[ Error during Oracle Home discovery Phase]. Detail: OPatchfailed: ApplySession failed to prepare the system.oracle/cluster/install/InstallException

Log file location:/u01/app/oracle/product/11.2.0.3/dbhome_7/cfgtoollogs/opatch/13984324_Feb_03_2014_10_20_26/apply2014-02-03_10-20-26AM_1.log

 

Recommended actions: Please make sure no other OPatch or OUIprocesses is running. Try to run$ORACLE_HOME/oui/bin/runInstaller.

OPatch failed with error code 20

 

In Apply log : 

[Jan 29, 2014 2:52:01 PM] [ Error during Oracle Home discoveryphase ] Detail: OUI-67073:OPatch failed: ApplySession failed toprepare the system. oracle/cluster/install/InstallException
[Jan 29, 2014 2:52:01 PM] OUI-67035:System is intact, OPatch willnot restore the system
[Jan 29, 2014 2:52:01 PM] Finishing ApplySession at Wed Jan 2914:52:01 GMT 2014
[Jan 29, 2014 2:52:01 PM] Total time spent waiting for user-inputis 0 seconds. Finish at Wed Jan 29 14:52:01 GMT 2014
[Jan 29, 2014 2:52:01 PM] Log file location:/u01/app/oracle/product/11.2.0.3/dbhome_7/cfgtoollogs/opatch/13984324_Jan_29_2014_14_51_55/apply2014-01-29_14-51-55PM_1.log
[Jan 29, 2014 2:52:01 PM] Stack Description:java.lang.RuntimeException: ApplySession failed to prepare thesystem. oracle/cluster/install/InstallException
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgClusterwareInfo.createClusterwareInfo(OiipgClusterwareInfo.java:155)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgClusterwareInfo.getClusterwareInfo(OiipgClusterwareInfo.java:180)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgDetectCluster.(OiipgDetectCluster.java:131)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.sysman.oii.oiip.oiipg.OiipgDetectCluster.getDetectCluster(OiipgDetectCluster.java:146)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.opatch.Rac.getLocalNode(Rac.java:1789)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.opatch.Rac.getInstance(Rac.java:1236)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.opatch.ApplySession.processLocal(ApplySession.java:3758)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.opatch.ApplySession.process(ApplySession.java:5939)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.opatch.OPatchSession.main(OPatchSession.java:2063)
[Jan 29, 2014 2:52:01 PM] StackTrace:oracle.opatch.OPatch.main(OPatch.java:613)

 

Changes
Applying an interim patch on RAC environment.

Cause
Opatch is trying to get local and remote node but fails and throwsexception.

The inventory.xml file (in /ContentsXML) has an inconsistentnodelist.

Solution
Before patch application, the nodelist must be updated to reflectthe correct node names on all RAC nodes.
 

On a 2 node RAC, update the inventory asfollows: 
 

On Node 1 :

  $ORACLE_HOME/oui/bin/runInstaller-updateNodeList -local -silent CLUSTER_NODES=dbnode1,dbnode2ORACLE_HOME=$ORACLE_HOME LOCAL_NODE=dbnode1 
 

On Node 2 :
 
  $ORACLE_HOME/oui/bin/runInstaller-updateNodeList -local -silent CLUSTER_NODES=dbnode1,dbnode2ORACLE_HOME=$ORACLE_HOME LOCAL_NODE=dbnode2

 

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 买了瓶过期香水怎么办 宝宝吃了润唇膏怎么办 新生3天宝宝打嗝怎么办 咖啡喝多了恶心怎么办 喝咖啡恶心想吐怎么办 咖啡喝多了头晕怎么办 喝咖啡反胃想吐怎么办 咖啡喝多了胃疼怎么办 喝了咖啡想吐怎么办 微商别人觉得贵怎么办 id被别人锁定了怎么办 2017闯红灯扣6分怎么办 乐天玛特超市卡怎么办 乐天玛特的卡怎么办 乐天玛特倒闭 卡怎么办 公租房五年到期怎么办 超市的水杯坏了怎么办 玩天涯明月刀卡怎么办? 想开童装店没什么经验怎么办 孕后期鼻炎犯了怎么办 酷狗国外听不了怎么办 酷狗音乐换手机怎么办 有优势卵泡不排卵怎么办 卵泡30mm不破怎么办 成熟的卵泡不破怎么办 卵泡大了不破怎么办 卵泡突然不长了怎么办 想怀孕卵泡不长怎么办 吉吉影音下载慢怎么办 辞职后社保断了怎么办 2岁泡泡糖咽下去怎么办 我在拼多多开团怎么办 养了一条鱼死了怎么办 鱼缸的鱼尾巴烂怎么办 捡到玉佛吊坠该怎么办 晚上睡不踏实多梦易醒怎么办 红米3s蓝屏怎么办 吃饭没给钱跑了怎么办 刚出生的宝宝红屁屁怎么办 刚出生的宝宝红屁股怎么办 眼镜配高了25度怎么办