similar to: upstart question

Displaying 20 results from an estimated 10000 matches similar to: "upstart question"

2012 Jan 24
0
Question on sys v migrating to upstart
Hi I presently have a line in /etc/inittab (for 5.X based systems) like: v1:2345:respawn:/home/silentm/bin/myfile which runs for any runlevel in 2345. I am looking at migrating that to the new upstart stuff. I can create a file in in /etc/init called myfile.conf and in there have: # /etc/init/myfile.conf start on startup This seems ok... However - my question is how do I stop they myfile
2013 Apr 16
1
inittab - huh what's it good for?
We run a CentOS-5 based hylafax server with external serial modems. We are transitioning to an Asterisk system using IAXmodem running on CentOS-6. On the CentOS-5 system to start the fax modems we added these lines to inittab: # Add fax lines and always ALWAYS run "telinit q" after making a change. fax1:2345:respawn:/usr/sbin/faxgetty ttyS0 fax2:2345:respawn:/usr/sbin/faxgetty ttyS1
2008 Nov 12
0
guest inittab problems
We have several suse 10.3 guests running in paravirtualization, however all the guests boot with the following messages: Loading keymap Couldnt open /dev/tty1 Loading /usr/share/kbd/keymaps/i386/qwerty/us.map.gz failed Loading compose table latin1.add failed Start Unicode mode Couldnt open /dev/tty1 Couldnt open /dev/tty2 Couldnt open /dev/tty3 Couldnt open /dev/tty4 Couldnt open
2009 Oct 09
0
/etc/inittab not loaded properly
hi, im new here. we have servers with centos 4. yesterday one of it crash and cold rebooted. reboot process run well until finally we found that some of /etc/inittab configurations doesn't loaded properly, like no virtual terminal available and svscanboot not executed. i assumed that these configurations not loaded: # Run gettys in standard runlevels 1:2345:respawn:/sbin/mingetty tty1
2010 May 15
1
what''s wrong with my pv domU console? INIT: Id "1" respawning too fast: disabled for 5 minutes
Hi Pasi, if I don''t change the tty to hvc it will stopped on Kernel 2.6.31.13 on i686 (console) localhost login: root Kernel 2.6.31.13 on i686 (console) localhost login: root Kernel 2.6.31.13 on i686 (console) localhost login: root After I change it to hvc0 followed the twiki page the log is Remounting root filesystem in read-write mode: [ OK ] Mounting local filesystems: [ OK
2012 May 30
1
need assist with upstart config problem
I am trying, without success, to create an upstart config file to automatically start and restart an ssh proxy. The command sting that I use in the script has been checked and verified from the shell but it fails in the upstart file. The file contents are: . . . # proxy is used to authenticate smtp submissions # so start it before the postfix service starts start on starting postfix # Take
2008 Jul 18
1
Feedback and help in porting the NUT sysV init script to upstart
hi there, first, kudos to Scott. You guy rock with this revolutionizing (and so logic) idea ;-) next, a personal point of view about the lack of upstream adoption of upstart: I wanted to provide an upstart script for NUT for some time, but never found enough matching example to do so. the embedded scripts only address inittab, and the replacement-initscripts are unreachable (see below) and far
2012 May 31
0
[SOLVED] Re: need assist with upstart config problem
On Wed May 30 17:57:49 EDT 2012, Nataraj wrote: > On Wed, May 30, 2012 17:00, James B. Byrne wrote: >> I am trying, without success, to create an upstart config file to >> automatically start and restart an ssh proxy. The command sting that >> I use in the script has been checked and verified from the shell but >> it fails in the upstart file. >> > The '-f
2012 Dec 07
3
Ubuntu upstart
I cannot find any good example of a unicorn upstart task that works properly for the following: * Upstart will restart if unicorn dies * Can send USR2 signal to unicorn to do a no downtime deploys * Able to stop upstart job, even after a deploy I have tried the following: expect fork respawn setuid www-data chdir /var/www/app/current exec bundle exec unicorn_rails -E production -c
2015 Mar 31
0
upstart CentOS vs upstart Ubuntu is there any difference between them?
I'm moving some server configurations from Ubuntu Server 12.04 to CentOS 6.6. Now I'm working on `/etc/init` script that should be handled by `upstart` at both OS as far as I know. The files on both server are the same and I mean the same at content level and also at path level and permissions level, is the exactly copy from Ubuntu to CentOS. I'm having some issues with upstart at
2013 May 03
2
rsync not running with upstart
Hi all, I need some help by solving a strange problem: Situation: I wrote a scrip that uses rsync to send backups to another server. It does something like: /usr/bin/rsync -azi --numeric-ids --exclude tmp --exclude var/spool/ --delete -e ssh root at 10.0.0.65:/ /storage/volumes/65 The script has a source file that dictates which servers to backup. E.g. several ip address are visited to
2009 Sep 21
0
Clarify TTY and virtual consoles
Hi, I need some help to clarify TTY and virtual consoles. Thanks a lot. 1. I learned that to switch from one TTY to another, one must be at the physical machine. Does the same apply to virtual consoles? 2. My /etc/inittab includes the following. Does that mean there's only one instance of TTY on my CentOS? ... #
2008 Sep 01
10
Unable to xm console in a running domU
Hi list, I am running a virtualized server. Dom0 uses Xen 3.2.1 with Debian Etch and a custom kernel 2.6.21 created by my webhosting company. I install my domU using debootstrap for a Debian Etch with 2.6.18-6-xen-amd64 kernel. Everything works well except the fact that once the VM is started I cannot "xm console" into it. It only works while it is booting and while it is shutting
2013 Oct 21
1
Re: upstart script for virtlockd
Hi Eric, Here is my try to write a quick upstart script for virtlockd. It should be named /etc/init/virtlockd.conf, then : ln -s /lib/init/upstart-job /etc/init.d/virtlockd It seems to work for me : # virtlockd - Locking daemon for libvirt description "virtlockd" start on filesystem and runlevel [2345] stop on starting rc RUNLEVEL=[016] pre-start script test -x
2011 Oct 04
2
Migrating CentOS 5 -> 6: where to put /etc/inittab respawn scripts?
Hello, sorry, for 1 more question on CentOS 5 -> CentOS 6 migration. On my old CentOS 5.7 machine I have the following line: pref:3:respawn:/bin/su -c '/usr/local/pref/pref.pl >/tmp/pref-`date +%a`.txt 2>&1' afarber and this has served me well, I don't want to install anything else like daemontools etc. - to keep my web-server easily reinstallable (or movable to
2009 Nov 18
1
Removing respawning process from inittab w/o killing it
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi list, I need to remove an entry of inittab which is used to (re)spawn a process: mydemon:2345:respawn:/usr/sbin/mydemon >/dev/null 2>&1 So, I would comment out that entry and reload init running ``telinit q''. IIRC, this would lead to the currently running daemon being killed. I don't want to /try/ whether I'm right, as
2015 Jan 30
1
Upstart script for Poolmon
Hi My servers are Ubuntu 14.04 and I'm needing to make a Upstart script for Poolmon. Does someone already made this and could to share with us ? Thanks! -- Thiago henrique
2006 Mar 09
0
If you become the error message: "Host key verification failed". then is this help is for you
Hello, Dom0 = Debian_Base (192.168.0.1) DomU = Debian_SQL (192.168.0.2) DomU = Debian_WEB (192.168.0.3) Debian_Base -> Debian_SQL [OK] Debian_Base -> Debian_WEB [OK] Debian_SQL -> Debian_Base [ERROR] Debian_WEB -> Debian_Base [ERROR] Debian_SQL <-> Debian_WEB [ERROR] [ERROR] = ssh "Host key verification failed" Check your entry in /etc/inittab and check this
2016 Jan 29
0
respawning dead tinc process
Hi Daniel, Yes, thanks and I should have mentioned that I am using pretty much the same thing you suggested on my routers, but for whatever reason couldn?t get that approach working on the linux box in question. Mark, Thanks for the upstart script. I had tried to do the same myself but couldn?t get my upstart script to work right. I was missing the ?-D? flag in my script. Added that and now
2006 Aug 18
3
connecting linux console using serial port (NOW PPP)
Alex, thanks for your soon answer, but in case I want to configure PPP on this server, what files do I have to configure? Can I login in this server using SSHD over a PPP conection? Regards; Israel > Just terminal access -> I want to login in my linux server connecting > through the modem connected in /dev/ttyS0 Not sure if this is complete. Install mgetty if not already present on