Server :: VNC Over Xinetd Doesn't Starts Vncserver
Nov 26, 2010
in Debian Lenny, using TightVNC 1.3.9 I can setup a VNC server manually by using
Code:
vncserver -query localhost -once -geometry 1024x768 -depth 16 :1
But then, as I have read is a better option, I use xinetd with the following configuration:
Code:
service vnc-1024x768x16
{
protocol = tcp
socket_type = stream
wait = no
[Code].....
In fact, I was considering that the problem was with xinetd, but I have other services setted up with it (telnet & ftp for example) and I can use them correctly.
So now I'm lost with this, what else am I not considering with VNC service through xinetd? Where can I find logs or useful information to get a clue about this problems?
View 11 Replies
ADVERTISEMENT
Feb 25, 2011
Hi all,
how can I make vncserver starts on boot?
Realvnc was installed by "apt-get install vnc-server" command.
There in NO start-stop script in /etc/init.d/ (is it ok? ), so I can't use update-rc.d. When placing
vncserver
or
/bin/bash -c "cd /root/ && vncserver :1" 2> /tmp/vncstart &
in rc.local it starts nothing but "vncpasswd //.vnc/passwd" (and YES, there is password in /root/.vnc/passwd)
Please, help!
View 3 Replies
View Related
Apr 29, 2011
dear, in centos / fedora, I can config to start a permanent vnc session by setting the /etc/sysconfig/vncserver file when the system starts. Is there any similar configuration in opensuse which give me a permanent session?
View 6 Replies
View Related
Apr 24, 2009
I installed Subversion and xinetd and added Subversion as a service to xinetd.conf as instructed at http://www.codeandcoffee.com/2007/06...rver-on-linux/
I restarted the xinetd service using /sbin/service. however, Subversion does not end up being listed in /etc/xinetd.d nor does it seem to be running and occupying the port altogether.
View 2 Replies
View Related
Sep 5, 2010
trying to configure a Centos 5.5 server (simple file server with DHCP and DNS relay). I configured and tested the config (by 'service dnsmasq configtest') of dnsmasq and I got the message 'dnsdomain:host unknown (translation of the real message : hte inconnu) and I didn't find where I could define this host ! The hostname of the server is well defined and I can see it from all Windows PC's on the LAN. dnsmasq starts (with hte same message as in configtest) but when querying DNS from PC's te.g. trying to surf the Internet), I don't get replies (3 DNS servers are also well defined and operational).
View 2 Replies
View Related
Mar 12, 2010
I can connect to vncserver just fine, but if i fire up x0vncserver for some sharing, the viewer will not connect:
[me@mycomp .vnc]$ x0vncserver
Fri Mar 12 13:36:45 2010
main: XTest extension present - version 2.2
main: Listening on port 5900
[code]....
View 2 Replies
View Related
Aug 21, 2010
I recently installed Fedora 13 on VMware 7 environment without X window. sshd did work fine, but when I tried to put it into xinetd, it doesn't work any more. Here is what I have done so far :
I stopped sshd. #service sshd stop
and I configured xinetd.conf like below.
Quote:
#
# This is the master xinetd configuration file. Settings in the
# default section will be inherited by all service configurations
# unless explicitly overridden in the service configuration. See
# xinetd.conf in the man pages for a more detailed explanation of
# these attributes.
[Code]....
I don't know what I did wrong with them. I configured xinetd.conf, and I made service configuration file 'ssh' in /etc/xinetd.d, and I restarted xinetd.
What am I supposed to do to make a life on my sshd within xinetd ?
View 1 Replies
View Related
Sep 30, 2010
I'm going through strange symptom with my linux.
When I type
Code: service xinetd [start|restart|stop]
There is no responses or messages at all. Even when I tried some meaningless argument, such as
Code:service xinetd sdfsdfsdg , it just doesn't work.
I checked that xinetd is installed by using the command
Code: rpm -qv xinetd
Also I do not see the error message "Unrecognized service" when I type the commands.
Here's what I see when I type the command.
Code:
View 1 Replies
View Related
Apr 28, 2009
If i run /usr/bin/foo through xinetd and have /etc/xinetd.d/foo conf file something like:
1 service foo
2 {
3 port = 3691
4 socket_type = stream
5 protocol = tcp
6 wait = no
7 user = www-data
8 server = /usr/bin/foo
9 server_args = -x
10 }
Is /usr/bin/foo supposed to be listed in the list of all processes on that machine (ps aux)? i added the conf file, bouced xinetd daemon via /sbin/service, yet foo does not seem to be running. the xinetd doc online seems pretty incomplete.
View 10 Replies
View Related
Jun 26, 2011
I have a small stats program that I am using to get some sys stats. I am trying to launch this program on a particular port, using the xinetd system deamon. Here is what I am doing ...
[Code]///
View 1 Replies
View Related
Nov 24, 2009
I'm running VNC Server on CentOS5 on a brand new installation, this is for some of my students to use specific software via VNC on their machines from home that they otherwise don't have access to on their Windows machines. This has been working fine on our previous server for a few years but the hardware is now outdated so I have upgraded and put a fresh install of CentOS 5 on. This works fine for about 24 hours and then eventually one of the session ends up freezing where the user then can see everything on their session, the cursor can move but they cant click a single thing.
View 1 Replies
View Related
Jan 26, 2011
I am trying to configure SNMP server using xinetd on red hat. I am using non-standard port for it. My connection to server fails. I see the following log messages in /var/log:
Jan 26 17:23:31 [userid] xinetd[15023]: START: my-snmp pid=15047 from=192.128.11.21
Jan 26 17:23:31 [userid] xinetd[15023]: EXIT: my-snmp status=1 pid=15047 duration=0(sec)
Jan 26 17:23:32 [userid] xinetd[15023]: START: my-snmp pid=15050 from=192.128.11.21
Jan 26 17:23:32 [userid] xinetd[15023]: EXIT: my-snmp status=1 pid=15050 duration=0(sec)
can anybody help to point out what is wrong in my config?
[Code]...
View 1 Replies
View Related
Jul 18, 2009
yesterday I installed my first CentOS system. Before I was always using Debian for my servers. When I configured my vsftpd I was just wondering how to setup xinetd or inetd for listening on ports and starting vsftpd. I found /etc/xinetd.d. But there is no xinetd installed by default. Why? Shall I start all my services in standalone mode? What is the concept of CentOS in this issue?
View 5 Replies
View Related
Jun 3, 2010
When I start the vncserver process, I get a message saying "Starting VNC server: no displays configured." I edited the /root/.vnc/xstartup file and changed twm & to say "gnome-session &" (Without quotes). Not sure why I am still seeing this error. It's CentOS 5.4.
View 1 Replies
View Related
Apr 14, 2011
I have a java server console program that I have configured xinetd to start when connection comes in on a given port and then the program runs in an infinite loop receiving inputstream from telephone exchanges. The thing is, when a new chunk of stream comes from the exchange xinetd forks a new process each time. I tried setting the wait parameter to yes and restarted the deamon, but no success. How can I stop this behavior and have the deamon just direct the stream to the process already running? Am I missing something in my config or is it just incorrect?
My config is as follow:
defaults
{
instances = 60
log_type = SYSLOG authpriv
log_on_success = HOST PID
log_on_failure = HOST
cps = 50 10
}
includedir /etc/xinetd.d
And then my actual config,
service aos_larmar
{
socket_type = stream
protocol = tcp
user = root
type = UNLISTED
wait = yes
instances = 256
server = /home/gunnl/java/start.sh
port = 5204
disable = no
}
My server OS is, Red Hat Enterprise Linux ES release 4 (Nahant Update 7)
View 1 Replies
View Related
Feb 2, 2010
I found a way to capture emails sent from my Drupal installation, and Fakemail seems simple enough. I can follow the tutorial. Since the application Fakemail needs to be running to capture the outgoing emails, it seems like a good candidate for xinetd, yes? I've found a simple config tutorial describing starting the service and what the parameters are for the service-specific configuration files. This got me this far,
Code:
# default: on
# description: This is a script to start the Sandbox app "fakemail"
service fakemail
[code]....
But the service is not starting up. Will someone help me with this config file? Or, recommend another application which uses a similar configuration like Sendmail so I can copy this The Fakemail application/service is started from command line like so,
# fakemail.py --host=localhost --port=10025 --path=[path_to_email_textfile]
View 9 Replies
View Related
Aug 3, 2011
I found a way to capture emails sent from my Drupal installation, and Fakemail seems simple enough.
I can follow the tutorial. Since the application Fakemail needs to be running to capture the outgoing emails, it seems like a good candidate for xinetd, yes?
I've found a simple config tutorial describing starting the service and what the parameters are for the service-specific configuration files. This got me this far,
Code:
# default: on
# description: This is a script to start the Sandbox app "fakemail"
service fakemail
{
[Code]....
But the service is not starting up.
Or, recommend another application which uses a similar configuration like Sendmail so I can copy this
The Fakemail application/service is started from command line like so,
# fakemail.py --host=localhost --port=10025 --path=[path_to_email_textfile]
View 1 Replies
View Related
Aug 13, 2010
Is there a way to limit the time an instance of a service can run? For example, I want to limit all telnet sessions to 30 mins. Users will be automatically logged out after 30 mins.
View 5 Replies
View Related
Jul 21, 2009
I've been reading the RUTE Linux book and they recommend the use of xinetd to run services. However, this book is already a bit outdated, and I was wondering whether this still applies to today's circumstances?
View 4 Replies
View Related
Jan 6, 2010
I have installed bootpd-dd2 and enabled and configured it with xinetd. 1. Made sure that their is a bootptab file and it is configured. 2. Tested the bootpd is working by runing the command /usr/sbin/bootptest cmdbfs .3. tail -f the /var/log/messages and saw the requests from the test.4. rebooted a machine that is configured to pxe boot.there is no messages by bootpd when a request is made.request is picked up by network monitor on a seperate computer on the proper udp port
View 9 Replies
View Related
Jun 5, 2010
My adsl device currently used as Auto eth0 only works when i plug in to the computer. The device doesn't starts automatically as it does in Windows. How can solve this ? Each time I try to connect internet after restarting , I should manually plug the cable to the port.
View 3 Replies
View Related
Mar 25, 2011
I'm installing OpenLDAP on a VSP server, CentOS 5 with Plesk at 1and1. I've tested the slapd.conf file with slaptest and it returns ok. I've tried to start ldap with /sbin/service ldap start and it says it is ok and starts. But if I try to run ldapadd I get an error message saying that it could not contact the ldap server. I check the status with /sbin/service ldap status and it show that it is not running. I can do /sbin/service ldap start, it will say it started and turn around and check the status and it will show that it is not running. Would something in Plesk be killing ldap as soon as it starts? I installed OpenLDAP via yum and have been following directions found in a couple of ldap guides.
View 5 Replies
View Related
Jul 11, 2010
I hope this is in the right spot, and I have searched but haven't been able to find anything to help me out.
I installed GIMP recently, it worked for awhile, but now it will not open up even after the 'Starting GIMP...' appears. That goes and nothing happens. I've tried un-installing and installing via the software centre as well as via the terminal with no success. Will be happy to go through steps again if someone gives me some guidance.
View 5 Replies
View Related
Jun 10, 2009
I upgraded Fedora 10 to Fedora 11 via preupgrade. And now system succesfully boot, but Gnome doesn't starts (i think). There is only black screen and I can only write there.
View 14 Replies
View Related
Aug 9, 2011
When ever I have an issue with our LDAP server (which I was able to fix) we see the following errors in /var/log/messages and it causes problems with our services running on that box, e.g. httpd, nrpe, xinetd, etc. Aug 8 17:44:42 hostname httpd: nss_ldap: failed to bind to LDAP server ldap://serveraddress/: Can't contact LDAP server Aug 8 17:44:42 hostname httpd: nss_ldap: reconnecting to LDAP server (sleeping 64 seconds)... I am only wanting to authenticate SSH and Sudo and not services like httpd, nrpe, xinetd etc.
View 2 Replies
View Related
Jan 12, 2010
I've gotten everything working on my laptop except the webcam. I'm trying to use webkam (from kde repo) but the launcher starts up but the program doesn't start. The driver is "uvcvideo" which loads with no error messages.
Code:
62: USB 00.0: 0000 Unclassified device
[Created at usb.122]
UDI:
/org/freedesktop/Hal/devices/usb_device_c45_6406_noserial_if0_logicaldev_input
Unique ID: MtLc.1biges91ot8
Parent ID: k4bc.cO89g+iefn1
[Code]...
View 8 Replies
View Related
Dec 22, 2010
I have a Ubuntu box (10.10 x64) that i use for XBMC (a media center), everything works fine when i boot up and start adding network shares (the shares are on a Ubuntu 10.04 x64 Server). it doesn't matter if i use NFS or SAMBA to mount the shares, both work. BUT when i reboot i get problems The share mounts come up but to late, XBMC doesn't see the share when it starts.
The thing i see is : When i boot up the lights of my NIC (realtek 8111) are on and flickering, but just a few seconds before the login prompt comes up the lights are off. And then after 15 to 20 seconds everything comes up again, and the shares are mounted, but to late for XBMC (my mediacenter software) i've installed new drivers for my network card (removed r8169 and installed r8168 ) but the problem is still there.
View 3 Replies
View Related
Aug 1, 2011
everything works perfect including reboot and shutdown but not the hibernate or suspend (sleep). Whenever i try to do Suspend, my caps lock starts blinking and the screen goes white
View 2 Replies
View Related
Nov 11, 2010
I've got a computer i'm trying to VNC to.
The problem is that when the computer starts up/reboots it doesn't "Unlock the system keyring"(I think that's what it said).
When I try and attempt to connect to the computer it asks for the VNC password(as per normal) but fails to connect after that.
The reason is that the Ubuntu computer prompts for the user's password to unlock the system(locally).
What I want is to be able to turn on the computer without having to worry about entering the password. I've had it running fine on 8.04 yet the newer version seems to be annoying :s
The system is set to automatically login on startup too.
I've tried this: "delete the keyring folder under /home/XXXX/.gnome2" then setup remote desktop again. But that hasn't worked either. I still have to enter the password to a keyring
View 2 Replies
View Related
Jan 4, 2010
The title pretty much says it all. Once I get past GRUB, the font becomes HUGE and starts off screen. It appears to be center zoomed because I cannot see the login prompt nor anything I type. It's not really an emergency, I installed OpenSSH during the OS installation and can just turn it on and log in over SSH or start up Webmin. It just bugs me that I cannot figure this out.
There is no graphical environment installed, so it's not a video card issue. I tried adding vga=ask as a kernel flag and then tried several options, but to no avail.
View 1 Replies
View Related