Laravel は、PHP での MVC Web アプリケーションの開発を高速化するために設計されたオープンソースの PHP フレームワークです。この記事では、CentOS および Rhel システムに Laravel5 をインストールする手順を紹介します。
ステップ 1: yum リポジトリをセットアップする
まず、REMI と EPELRPM を追加する必要がありますシステムリポジトリに。これらのリポジトリには更新されたパッケージがあります。オペレーティング システムのバージョンとシステム アーキテクチャに応じて、次のコマンドのいずれかを使用します。
### On CentOS/RHEL - 7 ### # rpm -Uvh http://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm ### On CentOS/RHEL - 6 ### # rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
ステップ 2: Apache、MySQL、PHP のインストール
Apache のインストール
# yum --enablerepo=remi,epel install httpd
MySQL のインストール
# yum --enablerepo=remi,epel install mysql-server # service mysqld start # /usr/bin/mysql_secure_installation
PHP のインストール
# yum --enablerepo=remi,epel install php php-zip php-mysql php-mcrypt php-xml php-mbstring # service httpd restart
ステップ 3: Composer をインストールする
# laravel の依存関係をインストールするには、composer が必要です。したがって、以下のコマンドを使用して、システムにコマンドをダウンロードして使用します。# curl -sS https://getcomposer.org/installer | php # mv composer.phar /usr/bin/composer # chmod +x /usr/bin/composer
# cd /var/www # git clone https://github.com/laravel/laravel.git
# cd /var/www/laravel # composer install
# chown -R apache.apache /var/www/laravel # chmod -R 755 /var/www/laravel # chmod -R 755 /var/www/laravel/storage
# chcon -R -t httpd_sys_rw_content_t /var/www/laravel/storage
# cp .env.example .env
# php artisan key:generate Application key set successfully.
# vim /etc/httpd/conf/httpd.conf
<VirtualHost *:80> ServerName laravel.example.com DocumentRoot /var/www/laravel/public <Directory /var/www/laravel> AllowOverride All </Directory> </VirtualHost>
Apache サービスを再起動し、お気に入りの Web ブラウザを使用して Laravel フレームワークにアクセスし、Web アプリケーションの開発を開始します。
# service httpd restart
Laravel Web サイトに Web ブラウザーでアクセスできるようになりました。
この記事はここで終了しています。さらにエキサイティングなコンテンツについては、PHP 中国語 Web サイトの
PHP ビデオ チュートリアル以上がCentOSとRHELにLaravel5をインストールする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。