Year: 2022
-
chmod(): operation not permitted, /vendor/laravel/framework/src/illuminate/filesystem/filesystem.php
Post Views: 16 1. chmod(): operation not permitted, /vendor/laravel/framework/src/illuminate/filesystem/filesystem.php . as shown in Figure 1 2. The reason may be that the git branch is switched, and the code is not merged. But the /vender directory is shared. Re-execute the command: after composer install, no more errors are reported. as shown in Figure 2
-
Post Views: 14 1. When executing the command: yarn run prod, prompt: browserslist caniuse-lite is outdated. Please run npx browserslist@latest –update-db. as shown in Figure 1 2. Execute the command: npx browserslist@latest –update-db , caniuse-lite has been successfully updated, and the target browser has no changes. as shown in Figure 2 3. When executing the command: yarn run prod, an…
-
Post Views: 15 1. When executing the command: composer install, an error is reported: script google\task\composer::cleanup handling the pre-autoload-dump event terminated with an exception. as shown in Figure 1 2. Check /vendor/google/apiclient/readme.md, clean up unused services, there are more than 200 Google API services. Chances are you won’t want them all. To avoid transferring these dependencies in your code, you…
-
Post Views: 19 1. Execute the command: docker exec -t object-fpm composer install -vvv, an error is reported:[RuntimeException]Git was not found in your path, skipping source download. as shown in Figure 1 2. Due to the use of the Alpine base image. Edit Dockerfile , add: apk add –no-cache git . as shown in Figure 2 3. After building the…
-
Post Views: 15 1. Execute the command: docker exec -i object-mysql mysql -uroot -proot object_store < object_store.sql , error: mysql:[Warning]Using a password on the command line interface can be inspect. as shown in Figure 1 2. Enter the mysql container, view the database Object_store, and display all the tables, response: Empty set (0.00 sec). as shown in Figure 2 3.…
-
Post Views: 55 1. When executing the command: docker login, an error is reported: /usr/bin/docker-credential-desktop.exe: Invalid argument error saving credentials: Error storing credentials – err: exit status 1, out: “. as shown in Figure 1 2. Decide to close the current window, reopen Ubuntu, execute the command again, and the automatic login is successful. as shown in Figure 2
-
Post Views: 17 1. When executing the command: docker-compose -f docker-compose.yml up –build –force-recreate, an error: error[startup_object-fpm internal]Load metadata for docker.io/library/php:7.4-fpm-alpine . 2. After pulling the latest code, execute the command again, and report an error: Error Response from Daemon: Error while creating mount source path. as shown in Figure 1 3. Decide in Docker, delete the volumes of the…
-
Post Views: 15 1. Execute the command: Sail Artisan migrate, report an error: chmod(): operation not permitted. as shown in Figure 1 2. Run the following command to reload the file: Sail composer dump-autoload, report an error: in filesystem.php line 207: chmod(): operation not permitted. script @php artisan package:discover –ansi handling the post-autoload-dump event returned with error code 1. as…