Linux controls the sequence of startup of two programs
Source: Internet
Author: User
Linux controls the order in which two programs are started: service1 and service2. service2 depends on service1, that is, it can be started only after service1 is started. if the service1 application occupies a specified tcp port, the following script can perform this operation: echo & quot; service1start... & quot ;...
Linux controls the order in which two programs are started: service1 and service2. service2 depends on service1, that is, it can be started only after service1 is started. if the service1 application occupies a specified tcp port, the following script can perform this operation: echo "service1 start... ". /service1.sh www.2cto.com netstat-tlnp | grep 2098 until ["$? "-Eq" 0 "] do echo" waiting service1 to startup... "sleep 1 www.2cto.com netstat-tlnp | grep 2098 done echo" service1 started. ". /service2.sh echo "service2 started. "2098 indicates the tcp port occupied by service1.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.