execute script at particular time in amazon ec2 linux [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 7 years ago. Improve this question I am newbi in amazon ec2 as well as linux, I am working on pentaho kettle, for starting my job process i m … Read more

GNU screen, tmux, dvtm – none are working as ordinary user on OVH VPS [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 8 years ago. Improve this question I bought cheapest vps for teamspeak hosting and I have strange issues with demonizing it’s process. None of screen tmux and dvtm work … Read more

Starting/Stopping Custom PHP Chat Server Linux Service (CentOS)

I have been trying all night to get this service working properly. I created this script from a template and am very new to bash coding. I wrote a fully functioning chat server in php which runs endlessly, but now want to make it a dedicated service. I want to do this so that it … Read more

Execute a service as a specific user under ubuntu

I’m running a gameserver and want to start it on a screen on system start, but screen is user specific, so I have to run the command as ‘user’. So I wrote this short service script which starts itself as ‘user’: #!/bin/sh #/etc/init.d/gameserver case “$1” in -user) sleep 1 case “$2” in start) echo “Starting … Read more