Magento 2.4.1アーカイブをローカルコンピューター(Lubuntu 18.04.5)にインストールします
Nov 30 2020
以下のリンクをたどりました。
https://devdocs.magento.com/guides/v2.4/install-gde/prereq/zip_install.html
1つのユーザー権限を設定しました。
だが...
magentoのルートフォルダに「sudocomposerinstall」と入力したとき。
$sudo composer install
Do not run Composer as root/super user! See https://getcomposer.org/root for details
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Nothing to install or update
Package container-interop/container-interop is abandoned, you should avoid using it. Use psr/container instead.
Package phpunit/php-token-stream is abandoned, you should avoid using it. No replacement was suggested.
Package sebastian/finder-facade is abandoned, you should avoid using it. No replacement was suggested.
Generating autoload files
81 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
PHP CodeSniffer Config installed_paths set to ../../magento/magento-coding-standard,../../phpcompatibility/php-compatibility
回答
1 fmsthird Nov 30 2020 at 23:02
よくわかりませんが、これでうまくいきます。
すべてのcomposerパッケージとelasticsearchをインストールしたら、Magentoのインストールコマンドに進むことができます。これを確認することもできます。
bin/magento setup:install \
--base-url=http://localhost/magento2ce \
--db-host=localhost \
--db-name=magento \
--db-user=magento \
--db-password=magento \
--admin-firstname=admin \
--admin-lastname=admin \
[email protected] \
--admin-user=admin \
--admin-password=admin123 \
--language=en_US \
--currency=USD \
--timezone=America/Chicago \
--use-rewrites=1 \
--search-engine=elasticsearch7 \
--elasticsearch-host=localhost \
--elasticsearch-port=9200
インストール後にcssおよびjsエラーが発生した場合は、upgradeコマンドとstatic-contentdeployコマンドを実行するだけです。