Add Launch Script after Lightsail Creation?

0

My lightsail instance needs a launch script, but I can only find documentation on setting those up when first creating the server.

Where does the launch script live on the server? I'd love to just ssh in, edit it, and be done.

baudot
posta 3 anni fa1256 visualizzazioni
5 Risposte
0
Risposta accettata

I did a bit of poking around ... looks like you can just put your startup script in /etc/rc.local and it will run.

Make sure you make /etc/rc.local executable (chmod a+x /etc/rc.local).

profile picture
David G
con risposta 3 anni fa
0

What blueprint are you using?

There are various ways to accomplish a launch script, but it depends on the blueprint.

profile picture
David G
con risposta 3 anni fa
0

I'm using MEAN.

baudot
con risposta 3 anni fa
0

Baudot,

Thanks for using Lightsail!

Here is a doc about launch scripts: https://lightsail.aws.amazon.com/ls/docs/en_us/articles/lightsail-how-to-configure-server-additional-data-shell-script

The doc does not explicitly state this but it is important to note that the launch script is only executed on initial launch of the instance, not on every launch. For that reason there is no way to configure the launch script after the instance is initially created.

If you require software to run on every launch of the instance, you should use the os-dependent initialization software such as 'initd' on linux and startup programs on Windows.

I hope this helps!

Donley

profile pictureAWS
con risposta 3 anni fa
0

David - thanks, that worked.

I had to do few more debugging steps to get my script running properly.

In the end the script ended up looking like:

#!/bin/sh

(
cd /full/directory/path/to/my/app
/full/path/to/init_command 1>/var/log/my_app_name/my_app_name.log 2>&1 &
)

...and that did it.
If anyone else runs into a similar hurdle, hopefully this helps.

baudot
con risposta 3 anni fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande