Skip to content

Commit d632372

Browse files
authored
Updated chmod permission
Within Linux's chmod system, `+x` grants all users access to execute the file, whereas `u+x` only grants the user who owns the file access to execute it. Provided the user is the one who created the `start.sh` file, there's no reason why this permission change wouldn't cause issues, but it's good to get into the habit of using "least privilege" when assigning permissions, and I know from personal experience that hosting Minecraft servers can be the start of a career in sysadmining.
1 parent 503ae09 commit d632372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/velocity/admin/getting-started/README.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ java -Xms1G -Xmx1G -XX:+UseG1GC -XX:G1HeapRegionSize=4M -XX:+UnlockExperimentalV
5959

6060
Once saved, open a terminal (or log into the machine) if you haven't already, navigate to the
6161
directory where you have placed the Velocity JAR file and the `start.sh` file. Then run
62-
`chmod +x start.sh` and then `./start.sh`. If it worked, you should now receive a console similar to
62+
`chmod u+x start.sh` and then `./start.sh`. If it worked, you should now receive a console similar to
6363
the output in the next section.
6464

6565
## After launch

0 commit comments

Comments
 (0)