<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=6031&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] service ssh not running]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=6031</link>
		<description><![CDATA[The most recent posts in [SOLVED] service ssh not running.]]></description>
		<lastBuildDate>Fri, 06 Oct 2023 08:30:58 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] service ssh not running]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44735#p44735</link>
			<description><![CDATA[<p>Hi Lorenzo,</p><div class="quotebox"><blockquote><div><p>you have runit installed</p></div></blockquote></div><p>I installed it when I migrated from debian to beowulf to get <span class="bbc">/sbin/poweroff</span>.<br />At that time, sysvinit-core was to be installed after.<br />Now, I removed the package and the link and it works.</p>]]></description>
			<author><![CDATA[dummy@example.com (the_edge123)]]></author>
			<pubDate>Fri, 06 Oct 2023 08:30:58 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44735#p44735</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] service ssh not running]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44721#p44721</link>
			<description><![CDATA[<p>Hi Fabien,</p><div class="quotebox"><blockquote><div><p>Using service ssh &lt;whatever&gt; does not do anything on daedalus.</p></div></blockquote></div><p>There is no support for runit in the service wrapper, but what you are reporting<br />only happens if<br />* you have runit installed<br />* a runit definition for the service exists for example /etc/sv/ssh<br />* the service is enabled with runit ( /etc/service/ssh link exist )<br />otherwise the service wrapper should work</p><div class="quotebox"><blockquote><div><p>My workaround was doing touch /etc/runit/lsb.runit.sysv .</p></div></blockquote></div><p>I don&#039;t recommend this unless you fully understand what it does: it will run the sysv script even if you have an active instance of the same service already managed with runit; possible side effect are:<br />- crash of the runit instance<br />- you get two instance running (only one is supervised by runit)<br />- the reported status of the service may be inconsistent with the one you get with &#039;sv status&#039;<br />it also can break the upgrade of few packages - I think it was mariadb ..</p><p>The real fix would be to add runit support to the service wrapper, hopefully will happen in this cycle; for the time being I recommend to use the sv command to control services that are managed by runit.</p><p>Lorenzo</p>]]></description>
			<author><![CDATA[dummy@example.com (Lorenzo)]]></author>
			<pubDate>Thu, 05 Oct 2023 21:49:20 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44721#p44721</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] service ssh not running]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44711#p44711</link>
			<description><![CDATA[<p>I checked this on a daedalus live-iso with runit that I made some time ago. (more than a year, I think,) I get slightly different weirdness.</p><p>service tells me that ssh is running. If I try to stop it with &#039;service ssh stop&#039; it tells me that it&#039;s stopped, but then status tells me it&#039;s still running.<br />If I then try &#039;sv stop ssh&#039; it does stop it (according to service) and then I can stop or start it with the service command. i.e. it only fails the first time.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Thu, 05 Oct 2023 18:42:03 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44711#p44711</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] service ssh not running]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44699#p44699</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>Your shell should be /usr/bin/ssh</p></div></blockquote></div><p><span class="bbc">$ which ssh<br />/usr/bin/ssh<br /></span></p>]]></description>
			<author><![CDATA[dummy@example.com (the_edge123)]]></author>
			<pubDate>Thu, 05 Oct 2023 08:31:20 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44699#p44699</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] service ssh not running]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44680#p44680</link>
			<description><![CDATA[<p>Your shell should be /usr/bin/ssh check to see if your shell is running from /usr/local/bin/ssh which is a script that does nothing.</p>]]></description>
			<author><![CDATA[dummy@example.com (LinuxMan)]]></author>
			<pubDate>Wed, 04 Oct 2023 14:32:17 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44680#p44680</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] service ssh not running]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44569#p44569</link>
			<description><![CDATA[<p>Using <span class="bbc">service ssh &lt;whatever&gt;</span> does not do anything on daedalus.<br />The script <span class="bbc">/etc/init.d/ssh</span> stops at line 25&#160; <span class="bbc"> . /lib/lsb/init-functions </span> which stops at line 418&#160; <span class="bbc">for hook in ...&#160; </span> <br />with <span class="bbc">hook=/lib/lsb/init-functions.d/40-runit</span>.<br />I don&#039;t know what this file is doing.<br />My workaround was doing <span class="bbc"> touch /etc/runit/lsb.runit.sysv </span>.<br />HTH<br />-<br />Fabien</p>]]></description>
			<author><![CDATA[dummy@example.com (the_edge123)]]></author>
			<pubDate>Tue, 26 Sep 2023 16:09:26 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44569#p44569</guid>
		</item>
	</channel>
</rss>
