Starting apache web server at every reboot cloud-init [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I am pretty new in the cloud-init. I got VM everything is setup and running and I designed the reboot mechanism in the VM to use when VM requires reboot after installing updates. So when I reboot the VM Apache is not working by itself after reboot until I run the start command. Is there a way to make Apache start after every reboot?

problem solved, after reading this two sites
apache-server-doesnt-start-automatically
starting_apache_web_server_at_every_reboot_for_debian_ubuntu_linux
I added this line:
cloud_config['runcmd'].append(['update-rc.d', 'apache2', 'enable'])

Related

what is the linux command to check ram usage for a service? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I am using Ubuntu OS. When I do service --status-all then it lists all services running.
I would like to find RAM usage of the marked tomcat instances. How can I do so? Thanks!
run command top in your terminal you can see the PID and process-name and ram-usage and lots of more stuff

restart syslog in cloudlinux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I've recently modified the /var/log/secure log to test a remote log aggregation tool and that, of course, prevented syslog from further writing to that log.
Question: How do i restart syslog on this CloudLinux box I have?
I'm used to syslog being under /etc/init.d/syslog for other Linux distros and just a simple restart command does it however on CloudLinux syslog is under /etc/logrotate/syslog and, as far as I could read, it's part of a cron job now or something like that.
On CloudLinux 6 (as well as CentOS6) it is /etc/init.d/rsyslog

Bypass the use of Domain in WinEXE [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
is there a way to bypass the use of domain in the winexe command?:
winexe -U domain/username%password //hostname "cmd.exe"
I have two PCs. one is running on windows and the other in linux. These two machines does not have a domain server. Just a simple local area network. Both PCs have administrative accounts
Please help. Thanks
After exploring, I finally resolved the issue by using .\ as a variable for the domainname. the .\ is a default value for the local area network.

Why use the service command in linux? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
What is the difference between
service apache2 restart
and
/etc/init.d/apache2 restart
So basically why is the service command recommended compared to directly invoking the appropriate command?
The service command runs the init scripts in a predictable environment:
service runs a System V init script in as predictable environment as possible, removing most environment variables and with current working directory set to /.
from: http://linux.die.net/man/8/service

Linux CentOs Restart Services [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I have some applications running on a remote CentOs server. I'd want them to restart in case of any unexpected server failures or shutdown or application crashes. Any suggestions on how could i achieve this ?
Just make them "respawn" in inittab. Init can maintain some processes as constantly running. Just set the process you need to continually run to have the action field type of "respawn".
See here.

Resources