Centos7.3 automatically starts or executes specified commands when booting

Centos7.3 automatically starts or executes specified commands when booting

In centos7, the permissions of the /etc/rc.d/rc.local file have been reduced and there is no execution permission. You need to add executable permissions to it.

chmod +x /etc/rc.d/rc.local

Then you can add the command you want to start automatically.

vi /etc/rc.d/rc.local

Additional knowledge: centOS7.2 sets the custom script as a service and starts it at boot

When the spring boot jar package is deployed online, it is hoped that it can be set as a service and started at boot. The steps are as follows:

1. Prepare the script (there are many on the Internet, so I won’t write it here)

2. Create a soft link to the /etc/rc.d/init.d directory

ln -s /springboot/biz /etc/rc.d/init.d

Source file (absolute path) Target path (absolute path)

3. Add execution permissions:

chmod +x biz

4. When executing service abc start, if an error is reported:

line 4: exec: java: not found

Then check the script and add the full path of java as follows:

exec /usr/java/jdk1.8.0_20/jre/bin/java -Xms128m -Xmx1024m -jar

5. Execute service biz start again and it starts successfully

6. Set the startup and modify the script. Add the following to the second line:

# chkconfig: 2345 99 99

7. Add startup:

chkconfig --add biz

chkconfig biz on

The above article about how to automatically start or execute specified commands on Centos7.3 at startup is all I want to share with you. I hope it can give you a reference, and I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Automatically load kernel module overlayfs operation at CentOS startup
  • Three methods to modify the hostname of Centos7
  • Detailed explanation of the basic use of centos7 firewall in linux

<<:  Native JS implements a very good-looking counter

>>:  Summary of commonly used SQL statements for creating MySQL tables

Recommend

How to use Dayjs to calculate common dates in Vue

When using vue to develop projects, the front end...

Summary of the use of CSS scope (style splitting)

1. Use of CSS scope (style division) In Vue, make...

Detailed steps to expand LVM disk in Linux

1. Add a hard disk 2. Check the partition status:...

HTML css js implements Tab page sample code

Copy code The code is as follows: <html xmlns=...

How to quickly modify the host attribute of a MySQL user

When you log in to MySQL remotely, the account yo...

js implements random roll call

This article shares the specific code of js to im...

React implementation example using Amap (react-amap)

The PC version of React was refactored to use Ama...

XHTML introductory tutorial: Web page Head and DTD

Although head and DTD will not be displayed on th...

How to change the encoding of MySQL database to utf8mb4

The utf8mb4 encoding is a superset of the utf8 en...

5 ways to migrate Docker containers to other servers

Migration is unavoidable in many cases. Hardware ...

Create an SSL certificate that can be used in nginx and IIS

Table of contents Creating an SSL Certificate 1. ...

How to set process.env.NODE_ENV production environment mode

Before I start, let me emphasize that process.env...

Use Vue3+Vant component to implement App search history function (sample code)

I am currently developing a new app project. This...