Displaying 20 results from an estimated 147 matches for "1521".
Did you mean:
121
2006 Oct 20
4
tcpsnoop problem
...this further. I have tried to doing this using
tcpsnoop from the DTrace toolkit, but without success.
This is what I''ve done.
First I started tcpsnoop, dumping it''s output to a file. like this:
tcpsnoop > /tmp/tcp.snoop out &
Then I started a regular snoop.
snoop port 1521
and waited till I saw a packet pass. eg:
[root at msnvflcs1]# snoop -n hosts port 1521
Loading name file hosts
Using device /dev/ipge (promiscuous mode)
AAADBT.********. -> msnvfllawls1v.******* TCP D=44947 S=1521 Push
Ack=2428689568 Seq=2807055520 Len=10 Win=49640
msnvfllawls1v.******* ->...
2015 Jul 30
0
CEBA-2015:1521 CentOS 7 less FASTTRACK BugFix Update
CentOS Errata and Bugfix Advisory 2015:1521
Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-1521.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
94999b90a6ce0c291b86d07ffbd4400409c783b846b65d5c874667dc8938c492 less-458-9.el7.x86_64.rpm
Source:...
2006 May 02
1
Tests just deleted my production Database!!! PLEASE
...stian
On 02/05/06, Jon <jonfgreg@gmail.com> wrote:
>
> Running the functional tests has deleted the data in my production
> database!!! please help!! Using rails 1.1.1 + Oracle.
>
> This is my database.yml file :
>
> development:
> adapter: oci
> host: "V2:1521/TIM"
> username: salt
> password: oracle1
>
> test:
> adapter: oci
> host: "V2:1521/TIM"
> username: rectest
> password: oracletest
>
> production:
> adapter: oci
> host: "V2:1521/TIM"
> username: salt
> password: oracle1...
2007 Jun 26
0
[LLVMdev] comments on Bug 1521 (Revamp LLVM by-value structure passing)
Hi Rafael,
> 2) add a "byref" mark in the pointer argument.
I think you mean "bycopy" or "byval" here.
> 3) Have llvm-gcc create a copy before calling the function.
Don't forget that the function may be called by code that
was not compiled by LLVM. That's why we have to pay attention
to the ABI! Solution (3) supposes we have control over both
2005 Jan 11
4
Open/Closed Ports
...til I compiled apache
2 and installed it seperately I could connect to the default web
server. I am running oracle on the box and have found that I can't
connect remotely to oracle from another linux box (sql*net works fine
on the CentOS box itself). I think it is because the port (oracle is
on 1521) is blocked. Can anyone give me an idea of where to start?
I've looked at hosts.deny/allow and they both contain no entries and
I can't find anything in /etc that seems to be involved in the
problem.
Thanks,
Wayne
2006 May 02
1
Tests just deleted my production Database!!!
...leted the data in my production
> > > > database!!! please help!! Using rails 1.1.1 + Oracle.
> > > >
> > > > This is my database.yml file :
> > > >
> > > > development:
> > > > adapter: oci
> > > > host: "V2:1521/TIM"
> > > > username: salt
> > > > password: oracle1
> > > >
> > > > test:
> > > > adapter: oci
> > > > host: "V2:1521/TIM"
> > > > username: rectest
> > > > password: oracletest
&g...
2020 Apr 07
1
"failed to setup INTx fd: Operation not permitted" error when using PCI passthrough
...unning Debian 9.11.
I noticed that only one of the four I350 network controllers can be used in
PCI passthrough. The available interfaces are:
*# dpdk-devbind.py --status Network devices using kernel driver
==============================*
*===== 0000:02:00.0 'I350 Gigabit Network Connection 1521' if=eth2 drv=igb
unused=igb_uio,vfio-pci,uio_*
*pci_generic 0000:02:00.1 'I350 Gigabit Network Connection 1521' if=eth3
drv=igb unused=igb_uio,vfio-pci,uio_*
*pci_generic 0000:02:00.2 'I350 Gigabit Network Connection 1521' if=eth0
drv=igb unused=igb_uio,vfio-pci,uio_*
*pci_gener...
2007 Jun 26
1
[LLVMdev] comments on Bug 1521 (Revamp LLVM by-value structure passing)
> > 2) add a "byref" mark in the pointer argument.
>
> I think you mean "bycopy" or "byval" here.
Yes, good catch.
> > 3) Have llvm-gcc create a copy before calling the function.
>
> Don't forget that the function may be called by code that
> was not compiled by LLVM. That's why we have to pay attention
> to the ABI! Solution
2005 Jul 08
0
Exception flag set on 'UniCall/2-1', but no exception handler
Hi
When I make a call from the outside to asterisk and the call is asnwered,
all is OK, but when I make a call from the outside to asterisk and hangup
before the call is answered, you got this WARNING in the console:
Jul 6 19:33:08 WARNING[10037]: channel.c:1521 ast_read: Exception flag set
on 'UniCall/2-1', but no exception handler
Jul 6 19:33:08 WARNING[10037]: channel.c:1521 ast_read: Exception flag set
on 'UniCall/2-1', but no exception handler
.
.
.
Jul 6 19:33:08 WARNING[10037]: channel.c:1521 ast_read: Exception flag set
on 'Un...
2007 Mar 05
1
RJDBC
...onn <- dbConnect(drv, "jdbc:mysql://localhost:3306/bd", "user", "password")
//Oracle
drv <-
JDBC("oracle.jdbc.driver.OracleDriver","C:\\Temporal\\classes12.jar","'")
conn <- dbConnect(drv,"jdbc:oracle:thin:@192.168.1.70:1521:SDS22","user","password")
R always returns for oracle
"Error en .local(drv, ...) : Unable to connect JDBC to jdbc:oracle:thin:@192.168.1.70:1521:SDS22"
and for mysql
"Error en .local(drv, ...) : Unable to connect JDBC to jdbc:mysql://localhost:3306/bd"...
2007 Jun 26
3
[LLVMdev] comments on Bug 1521 (Revamp LLVM by-value structure passing)
This is my current understanding of the current situation and the
proposed solution.
Currently llvm-gcc compiles
-----------------------
struct cpp_num
{
unsigned long high;
unsigned long low;
char unsignedp;
};
void g(unsigned long);
void f(struct cpp_num num) {
g(num.high + 1);
}
----------------------
into
---------------------------------------------------------------------------
2007 Oct 23
3
Ruby on Rails and Oracle
Hello, I''m having a trouble when I try to connect RoR and Oracle.
I believe that it has something to do with database.yml, this is how my
database.yml looks:
development:
adapter: oci
database: 127.0.0.1:1521/XE
username: system
password: y1984nip0359
host: 127.0.0.1
And this is the Error that i get:
-> http://127.0.0.1:3000/blog
OCIError in BlogController#index
ORA-12514: TNS:listener does not currently know of service requested in
connect descriptor
RAILS_ROOT: C:/ruby/bin/blog/script/.....
2005 Jul 06
3
Incoming 800-number over IAX - first few words are cut-off
I have an incoming 800-number over IAX from Teliax and I'm experiencing
the large packet loss on connection.
When a call comes in there is no ring tone and the first few words of
the welcome message are cut off, regardless of the delay I set.
Standard call (not 800-number) coming over IAX with the same provider
works just fine only the tall free number.
So it seems there are some packet loss
2015 Jul 31
0
CentOS-announce Digest, Vol 125, Issue 13
...pecific
than "Re: Contents of CentOS-announce digest..."
Today's Topics:
1. CESA-2015:1526 Important CentOS 7 java-1.6.0-openjdk Security
Update (Johnny Hughes)
2. CESA-2015:1526 Important CentOS 5 java-1.6.0-openjdk Security
Update (Johnny Hughes)
3. CEBA-2015:1521 CentOS 7 less FASTTRACK BugFix Update
(Johnny Hughes)
----------------------------------------------------------------------
Message: 1
Date: Thu, 30 Jul 2015 23:38:45 +0000
From: Johnny Hughes <johnny at centos.org>
To: centos-announce at centos.org
Subject: [CentOS-announce] CESA-2...
2001 May 15
2
hung SSH on Solaris when starting Oracle
...fibber
fibber: /export/home/oracle => fibber: /export/home/oracle => lsnrctl stop
LSNRCTL for Solaris: Version 8.0.5.0.0 - Production on 15-MAY-01 13:17:16
(c) Copyright 1997 Oracle Corporation. All rights reserved.
Connecting to (ADDRESS=(PROTOCOL=TCP)(Host=fibber.library.wisc.edu)(Port=1521))
The command completed successfully
fibber: /export/home/oracle => lsnrctl start
LSNRCTL for Solaris: Version 8.0.5.0.0 - Production on 15-MAY-01 13:17:19
(c) Copyright 1997 Oracle Corporation. All rights reserved.
Starting /oracle/app/oracle/product/8.0.5/bin/tnslsnr: please wait...
TNSLS...
2018 May 22
1
Samba/NT mode and roaming profiles...
...= /srv/samba/profiles
read only = No
create mask = 0600
directory mask = 0700
store dos attributes = Yes
browseable = No
csc policy = disable
root preexec = /etc/samba/createprofile "%u"
In windows the error that appear are errors 1521 and 1511; the latter
seems a consequence of the former.
1521 also specify:
The network name cannot be found. ('Impossibile trovare il nome della rete.' in italian)
Someone have some clue? Or at least some hint on how to enable selectve
debugging on samba to try to get some info?
Thanks...
2012 Dec 19
0
Oracle listner with port forwarding issue
....1 at 2012-12-19 12:17:22 -0800
OCIError (ORA-12541: TNS:no listener):
In researching this error, it is a result of a misconfigured oracle
listener (I am using port forwarding on port 1522). In database.yml I have
localhost:1522. I am also invoking:
ssh -C -q -f -N -l root -L 1522:74.121.71.3:1521 <http://74.121.70.3:1521>
eesdev.somebody.net <http://eesdev.missiondata.net>
Finally, my $ORACLE_HOME points to the right spot, and PATH=$PATH:/bin
So everything is set up to hit the oracle server through port 1522.
This ORA-12541, the misconfigured oracle listener (I assume on my...
2006 May 02
17
Tests just deleted my production Database!!! PLEASE HELP
Running the functional tests has deleted the data in my production
database!!! please help!! Using rails 1.1.1 + Oracle.
This is my database.yml file :
development:
adapter: oci
host: "V2:1521/TIM"
username: salt
password: oracle1
test:
adapter: oci
host: "V2:1521/TIM"
username: rectest
password: oracletest
production:
adapter: oci
host: "V2:1521/TIM"
username: salt
password: oracle1
How did it happen. It seems impossible
--
Posted via...
2010 May 18
2
get the row sums
> head(en.id.pr)
valid.gene_id b.pred rf.pred svm.pred
1521 2500151211 0 0 0
366 639679745 0 0 0
1965 2502081603 1 1 1
1420 644148030 1 1 1
1565 2500626489 1 1 1
1816 2501711016 1 1 1
> p.pred <- data.frame(en.id.pr, sum=a...
2012 Mar 20
2
Intel igb driver question
Does anyone here know which CentOS release added support for 8086:1521,
some I350 class device? We cannot get it to work under 5.4/igb driver
version 1.3.16-k2. There must have been some major updates since,
5.8 driver is 3.0.6-k2-2 and current is 3.3.6.