Confirm that SHMMAX kernel parameter is set datastore size

Hi,
I'm getting below exception when i'm trying to create datastore. The error is complaining about failure to create shared memory segment.
I did go through the T-10 documentation and various post on this forum, and have made sure that the OS and the DSN settings are as per the recommended values. The values meets(or rather exceeds) the minimum values.
The values are based on below formulas:
kernel.shmmax (in bytes) = Should be >= PermSize + TempSize + LogBufMB +~50MB overhead
kernel.shmall (in pages) = Should be >= ceil ( SHMMAX / PAGE_SIZE)
SwapTotal (in KB) = Swap space should generally be at least 1.5x total physical memory size. It should be sufficient to allow allocation of a large enough shared memory segment
TempSize (in MB) = Should be >= 40 MB + ceiling( PermSize / 8 MB)
I have pasted below following things. Please, can any one help me resolve this issue.
- exception in ttmessg.log
- output of cat /etc/sysctl.conf
- sys.odbc.ini datastore configuration
- cat /proc/meminfo
- Swap space
- output of ttstatus
- output of ttversion
[oracle@ttnode1 info]$ ttdaemonadmin -stop
TimesTen Daemon stopped.
[oracle@ttnode1 info]$ ttdaemonadmin -start
TimesTen Daemon startup OK.
[oracle@ttnode1 info]$ ttisql "dsn=tt"
Copyright (c) 1996-2011, Oracle. All rights reserved.
Type ? or "help" for help, type "exit" to quit ttIsql.
connect "dsn=tt";
*836: Cannot create data store shared-memory segment, error 22*
The command failed.
Done
The exception in ttmesg.log
[oracle@ttnode1 info]$ tail -f ttmesg.log
2013-01-14 17:42:49.98 Warn: : 6533: TimesTen Daemon Release 11.2.2.4.0.tt started.
2013-01-14 17:42:59.45 Err : : 6533: TT14000: TimesTen daemon internal error: Error 22 creating shared segment, KEY 0x0200778b
2013-01-14 17:42:59.45 Err : : 6533: -- OS reports invalid shared segment size
2013-01-14 17:42:59.45 Err : : 6533: -- Confirm that SHMMAX kernel parameter is set > datastore size
2013-01-14 17:45:32.67 Warn: : 6533: request id check 'MKB9+MF7V7DybTjglCEC/10d5/N7FCEFtayvZF4a9xQ=' failed (-5)
2013-01-14 17:47:18.45 Warn: : 6533: request id check 'u6GF7bBtmRQCXKYMAWa7LhwCv1GtIG8HXdW0GLRLHEU=' failed (-5)
2013-01-14 17:47:41.62 Warn: : 6533: request id check 'nNAzUc/plNUStN85qP9htbsz/E5psODMEeRYLmE/n50=' failed (-5)
2013-01-14 23:15:34.58 Warn: : 8590: TimesTen Daemon Release 11.2.2.4.0.tt started.
2013-01-14 23:15:43.44 Err : : 8590: TT14000: TimesTen daemon internal error: Error 22 creating shared segment, KEY 0x02008294
2013-01-14 23:15:43.44 Err : : 8590: -- OS reports invalid shared segment size
2013-01-14 23:15:43.44 Err : : 8590: -- Confirm that SHMMAX kernel parameter is set > datastore size
2013-01-14 23:16:11.23 Warn: : 8590: request id check 'v4TJ+ZyP3KRvGxfkguLgxNyRUdtfw/MMFrvR2tWMUBk=' failed (-5)
2013-01-14 23:18:01.34 Warn: : 8590: request id check 'p4DVyvW75Fjlo3dQ5f8OFbk4qpolqj8gFyQhqfW4ekQ=' failed (-5)
2013-01-14 23:19:50.28 Warn: : 8590: request id check 'DPQ8gSYcljQtkuvx6ccI5a5OGcjXklItV4Mj3Cf0DmA=' failed (-5)
2013-01-14 23:41:01.97 Warn: : 8820: TimesTen Daemon Release 11.2.2.4.0.tt started.
*2013-01-14 23:41:10.10 Err : : 8820: TT14000: TimesTen daemon internal error: Error 22 creating shared segment, KEY 0x02008294*
*2013-01-14 23:41:10.10 Err : : 8820: -- OS reports invalid shared segment size*
*2013-01-14 23:41:10.10 Err : : 8820: -- Confirm that SHMMAX kernel parameter is set > datastore size*
2013-01-14 23:42:20.31 Warn: : 8820: request id check 'sHRtjK5AUKI/RYPN6Mf6ivOPeGVFysbXT4eU9dfBZPw=' failed (-5)
2013-01-14 23:43:24.14 Warn: : 8905: TimesTen Daemon Release 11.2.2.4.0.tt started.
2013-01-14 23:43:29.64 Err : : 8905: TT14000: TimesTen daemon internal error: Error 22 creating shared segment, KEY 0x02008294
2013-01-14 23:43:29.64 Err : : 8905: -- OS reports invalid shared segment size
2013-01-14 23:43:29.64 Err : : 8905: -- Confirm that SHMMAX kernel parameter is set > datastore size
Here is the OS setting.
*[oracle@ttnode1 ~]$ cat /etc/sysctl.conf*
# Kernel sysctl configuration file for Red Hat Linux
# For binary values, 0 is disabled, 1 is enabled. See sysctl(8) and
# sysctl.conf(5) for more details.
# Controls IP packet forwarding
net.ipv4.ip_forward = 0
# Controls source route verification
net.ipv4.conf.default.rp_filter = 1
# Do not accept source routing
net.ipv4.conf.default.accept_source_route = 0
# Controls the System Request debugging functionality of the kernel
kernel.sysrq = 0
# Controls whether core dumps will append the PID to the core filename
# Useful for debugging multi-threaded applications
kernel.core_uses_pid = 1
# Controls the use of TCP syncookies
net.ipv4.tcp_syncookies = 1
# Controls the maximum size of a message, in bytes
kernel.msgmnb = 65536
# Controls the default maxmimum size of a mesage queue
kernel.msgmax = 65536
# Controls the maximum shared segment size, in bytes
kernel.shmmax = 68719476736
# Controls the maximum number of shared memory segments, in pages
kernel.shmall = 4294967296
Here's the DSN setting
* Datastore configuration in sys.odbc.ini file*
*[oracle@ttnode1 info]$ grep -v ^# sys.odbc.ini | sed '/^ *$/d'
[ODBC Data Sources]
TT=TimesTen 11.2.2 Driver
[TT]
Driver=/home/oracle/TimesTen/tt/lib/libtten.so
DataStore=/home/oracle/TimesTen/tt/info/DStore/itt_11224
DatabaseCharacterSet=AL32UTF8
PermSize=128
TempSize=96
ReplicationApplyOrdering=0
ReplicationParallelism=4
LogBufParallelism=4
LogBufMB=32
LogFileSize=32
LogFlushMethod=2
*[ice@ttnode1 ~]$ cat /proc/meminfo*
MemTotal: 3865624 kB
MemFree: 2287936 kB
Buffers: 9744 kB
Cached: 189340 kB
SwapCached: 62588 kB
Active: 739244 kB
Inactive: 796816 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 3865624 kB
LowFree: 2287936 kB
SwapTotal: 2031608 kB
SwapFree: 1755480 kB
Dirty: 316 kB
Writeback: 0 kB
AnonPages: 1310800 kB
Mapped: 24260 kB
Slab: 12952 kB
PageTables: 8712 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
CommitLimit: 3964420 kB
Committed_AS: 2886040 kB
VmallocTotal: 34359738367 kB
VmallocUsed: 1616 kB
VmallocChunk: 34359736599 kB
HugePages_Total: 0
HugePages_Free: 0
HugePages_Rsvd: 0
Hugepagesize: 2048 kB
*[ice@ttnode1 ~]$ grep SwapTotal /proc/meminfo*
SwapTotal: 4128752 kB
Earlier the swap space was 2031608 KB, but snice it shuold be 1.5 times the physical memory, i bumped it up to its current value
*[oracle@ttnode1 info]$ ttstatus*
TimesTen status report as of Mon Jan 14 17:47:32 2013
Daemon pid 6533 port 53398 instance tt
TimesTen server pid 6550 started on port 53399
Accessible by group oinstall
End of report
*[oracle@ttnode1 info]$ ttversion*
TimesTen Release 11.2.2.4.0 (64 bit Linux/x86_64) (tt:53398) 2012-09-24T08:28:05Z
Instance admin: oracle
Instance home directory: /homankse/oracle/TimesTen/tt
Group owner: oinstall
Daemon home directory: /home/oracle/TimesTen/tt/info
Thanks,
Ved

Hi,
On continuing my debugging steps, if checked the limits for IPC facility.
ipcs -m -l
------ Shared Memory Limits --------
max number of segments = 4096
max seg size (kbytes) = 32768
max total shared memory (kbytes) = 8388608
min seg size (bytes) = 1
This says that "max number of segments = 4096", where as the kernel parameter is defined as "kernel.shmall = 4294967296".
Am i correct in understanding that "max number of segments" is same as "kernel.shmall" and the values should be same.
Also, it says that "max seg size (kbytes) = 32768" ie around 32MB, where as the kernel parameter is defined as "kernel.shmmax = 68719476736" i.e around 64BG.
and since, the DSN is requesting to create shared memory segment of 128MB, which is greater that 32MB(as per max seg size (kbytes) = 32768), Timesten is throwing the error.
Thanks everyone for helping me out.
_ved                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Maximu Shared Memory (shmmax kernel parameter)

    Hi,
    in all Unix Installation documents...
    shmmax kernel parameter to be set as the Half of the Physical RAM.
    per suppose...if we have 6 GB Ram...cant we increase the SGA size to 5 GB........does it make sense...or any other ....this is the Apps Database with 10g..no other database on this machine....
    anywork arounds .....

    It depends on your exact Unix OS and if your database is 32 or 64 bit. I would not advise setting SGA to 5GB on a 6 GB machine as you leave almost nothing for the OS, nor PGA/UGA shadow processes. If you have more than like 10 connections, I would set the SGA to no more than 2 or 3 GB, then have a 1 GB pga_aggregate_target.

  • SHMMAX kernel parameter

    Hello -
    I'm running Oracle 10g R2 on Solaris 10. Does anyone know how to set the shmmax kernel parameter? According to Oracle documention, all kernel parms have been deprecated except for shmmax, but I believe this is stored and set in a different location on Solaris 10.
    Thanks

    A lot of kernel parameters, including SHMMAX, were replaced in Solaris 10 by resource controls.
    you can check
    Metalink note 317257.1
    and
    Installing OCS 10g R1 on Solaris 10
    Mike

  • How to select my custom monitor calibration profile into Lightroom 5.7?  I used i1 Display Pro to calibrate my monitor, I could not find or confirm that Lightroom is using my custom monitor calibration profile? Thank you very much.

    How to select my custom monitor calibration profile into Lightroom 5.7?  I used i1 Display Pro to calibrate my monitor, I could not find or confirm that Lightroom is using my custom monitor calibration profile? Thank you very much.

    The monitor profile is set at system level. Lightroom will find it there and use it. You're not supposed to do anything, i1 Profiler will do it all for you.
    Go here to confirm that the right profile is set as system default (Windows):

  • Are there any settings in the options (or anywhere else) that I can use to set up an auto confirm and resend without having to manually click the 'resend' butto

    There is a certain website I use that I refresh frequently. Every time I do I get a pop up message labeled ‘Confirm’ with a question mark in it that says;
    “To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier."
    It only seems to be a problem with this one particular site. Are there any settings in the options (or anywhere else) that I can use to set up an auto confirm and resend without having to manually click the ‘resend’ button in the pop up window?

    Hi cor-el, Thanks for responding;
    I am accustomed to seeing this type of pop up on occasion and understand why they are necessary to prevent duplicating orders, payments, etc. I am not using a back button, I wanted to use an auto-refresh app to search for reservation openings on a certain web site and can not because this pop up requires me to manually push a button every time the page refreshes. I am resending the same information every time (a date range) via the POST form, so, was hoping there was a way to either disable, override, or set up and auto response so I can use the auto-refresh app. Your description of how to avoid the pop up didn't entirely make sense to me, but If I have to do a bunch of manual steps in between each refresh attempt it doesn't matter because I'm no better off.

  • HT5622 I have re set my password and have received confirmation that the change has been made by email.....however  when I enter the new password ....the system tells me it is incorrect ????

    I have re set my password and have received confirmation that the change has been made by email.....however  when I enter the new password ....the system tells me it is incorrect ????

    Sign out of Apple ID, re-start and sign in again.

  • Can it be confirmed that setting je.maxMemory via -Dje.maxMemory works?

    Can it be confirmed that setting je.maxMemory via -Dje.maxMemory works?
    I know that such a value would be overrden if the DB's home folder would contain a je.properties file (which is not the case in my case).

    Huh? je.maxMemory is not a system property.
    Please try to do more investigation. I'm going to have to let your questions accumulate for a day or two, so I don't get behind on my other work.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Rlim_fd_max Kernel Parameter on Solaris 9

    I am trying to install Oracle Application Server 10g Release 2 on Solaris 9. The installation errors out on the "Select Configuration Options" screen with the following error:
    "Oracle Application Server 10g Web Cache requires the Kernel Parameter rlim_fd_max to be set to a value of 65536 or higher. Please set rlim_fd_max to 65536 or higher, reboot the machine and restart the installation".
    I checked the value of the set rlim_fd_max Kernel Parameter prior to starting the install and it is set to 65536. Does anyone know why I'm getting this error? Thanks in advance!

    I was able to get an answer by opening a SR with Metalink. The problem was that even though the rlim_fd_max default on Solaris 9 is 65536, it must be in the /etc/system file. Must be the installer looks at the file to determine that it is set correctly. So, adding set rlim_fd_max=65536 and set rlim_fd_cur=1024 to the /etc/system file fixed the problem.

  • Oracle 10g on solaris 10 : kernel parameter warning

    I am installing oracle 10g on Solaris 10.
    I have a warning on kernel parameter missing (shminfo_shmmax for example) during the system check.
    I understood that with the 10 version of solaris these parameters are replaced by ressources control and I have checked them. They are correctly setted.
    Need I do something before continue the install to release the warning or can I bypass this issue and continue the install as I have no warning ?
    Thanks for your answers.
    Sorry for my english.

    You are right. Since Solaris 10 kernel parameters settings in /etc/system is obsolete and some parameters are deprecated.
    The steps how to configure required parameters you can find in my paper (step #1.): http://ivan.kartik.sk/oracle/install_ora10gR2_solaris.html
    I bypass this issue and continue the install as I have no warning You can safely bypass this issue during installation process but you should set these parameters after installation.

  • What is the resource control corresponding to each kernel parameter

    Hi
    I am trying to prepare (i.e. tune) a Solaris 10 instance for an Oracle 10g install using a Solaris 10 project.
    I am new to using Solaris 10 project resource controls so I might get some of this totally wrong.
    I know all of the "old" kernel parameter names: what each represents and its' required value and I know some of the corresponding resource controls but not all of them.
    That is I do not know the resource control corresponding to each and all of the kernel parameters.
    e.g. I know:
    semsys:seminfo_semmsl == process.max-sem-nsems == The maximum number of sempahores that can be in one semaphore set
    shmsys:shminfo_shmmax == project.max-shm-memory == The maximum size(in bytes) of a single shared memory segment
    shmsys:shminfo_shmmni == project.max-shm-ids == The number of shared memory identifiers
    But I do not know, for example, what resource control corresponds to:
    semsys:seminfo_semmns == The number of semaphores in the system
    Is there a list somewhere of the resource control corresponding to each of the kernel parameters ?
    I know I can set some kernel parameters in /etc/system but that should only be used for system - wide kernel parameters, right ?
    I know there are project, process, task and zone classes of resource controls.
    Can a resource control of any and all of these types be set in a project ?
    Are zone resource controls equivalent to system-wide resource controls ?
    Are there corresponding resource controls to all kernel parameters e.g. such as noexec_user_stack ?
    I have set noexec_user_stack in /etc/system.
    And finally - just to be sure - using a project makes the resource control values permanent, right ?
    Thanks
    Brett.

    Hi;
    Please check below which could be helpful for your issue:
    Kernel setup for Solaris 10 using project files [ID 429191.1]
    Regard
    Helios

  • LD_LIBRARY_PATH: parameter not set

    Hi All,
    BOX -- HPUX Itanium 11.11
    I am in process of installing 10gr2 on hpux box. in order to install oracle binaly , I am using response file, I have made the necessery changes in the response file and trying to run runInstaller, it throws the following. Looking forward to your response.
    $ . /db/kronqa/oracle/database/runInstaller -ignoreSysPrereqs -force -silent -responseFile \
    /db/kronqa/oracle/database/enterprise.rsp.10gr2ksh: LD_LIBRARY_PATH: parameter not set

    I have extracted the setup file as orakronqa owner. but , still not out of the woods. also, i tried to find out the respective logs from the base directory , but not able to locate the installer log file. it seems that installer not even started. i also did cat /var/opt/oracle/oraInst.loc , but not found any such files , which , i can consult to give further checks.
    ./dhrp/oracle/oraInventory/logs/silentInstall2007-08-09_10-15-16AM.log
    ./dhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-12-20_03-02-05PM.log
    ./dhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-12-20_03-05-48PM.log
    ./dhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2010-10-25_11-27-16AM.log
    ./dhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2008-12-20_03-05-48PM.log
    ./dhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2010-10-25_11-27-16AM.log
    ./dhrp/oracle/product/10.2.0/patchset/Disk1/install/oraparamsilent.ini
    ./dhrp/archive/DHRP_OH_110409/BKPFILES/oraInventory/logs/silentInstall2008-04-02_11-08-39AM.log
    ./dhrp/archive/DHRP_OH_102210/Bkp_102210/oraInventory/logs/silentInstall2008-12-20_03-02-05PM.log
    ./dhrp/archive/DHRP_OH_102210/Bkp_102210/oraInventory/logs/silentInstall2008-12-20_03-05-48PM.log
    ./dhrp/archive/DHRP_OH_102210/Bkp_102210/oraInventory/logs/silentInstall2009-11-04_03-16-04PM.log
    ./amdimd/oracle/product/10.2.0/patchset/Disk1/install/oraparamsilent.ini
    ./amdimq/oracle/product/10.2.0/patchset/Disk1/install/oraparamsilent.ini
    ./hrpsb/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2007-09-06_03-55-49PM.log
    ./hrpsb/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2008-08-08_12-34-20PM.log
    ./hrpsb/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-08-08_12-34-20PM.log
    ./hrpsb/oracle/product/10.2.0/patchset/Disk1/install/oraparamsilent.ini
    ./hrpsb/oracle/product/10.2.0/oraInventory.zhrp/logs/silentInstall2007-09-06_03-55-49PM.log
    ./yhrp/oracle/home/orayhrp/Dba/Madhukar/YHRP_BKP_060910/oraInventory/logs/silentInstall2008-01-04_04-06-00PM.log
    ./yhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2008-12-20_03-05-48PM.log
    ./yhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2009-11-04_03-16-04PM.log
    ./yhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2010-06-09_10-43-45AM.log
    ./yhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-12-20_03-02-05PM.log
    ./yhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-12-20_03-05-48PM.log
    ./yhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2009-11-04_03-16-04PM.log
    ./yhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2010-06-09_10-43-45AM.log
    ./yhrp/oracle/product/10.2.0/oraInventory_bak/logs/silentInstall2008-12-20_03-02-05PM.log
    ./yhrp/oracle/product/10.2.0/oraInventory_bak/logs/silentInstall2008-12-20_03-05-48PM.log
    ./yhrp/oracle/product/10.2.0/patchset/Disk1/install/oraparamsilent.ini
    ./yhrp/archive/NHRP_BKP_09Jan11/nhrp_db_09jan11/home/oranhrp/dba/Madhukar/nhrp_db_09Jan11/oraInventory/logs/silentInstall2009-08-24_03-16-47PM.log
    ./yhrp/archive/NHRP_BKP_09Jan11/nhrp_db_09jan11/home/oranhrp/nhrp_bkp_befpatch/oraInventory/logs/silentInstall2009-08-24_03-16-47PM.log
    ./zhrp/oracle/home/oraphrp/dba/phrp_before_patch/oraInventory/logs/silentInstall2008-12-20_03-02-05PM.log
    ./zhrp/oracle/home/oraphrp/dba/phrp_before_patch/oraInventory/logs/silentInstall2008-12-20_03-05-48PM.log
    ./zhrp/oracle/home/orazhrp/bkup_dec232009/oraInventory/logs/silentInstall2008-12-11_10-59-20AM.log
    ./zhrp/oracle/home/orazhrp/bkup_dec232009/oraInventory/logs/silentInstall2008-12-11_11-33-51AM.log
    ./zhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-12-20_03-02-05PM.log
    ./zhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2008-12-20_03-05-48PM.log
    ./zhrp/oracle/product/10.2.0/oraInventory/logs/silentInstall2010-12-14_01-10-35PM.log
    ./zhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2008-12-20_03-05-48PM.log
    ./zhrp/oracle/product/10.2.0/cfgtoollogs/oui/silentInstall2010-12-14_01-10-35PM.log
    ./zhrp/oracle/product/10.2.0/patchset/Disk1/install/oraparamsilent.iniEdited by: user11983993 on Mar 25, 2012 8:36 AM
    Edited by: user11983993 on Mar 25, 2012 8:39 AM

  • Communication between Lync - Mediant . 488 evt from mediant site when SBC Remote Early Media RTP parameter is set to Delayed

    Hi,
    I have a problem with Early Media functionality between Lync and Mediant 1000 E-SBC. If SBC Remote Early Media RTP parameter is set to Delayed (on IP Profile Settings level) i cannot establish connection. After receiving 183 Session progress (from Lync site)
    call is released with 488 event (488 is sent from mediant site). Before "Not applicable here" in logs i can see:
    6d:9h:46m:35s (      lgr_flow)(18219     )  #MediaResourcesConnector::AllocateMediaResources
    (lgr_media_connector)(18220     )  MediaResourcesConnector:CalculateResourcesForAppExtensions Leading:DSP Opposite:NONE MediationLevel:NONE
    (lgr_media_service)(18221     )  ServicesMngr: Allocate Media channel. current active: 0 and max is: 0
    6d:9h:46m:35s (lgr_media_service)(18222     ) !! [ERROR] ServicesMngr: Cannot allocate more Media channel. current active: 0 and max is: 0
    6d:9h:46m:35s (lgr_media_service)(18261     )  (#292) ChannelResource Deallocated.
    6d:9h:46m:35s (lgr_media_service)(18262     )  (#293) ChannelResource Deallocated.
    I need this because if im using SBC Remote Early Media RTP = Immidiately i cannot hear ringtone. Could someone give me any clues what is wrong in config?
    I enclosed detailed logs:
    Log is Activated  6d:9h:46m:35s (       lgr_sbc)(18057     )  (#51) SBCRoutesIterator Allocated.
    (       lgr_sbc)(18058     )  Classification Succeeded - Source IP Group #2.
    (       lgr_sbc)(18059     )  CallAdmission::AddDialog: Type INVITE Direction In IP group 2: 1 SRD 2: 1 SRD ovflw:1 used unres:1
    (      lgr_flow)(18060     )  (#51)SBCRoutesIterator::Change State From: InitialRouting To : AlternativeRouting
    (       lgr_sbc)(18061     )  CallAdmission::AddDialog: Type INVITE Direction Out IP group 1: 1 SRD 1: 1 SRD ovflw:1 used unres:2
    (      lgr_flow)(18062     )  (#51)SBCRoutesIterator::Next route found: Route by: IPGroup , IP Group ID: 1, Live:1
    (       lgr_sbc)(18063     )  Routing Succeeded -IP2IPRouting Rule #2.
    (      lgr_flow)(18064     )  ---- Incoming SIP Message from switch:5060 to SIPInterface #2 UdpTransportObject[#2] ----
    6d:9h:46m:35s INVITE sip:1234@Mediant;user=phone SIP/2.0
    Allow: INVITE, ACK, CANCEL, BYE, PRACK, NOTIFY, REFER, SUBSCRIBE, OPTIONS, UPDATE, INFO
    Supported: replaces,timer,path,100rel
    User-Agent: OmniPCX Enterprise R10.1.1 j2.603.33.a
    Session-Expires: 1800;refresher=uac
    Min-SE: 900
    P-Asserted-Identity: "TPSA 12" <sip:221111111@switch;user=phone>
    Content-Type: application/sdp
    To: <sip:1234@Mediant;user=phone>
    From: "TPSA 12" <sip:221111111@switch;user=phone>;tag=434636a077aeb3418ef3d5c0887debbd
    Contact: <sip:221111111@switch;transport=UDP>
    Call-ID: 5050e7eb34568795c049d14a6b088172@switch
    CSeq: 1290334631 INVITE
    Via: SIP/2.0/UDP switch;branch=z9hG4bK668ced008893ef177292c6f0f662ca02
    Max-Forwards: 70
    Content-Length: 265
    v=0
    o=OXE 1415263596 1415263596 IN IP4 switch
    s=abs
    c=IN IP4 172.16.20.32
    t=0 0
    m=audio 32156 RTP/AVP 8 4 97
    a=sendrecv
    a=rtpmap:8 PCMA/8000
    a=ptime:20
    a=maxptime:30
    a=rtpmap:4 G723/8000
    a=ptime:30
    a=maxptime:30
    a=rtpmap:97 telephone-event/8000
    (     sip_stack)(18066     )  New SIPMessage created - #57
    (     sip_stack)(18067     )  New SIPSBCCallLeg created - #1695
    6d:9h:46m:35s (     sip_stack)(18068     )  New AcSIPCall created - #1922
    (     sip_stack)(18069     )  AcTransactionUser::AddMessageToQueue: Queueing message
    6d:9h:46m:35s (     sip_stack)(18102     )  SIPCall(#1922) changes state from Idle to Invited
    6d:9h:46m:35s (     sip_stack)(18164     )  SIPCall(#1921) changes state from Idle to Inviting
    (     sip_stack)(18165     )  SIPSessionTimer<TU#1921>::FillSTRequestData - Session-Timer mode: TRANSPARENT
    (      lgr_flow)(18166     )  ---- Outgoing SIP Message to Lync2:5068 from SIPInterface #1 TcpTransportObject[#648] ----
    6d:9h:46m:35s (      lgr_flow)(18178     )  ---- Incoming SIP Message from Lync2:5068 to SIPInterface #1 TcpTransportObject[#648] ----
    SIP/2.0 183 Session Progress
    FROM: "TPSA 12"<sip:221111111@switch;user=phone>;tag=1c1656521459
    TO: <sip:1234@Mediant;user=phone>;tag=499c98c8cd;epid=DE8F26F104
    CSEQ: 1 INVITE
    CALL-ID: 1656462877611201494635@Mediant
    VIA: SIP/2.0/TCP Mediant:5068;branch=z9hG4bKac1657277504;alias
    CONTACT: <sip:lyfe02.grupa.lukas:5068;transport=Tcp;maddr=Lync2>
    CONTENT-LENGTH: 281
    CONTENT-TYPE: application/sdp
    ALLOW: CANCEL
    ALLOW: BYE
    ALLOW: UPDATE
    ALLOW: PRACK
    REQUIRE: 100rel
    SERVER: RTCC/5.0.0.0 MediationServer
    Rseq: 1
    v=0
    o=- 89 1 IN IP4 Lync2
    s=session
    c=IN IP4 Lync2
    b=CT:1000
    t=0 0
    m=audio 52882 RTP/AVP 8 97
    c=IN IP4 Lync2
    a=rtcp:52883
    a=label:Audio
    a=sendrecv
    a=rtpmap:8 PCMA/8000
    a=rtpmap:97 telephone-event/8000
    a=fmtp:97 0-16
    m=audio 0 RTP/SAVP 8 4 97
    (     sip_stack)(18180     )  New SIPMessage created - #55
    (      lgr_flow)(18181     )  |       |(SIPTU#1921)183 State:Proceeding(1656462877611201494635@Mediant)
    6d:9h:46m:35s (   lgr_stk_ses)(18182     )  |       |       |       #1694:SIP_ALERT_EV(1656462877611201494635@Mediant)
    (     sip_stack)(18183     )  SDPBody::New - id = 126
    (     sip_stack)(18184     )  SDPBodyMedia::New - id = 541
    (     sip_stack)(18185     )  SDPBodyMedia::New - id = 540
    (     sip_stack)(18186     )  <BaseSIP SDPSESSION #1694> UpdateChosenMediaByCN - CN as Remote -1
    (     sip_stack)(18187     )  SDPBodyMedia::New - id = 539
    (     sip_stack)(18188     )  SDPBodyMedia::New - id = 538
    (   lgr_stk_ses)(18189     )  SBCOfferAnswerMngr(#1694) changes state from SIP_MEDIA_OFFERING to SIP_MEDIA_COMPLETED
    (   lgr_stk_ses)(18190     )  <SESSION #1694> SendToCall - event: MEDIA_NEGOTIATION_COMPLETED_EV  m_Call#1852
    (      lgr_flow)(18191     )  |       |       (#1852)SBCCall <- (#1694)SIPSBCCallLeg: MEDIA_NEGOTIATION_COMPLETED_EV
    (      lgr_flow)(18192     )  |       (#59)SBCCallPlacementFeature <- (#1852)SBCCall: MEDIA_NEGOTIATION_COMPLETED_EV
    (      lgr_flow)(18193     )  |       (#1853)SBCParticipantEndPoint <- (#59)SBCCallPlacementFeature: MEDIA_NEGOTIATION_COMPLETED_EV
    6d:9h:46m:35s (      lgr_flow)(18219     )  #MediaResourcesConnector::AllocateMediaResources
    (lgr_media_connector)(18220     )  MediaResourcesConnector:CalculateResourcesForAppExtensions Leading:DSP Opposite:NONE MediationLevel:NONE
    (lgr_media_service)(18221     )  ServicesMngr: Allocate Media channel. current active: 0 and max is: 0
    6d:9h:46m:35s (lgr_media_service)(18222     ) !! [ERROR] ServicesMngr: Cannot allocate more Media channel. current active: 0 and max is: 0
    6d:9h:46m:35s (lgr_media_service)(18261     )  (#292) ChannelResource Deallocated.
    6d:9h:46m:35s (lgr_media_service)(18262     )  (#293) ChannelResource Deallocated.
    6d:9h:46m:35s (      lgr_flow)(18263     )  |       |       (#1853)SBCCall <- (#1695)SIPSBCCallLeg: RELEASE_EV
    (      lgr_flow)(18264     )  |       |       (#1853) SBCCall changing states from:AlertingState to:DisconnectingState
    (      lgr_flow)(18265     )  |       (#1852)SBCParticipantEndPoint <- (#1853)SBCCall: RELEASE_EV
    (      lgr_flow)(18266     )  (#1852) SBCParticipantEndPoint changing states from:InitiatedState to:ReleaseingState
    (      lgr_flow)(18267     )  (#1035)SBCController <- (#1852)SBCParticipantEndPoint: RELEASE_EV
    (      lgr_flow)(18268     )  |       |       (#1035) SBCController changing states from:EstablishingState to:DisconnectingState
    (      lgr_flow)(18269     )  |       (#1853)SBCParticipantEndPoint <- (#1035)SBCController: RELEASE_EV
    (      lgr_flow)(18270     )  (#1853) SBCParticipantEndPoint changing states from:InitiatedState to:ReleaseingState
    (      lgr_flow)(18271     )  |       (#59)SBCCallPlacementFeature <- (#1853)SBCParticipantEndPoint: RELEASE_EV
    (      lgr_flow)(18272     )  (#59) SBCCallPlacementFeature changing states from: Initiated to: Releasing
    6d:9h:46m:35s (      lgr_flow)(18273     )  |       |       (#1852)SBCCall <- (#59)SBCCallPlacementFeature: RELEASE_EV
    (      lgr_flow)(18274     )  |       |       (#1852) SBCCall changing states from:AlertingState to:DisconnectingState
    (      lgr_flow)(18275     )  |       |       |       (#1694)SIPSBCCallLeg <- (#1852)SBCCall: RELEASE_EV
    (     sip_stack)(18276     )  New SIPMessage created - #52
    (      lgr_flow)(18277     )  |       |(SIPTU#1921)DISCONNECT_REQ State:Proceeding(1656462877611201494635@Mediant)
    (     sip_stack)(18278     )  New SIPMessage created - #49
    (      lgr_flow)(18279     )  ---- Outgoing SIP Message to Lync2:5068 from SIPInterface #1 TcpTransportObject[#648] ----
    CANCEL sip:1234@Mediant;user=phone SIP/2.0
    Via: SIP/2.0/TCP Mediant:5068;branch=z9hG4bKac1657277504;alias
    Max-Forwards: 70
    From: "TPSA 12" <sip:221111111@switch;user=phone>;tag=1c1656521459
    To: <sip:1234@Mediant;user=phone>;epid=DE8F26F104
    Call-ID: 1656462877611201494635@Mediant
    CSeq: 1 CANCEL
    User-Agent: E-SBC/v.6.60A.260.002
    Reason: SIP ;cause=488 ;text="488 Not Acceptable Here"
    Content-Length: 0
    (     sip_stack)(18281     )  Resource SIPMessage deleted - #49
    6d:9h:46m:35s (     sip_stack)(18354     )  New SIPMessage created - #42
    (     sip_stack)(18355     )  Resource SIPMessage deleted - #42
    (      lgr_flow)(18356     )  |       | TransactionUserMngr::ReturnTransactionUser - #1921
    (     sip_stack)(18357     )  SIPCall(#1921) changes state from Disconnected to Idle
    6d:9h:46m:40s (     sip_stack)(18358     )  New SIPMessage created - #47
    (     sip_stack)(18359     )  Resource SIPMessage deleted - #47
    (      lgr_flow)(18360     )  |       | TransactionUserMngr::ReturnTransactionUser - #1922
    (     sip_stack)(18361     )  SIPCall(#1922) changes state from Disconnected to Idle

    Hi,
    On Mediant 1000 E-SBC SBC tab, when set Remote Early Media RTP Behavior to
    Delayed, but also check if the following configuration set correctly:
    SBC Media Security Behavior: SRTP
    PRACK Mode: Optional
    Remote Update Support: Supported Only After Connect
    Remote Re-INVITE:  Supported Only With SDP
    Remote Delayed Offer Support: Not Supported
    Remote REFER Behavior: Handle Locally
    Remote 3xx Behavior: Handle Locally
    Enforce MKI Size: Enforce
    You can refer this
    link
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • VSS Error: "An unexpected error occurred when cleaning up snapshot volumes. Confirm that all snapped volumes are correctly re-synchronized with the original volumes."

    Hi all,
    at a customer’s site I’ve a problem with a fresh installation of Backup Exec 2014. Every backup (full or incremental) always reports the following
    error: “An unexpected error occurred when cleaning up snapshot volumes. Confirm that all snapped volumes are correctly re-synchronized with the original volumes.”.
    It’s not a Backup Exec problem itself, also backups using “Windows Server Backup” failing with the same error.
    On this site I have three servers; the error is only generated for one of them. Here’s a short overview:
    Server1: Windows Server 2012 R2, latest patchlevel, physical machine, Domain Controller and Fileserver. Backup Exec is installed on this machine,
    backup is written directly to SAS tape loader. There error is generated on this server.
    Server2: Windows Server 2008 R2, latest patchlevel, virtual machine, running on Citrix Xen Server 6.2. Used for remote desktop services, no errors
    on this server.
    Server3: Windows Server 2012 R2, latest patchlevel, virtual machine, database server with some SQL Instances, no errors on this server.
    As I said, error is reported only on server1, no matter if it is a full or an incremental backup. During the backup I found the following errors
    is the event log (translated from a german system):
    Event ID: 12293
    Volume Shadow Copy Service error: Error calling a routine on a Shadow Copy Provider. "{89300202-3cec-4981-9171-19f59559e0f2}" an error occured. Routinedetails Error calling Query(). [0x80042302] [hr = 0x80042302, unexpected component error of
    the Volume Shadow Copy Service.
    Process:
    Volume Shadow Copy polling
    Volume Shadow Copy delete
    Context:
       Executioncontext: Coordinator
       Executionkontext: Coordinator
    And
    Event ID: 8193
    Volume Shadow Copy Service error: Unexpected error calling Routine "IVssCoordinator::Query" hr = 0x8004230f, Unexpected error Volume Shadow Copy Service Provider
    Process:
    Volume Shadow Copy delete
    Context:
       Executioncontext: Coordinator
    There are some articles about this error in the knowledge base or web which does not help or do not apply to my environment for example:
    http://www.symantec.com/business/support/index?page=content&id=TECH38338&actp=search&viewlocale=en_US&searchid=1423724381707
    What I already have tried:
    Disabled Antivirus during the whole backup
    Installed latest Service Pack for Backup Exec
    Rebooted the server
    vssadmin list writers do not show any errors
    consult eventid.net for other possible solutions
    no limits set for vaa
    Anymore ideas from you guys?
    Best regards,

    Hi Shaon,
    vssadmin list providers gave the following output:
    vssadmin list providers
    vssadmin 1.1 - Verwaltungsbefehlszeilenprogramm des Volumeschattenkopie-Dienstes
    (C) Copyright 2001-2013 Microsoft Corp.
    Anbietername: "Microsoft File Share Shadow Copy provider"
       Anbietertyp: Dateifreigabe
       Anbieterkennung: {89300202-3cec-4981-9171-19f59559e0f2}
       Version: 1.0.0.1
    Anbietername: "Microsoft Software Shadow Copy provider 1.0"
       Anbietertyp: System
       Anbieterkennung: {b5946137-7b9f-4925-af80-51abd60b20d5}
       Version: 1.0.0.7
    Unfortunately theres not Symantec VSS Provider listed.
    Best regards,
    Christoph

  • Need confirmation that my rtsp streaming settings for the WVC54GCA are correct

    So I recently set up the WVC54GCA for remote viewing over the internet. I use Verizon DSL with the Westell Versalink Gateway 327W, with the latest firmware (4.4.3) I was able to forward an alternate HTTP port (1025) enabling both TCP/UDP to my cams static IP. I was also able to forward the RTSP port (554) enabling both TCP/UDP to my cam's static IP. My problem is that my router will not forward any more ports, other than 1025 and 554.
    There is a setting on the camera for RTP data port (listed as port 5000) and I cannot forward port 5000. I have tried changing the cam setting to a bunch of different ports other than 5000 (6881, 1024, 1900, etc.) but no matter what I try, none of the other ports can be opened through my router. It appears to work via the routers firmware (i.e. it looks just like the setting for 1025 and 554, which do forward) but when I check the port using canyouseeme.org or GRC the port is listed as closed or stealthed.
    I am able to view the cam from my office at rtsp://camname:554/xxxxx using Quicktime or Realplayer.  However, neither my phone nore my buddies can connect.
    My question, since I can view the mobile streaming feed outside of my LAN using Realplayer or Quicktime, is "Am I configured properly for mobile (rtsp) streaming?"  Is this a cellphone issue rather then a configuration issue?
    Solved!
    Go to Solution.

    Sorry for the above post, I confirmed my cam is properly streaming mobile video.  The video feed was accessed using a Samsung Omnia and Blackberry Curve.
    I am now home and confirm that even though I set up port forwarding for port 5000, that port is listed as closed via canyouseeme.org.  The feed works though, so I'm happy.

  • Determining OS Kernel parameter settings in HP ITANIUM

    Hi
    Can any one help me out to determine the depedant OS kernel parameters settings in HP IA-64 for Oracle database 10.2.0.4 after increasing the processes parameter value in the database level .
    As after increasing the processes parameter to 10000 , we are getting n number of issues related to one or the other OS kernel parameter , so we want to take one single downtime and settle all the issues.
    Regards,
    Phani Kumar P

    Hi
    Acutally we already increased the processes parameter to 10000 by modifying nproc value to 30000 , now we are receiving issues respect to database as below and inturn there is problem in getting connected to the database giving ora-12502 error
    Errors in file /ora/newdump/ACEPROD/udump/aceprod1_ora_4712.trc:
    ORA-00603: ORACLE server session terminated by fatal error
    ORA-27504: IPC error creating OSD context
    ORA-27300: OS system dependent operation:bind failed with status: 227
    ORA-27301: OS failure message: Can't assign requested address
    ORA-27302: failure occurred at: sskgxpcre3
    kkjcre1p: unable to spawn jobq slave process
    Tue Jan 5 18:28:57 2010
    Errors in file /ora/newdump/ACEPROD/bdump/aceprod1_cjq0_20387.trc:
    So now we want to fix the issues by setting optimal values for OS Kernel parameter for NPROC value equals 30000.
    Regards,
    Phani Kumar p
    +919948677317

Maybe you are looking for

  • Receiving Open Interface not picking Inter-Org records from Interface

    Hi, I am trying to receive the inter org transfer through the Receiving Open interface, but the interface not picking the data from the interface tables (RCV_HEADERS_INTERFACE, RCV_TRANSACTION_INTERFACE). I am in 11.5.10.2, all the sources worked fin

  • My rental movie dissapeared

    Hi I rented a movie and it dissapeared It says on my itunes account that I have purchased it but I cannot find it anywhere!!! I was watching it while it was downloading can anyone help very disgruntled!!! I was downloading it on PC through windows 8

  • Create a playable dvd from movie file

    can anyone suggest any good free software for turning video files (.avi .mpg etc) into a dvd playable on a dvd player?

  • Creedit check on number of days

    hi, how can i configure credit check on basis of only payment terms(i.e number of days) like if payment terms is 10 days and payment not received from customer next sales order should get blocked automatically. thanks

  • Add Image in PDF with Alive PDF

    Hi community, i need help to add a image in PDF with Alive PDF. I try it so: [Embed(source="bilder/PDFLogo.png", mimeType="application/octet-stream" )] protected var PDFLogos:Class; printPDF.addImageStream(new PDFLogos() as ByteArray,15,5,190,0); But