ここの初心者。
次のインストールガイドに従って、UbuntuにMISPをインストールしようとしました:INSTALL.ubuntu1804.txt
この指示に関しては:
# Once done, install CakeResque along with its dependencies if you intend to use the built in background jobs:
cd /var/www/MISP/app
sudo -u www-data php composer.phar require kamisama/cake-resque:4.1.2
私はこれを得た:
Cannot create cache directory /home/akatiubuntutest/.composer/cache/repo/https---packagist.org/, or directory is not writable. Proceeding without cache
Cannot create cache directory /home/akatiubuntutest/.composer/cache/files/, or directory is not writable. Proceeding without cache
./composer.json has been updated
Cannot create cache directory /home/akatiubuntutest/.composer/cache/repo/https---packagist.org/, or directory is not writable. Proceeding without cache
Cannot create cache directory /home/akatiubuntutest/.composer/cache/files/, or directory is not writable. Proceeding without cache
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing monolog/monolog (1.23.0)
Downloading: 65%^C
私はここで解決策を試しましたキャッシュディレクトリを作成できません!composerでlaravelプロジェクトを作成するときにこれを解決するのに役立ちます:
sudo chown -R <user> /home/<user>/.composer/cache/repo/https---packagist.org
しかし(まあ、論理的には、まだ作成されていないので)私はこれを得ました:
chown: cannot access '/home/<user>/.composer/cache/repo/https---packagist.org/': No such file or directory
私はすでにPHPと依存関係をインストールしました:
# Install PHP and dependencies
sudo apt-get install libapache2-mod-php php php-cli php-gnupg php-dev php-json php-mysql php-opcache php-readline php-redis php-xml php-mbstring
今、私が何をしたかがわからない。
~/.composer
、所有者root
など)のアクセス許可エラーの可能性があります。実行sudo chown -R $USER. ~
して、ホームディレクトリ内のすべてのものが自分のものであることを確認してください。