General :: Unable To Locate Various Man Pages On Fedora (socket ,bind,signal)?

Feb 23, 2011

I did check the manpath and the files located there.just seems that some pages are missing.

View 8 Replies


ADVERTISEMENT

Fedora Networking :: Root Can Not Bind Socket On Lower Ports (<1024)?

May 9, 2010

I am encountering a wierd problem in FC12. When I try to lunch a program that listens to a lower port such as 80 or any one that is less than 1024, I always get "Permission denied" error message (I am running it as root!).Then I try starting httpd service daemon that listens to 80, no errors, the daemon started and listend to 80.PS: I checked selinux, it has been disabled.Do you have any knowledge on this case? BTW, the kernel version is:2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 i686 i386 GNU/Linux

View 5 Replies View Related

Fedora Servers :: OpenVPN - Socket Bind Failed On Local Address

May 4, 2011

I finally got the certs to configure:
openvpn --config server.conf
Tue May 3 17:26:27 2011 OpenVPN 2.1.1 i686-redhat-linux-gnu [SSL] [LZO2] [EPOLL] [PKCS11] built on Jan 5 2010
Tue May 3 17:26:27 2011 NOTE: OpenVPN 2.1 requires '--script-security 2' or higher to call user-defined scripts or executables
Tue May 3 17:26:27 2011 Diffie-Hellman initialized with 1024 bit key
Tue May 3 17:26:27 2011 TLS-Auth MTU parms [ L:1542 D:138 EF:38 EB:0 ET:0 EL:0 ]
Tue May 3 17:26:27 2011 ROUTE default_gateway=192.168.122.1
Tue May 3 17:26:27 2011 TUN/TAP device tun0 opened
Tue May 3 17:26:27 2011 TUN/TAP TX queue length set to 100
Tue May 3 17:26:27 2011 /sbin/ip link set dev tun0 up mtu 1500
Tue May 3 17:26:27 2011 /sbin/ip addr add dev tun0 local 10.8.0.1 peer 10.8.0.2
Tue May 3 17:26:27 2011 /sbin/ip route add 10.8.0.0/24 via 10.8.0.2
Tue May 3 17:26:27 2011 Data Channel MTU parms [ L:1542 D:1450 EF:42 EB:135 ET:0 EL:0 AF:3/1 ]
Tue May 3 17:26:27 2011 Socket Buffers: R=[114688->131072] S=[114688->131072]
Tue May 3 17:26:27 2011 UDPv4 link local (bound): [undef]:1194
Tue May 3 17:26:27 2011 UDPv4 link remote: [undef]
Tue May 3 17:26:27 2011 MULTI: multi_init called, r=256 v=256
Tue May 3 17:26:27 2011 IFCONFIG POOL: base=10.8.0.4 size=62
Tue May 3 17:26:27 2011 IFCONFIG POOL LIST
Tue May 3 17:26:27 2011 Initialization Sequence Completed

But openvpn still won't start; where to go from here.
Tue May 3 17:54:25 2011 TCP/UDP: Socket bind failed on local address 192.168.122.3:1194: Address already in use
Tue May 3 17:54:25 2011 Exiting

View 3 Replies View Related

Programming :: Name A Socket By Bind?

Oct 20, 2010

How does bind system call names a socket.Code:bind(server_sockfd, (struct sockaddr *)&server_address, server_len);I see use of bind in majority of programms as above.But any of the arguments is not the name of socket.

View 1 Replies View Related

General :: Install Vmware Player 3.0 - Unable To Locate Kernel File Location In Fedora 14

Feb 1, 2011

I was trying to install vmware player 3.0 and it prompt that it require the kernel kernel-2.6.35.6-45.fc14.i686 to be compile before it start.

Quote:

Kernel headers for version 2.6.35.6-45.fc14.i686 were not found. If you

I try following but unable to find.

Code:

Nothing to do

Code:

Code:

Then I try to map to the file, but not working.

View 3 Replies View Related

General :: Haproxy - "cannot Bind To Socket"

Jun 17, 2010

I am using haproxy for the first time. I downloaded the latest version 1.4.7 and then unpacked it.then opened the terminal and wrote the command $make -f Makefile.bsd REGEX=pcre DEBUG= COPTS.generic="-Os -fomit-frame-pointer -mgnu" After which an executable haproxy file was created which I copied to /usr/local/sbin.
then i wrote $sudo make install then I make a configuration file in /etc/haproxy.cfg which is as follows

[Code]....

But it's not working it is various kind of errors intially it was showing "cannot bind to socket" so tried changing the port number but didn't help I also used command like $sudo sysctl net.ipv4.ip_nonlocal_bind=1

View 4 Replies View Related

Networking :: Can't Bind Send Socket: Address Already In Use

Feb 23, 2009

I am currently trying to get a B.A.T.M.A.N mesh network up and running. the thing uses UDP port 4305 for broadcasting to nearby nodes and it seems this port is closed or used by something else.

now i have tried to open this port with commands like

Code:

iptables -A INPUT -p udp --dport 4305 -j ACCEPT
iptables -A OUTPUT -p udp --dport 4305 -j ACCEPT

it still gives me the same error saying the socket cannot connect.any way for me to scan that udp port, see what is blocking it and open the thing up ?

View 4 Replies View Related

Networking :: Raw SCTP Socket Cannot Bind With Port?

Jul 26, 2010

If I open a raw SCTP socket, am I able to bind to a specific port? (I only want to see SCTP packets from a particular IP address AND port.) Or, any raw SCTP socket, regardless of port binding , will get all SCTP packets received by the OS from that IP address? The port doesn't matter and is ignored.

View 1 Replies View Related

Programming :: Bind A PF_PACKET Socket To A Specific Port Number?

Sep 26, 2010

I am trying to create a socket to listen for a bootp response so I am using a PF_PACKET socket so that I get the response based on my mac. My problem is that I don't want to hear all traffic (as I do now) so would like to use a specific port number and bind to it.

View 1 Replies View Related

Programming :: Bind The Listening Socket To A Paricular Ip Address And Port?

Jun 26, 2011

I am learning network prgramming in linux in c,and try to build a server and in this server I want to bind the listening socket to a paricular Ip address and port.Bind function is showing error,I did not want to use wild card. Here is the code.

#include<stdio.h>
#include<sys/socket.h>
#include<strings.h>
#include<netinet/in.h>
#include<arpa/inet.h>
#include<string.h>

[Code]...

View 2 Replies View Related

Programming :: User Mode Permission Denied To Bind To Socket?

May 3, 2011

In user mode [non-root] linux machine, tried to bind a socket by using a"ioctl(iInterfaceSocket, SIOCSIFADDR, &stCommand)". I am getting error 13 -> Permission denied because of user mode. If change from usermode to kernel mode everything works fine.I need to bind the socket in user mode only, please suggest solution for the abovewhile explaining the above,

View 2 Replies View Related

Fedora Hardware :: Unable To Locate IOAPIC For GSI ?

Dec 16, 2010

After installing Fedora 14, following error messages appear at boot:

Code:

View 6 Replies View Related

General :: Unable To Locate 10APIC For GSI 6,13,8,12,1

May 25, 2011

I am using Fedora on a system i just installed it on, i just got a new HP monitor and hooked it up, now it won't work. I keep getting AN ERROR: unable to locate 10APIC for GSI 6,13,8,12,1......WHEN THE SYSTEM BOOTS UP.

View 1 Replies View Related

Fedora :: Unable To Locate Recently Installed Aria2?

Jul 16, 2010

I did recently install aria2 and everything installed smoothly. but i am not able to locate it. I know it will be in the applications->internet but its not there.

View 7 Replies View Related

Networking :: Unable To Locate Eth0 With Ifconfig In Fedora 12 ?

Apr 26, 2010

I've got a vmware install of Fedora 12 running as a server. This install has the /etc/sysconfig/network-scripts/ifcfg-eth0 file configured with the proper info and the service has been restarted. When I run ifconfig I only get the loopback interface, when I run ifconfig -a I can get the eth0, but without the pre-configured ip address. When I enter ifconfig eth0 up I can activate the interface, but without the afore mentioned ip address. I need to be able to yum ssh, install it, and run it with rsa keys. Can do none of this without an interface obviously.

View 3 Replies View Related

General :: ERROR - Unable To Locate IOAPIC For GSI

Nov 16, 2010

As the system boots up, these messages show up:

View 2 Replies View Related

General :: Locate Command - Unable To Work

Oct 5, 2010

Code:

nnjond@nnjond-den:/$ cd /media/disk/Dual_Data/
nnjond@nnjond-den:/media/disk/Dual_Data$ ls
07_Magna_DOWNLOADS 21_TEMPS Peleas.htm
08_Self-Improvement 22_Desktop Pelleas.odt

[code]....

View 6 Replies View Related

Fedora :: Acroread Unable To Locate Theme Engine In Path

Oct 20, 2009

I installed acroread on my 64-bit Fedora 11 and when I try to run it, I receice the message,

Quote:

HTML Code:

Quote:

View 3 Replies View Related

Fedora Networking :: Vpnc / Getting Error Unable To Connect, Socket Is Unavailable?

Aug 3, 2010

I am having problems accessing my work desktop through my home computer running Fedora 13. I am able to remote into work through MAC and Windows XP. I loaded vpnc and was able to connect to the concentrator. I also able to ping it too. I cannot connect to my desktop using rdesktop. I get error message �Unable to connect, socket is unavailable. I cannot ping to the desktop.

View 2 Replies View Related

General :: Unable To Install Bind In RedHat 5.6

Mar 30, 2011

I have installated and configured Bind. But when I restart the named service, I am getting the following error.

31 14:29:16 Server avahi-daemon[2440]: Server startup complete. Host name is Server.local. Local service cookie is 1560939195.
Mar 31 14:29:46 Server named: /etc/named.conf:3: change directory to '/var/lib/named' failed: file not found
Mar 31 14:29:46 Server named:
Mar 31 14:29:46 Server named: /etc/named.conf:3: parsing failed
Mar 31 14:42:34 Server named: /etc/named.conf:3: change directory to '/var/lib/named' failed: file not found
Mar 31 14:42:34 Server named:
Mar 31 14:42:34 Server named: /etc/named.conf:3: parsing failed .....

I have configured forward and reverse zone.

View 4 Replies View Related

Fedora :: Gpodder Missing Dependencies - Unable To Locate Packages In F13 Repo

Jun 15, 2010

Code:

Missing components:

Is there a package that I can install that will satisfy this dependency? I am unable to locate anything other than the source here and here, but I'm also unsure if this is even the right package or if source this old is what gopdder is asking for. I'm looking for a package.

View 5 Replies View Related

Fedora :: KVM Not Working On FC10 - Unable To Complete Install: 'socket Closed Unexpectedly'

Dec 9, 2009

While creating a new VM for Win2K, I guet the following error when I try to "Finish":

Code:

Unable to complete install '<class 'libvirt.libvirtError'> socket closed unexpectedly
Traceback (most recent call last):
File "/usr/share/virt-manager/virtManager/create.py", line 717, in do_install
dom = guest.start_install(False, meter = meter)

[code]....

This looks like a SELinux issue, since I do get a warning: SELinux is preventing qemu (qemu_t) "search" to / (fusefs_t). I'm attaching the complete SELinux Alert.

View 2 Replies View Related

Ubuntu :: VLC Not Starting - Main Interface Error: Socket Bind Error (Permission Denied)

Oct 17, 2010

I tried removing it and installing again but I still get the same code in the terminal:

[Code]....

View 3 Replies View Related

OpenSUSE Network :: Connecting To FTP Server - Error "could Not Bind Listening IPv6 Socket"

Aug 16, 2010

I am running vsftp on one of my systems and when trying to connect to it it errors out with this: vendion@Loki:~> ftp 192.168.1.100 Connected to 192.168.1.100. 500 OOPS: could not bind listening IPv6 socket

I have tried stopping the firewall and even disabling IPv6 nothing changed, any clues as to what is going on?

View 5 Replies View Related

General :: Unable To Install The Bind* And Cach* Pakages For Configuring DNS?

Aug 7, 2010

I have problem that I am unable to install the bind* and cach* pakages for configuring DNS.I am using RHEL 5.4. I have tried using both yum & rpm, but still the same. The error is listed below (when i execute the command:#yum install bind* cach* -y): warning: rpmts_HdrFromFdno: Header V3 DSA signature: NOKEY,key ID 37017186 Public key for caching-nameserver-9.3.6-4.P1.e15.i386.rpm is not installed.

View 1 Replies View Related

Fedora :: Apache Not Parsing Php Pages / Trying To Run Php Script In Browser Its Not Opening Php Pages?

Feb 19, 2010

I have a Cent OS 5.4 32 bit final installed in my dedicated server.

I used to run lighttpd with php in my server until now and all was fine.But yesterday I changed my website which needs apache to run. So installed apache using yum install httpd command.

Then I added the virtual host name of my domain in webmin panel but when i try to run my php script in browser then its not opening php pages.

Instead it downloads php files like index.php when i open in browser.So I guess apache is not able to compile and run php pages. Only html pages are opening right now..

View 2 Replies View Related

General :: Socket Programming - Feed Some Words One By One To The Socket

Jul 6, 2010

i'm writing a simple program of client socket program. Here below is the code sample which i'm writing...

Code:
//tcp_client.c
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include<string.h>
#include<stdlib.h>
[Code].....

the above code works fine.if we copmile and run ./a.exe 192.xx.xx.xxx 1111 and press enter it works fine..everytime it asks "Please enter the message: " and if give that will be displayed in server. but my problem is i dont want to print everytime "Please enter the message: " i just want to feed some words one by one to the socket.

View 4 Replies View Related

General :: Man Pages Not Displayed / Saying Formatting Pages And Then It Is Displaying Blank Page?

Sep 9, 2009

when i input man <cmd>.....it's saying formatting pages....n then it is displaying blank page.

View 6 Replies View Related

General :: Socket Error / Socket 31: 0x36?

Sep 15, 2009

We are seeing recv err on socket 31: 0x36. What could be meaning of the error?.

View 1 Replies View Related

Fedora Servers :: Getting Error Message When Trying To Connect To Vncserver 'unable Connect To Socket: No Route To Host (113)'

Apr 26, 2011

I install and configure the vncserver following and reading 1000papers, but all of this present the same problem; when i try to connect to my vncserver,recive this mesage: unable connect to socket: No route to host (113) The OS version is Fedora Core 14 and tigervnc-server i try different solutions including:Allow TCP connection modifing files /etc/gdm/custom.conf and /usr/share/gdm/gdm.chemas Disable SELinux removing iptables Here follow the vncserver configuration:

[code].....

The ip address of the vncserver is correct because i can do ssh on it. Where or what can i do?

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved