ホームページ > 記事 > ウェブフロントエンド > Centos でゴースト ブログを構築する手順を共有する
今回は、centos でゴーストブログを構築する手順を共有します。centos でゴーストブログを構築するための 注意事項 は何ですか?実際の事例を見てみましょう。
1. はじめに
Ghost は、Node.js 上に構築されたオープンソースのブログ プラットフォームであり、ブログのコンテンツはデフォルトで Markdown 構文で記述されます。肥大化した Wordpress を置き換えます。この記事では主に、centos7.3 上にゴーストブログプラットフォームを素早く構築し、yumを使用して mysql と nginx ソフトウェアをインストールする方法を紹介します。
2. インストールmysqlをインストールします
wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpmyum -y install mysql57 -community-release-el7-10.noarch.rpmpasswd opsインストールNginxとNode.jsyum -y install mysql mysql-server
usermod -aG Wheel ops
systemctl enable mysqld.service
systemctl start mysqld.service
mysql -uroot -p # 初期パスワードは空です
mysql> ;
mysql> UPDATE user SET password=password('********') WHERE user='root'; ゴーストは root で実行できません (
https://
docs) .ghost.org/docs/install)
useradd ops
Ghost
sudo yum -y update
sudo yum -y install nginx nodejs
sudoをインストール npm i -g ghost-clisudosudo
ops.ops /var/www/ ghost/
chown
chmod
755 /var/www/ghost/cd /var /www/ghost/ghost install
インストールプロセス中の対話の問題:
https://docs.ghost.org/docs /cli-install#section-prompts
3. ブログを開始します
上記のインストールプロセスを実行した後、自分のブログを開始する方法が次のとおりです:
Nginx を設定します
# cat /etc/nginx/conf.d/jidongdong.cn。 conf
サーバー { proxy_set_header ホスト blog.jidongdong.cn; ログインできます。デフォルトのバックグラウンド管理インターフェイスは次のとおりです: http://[ドメイン名]/ghostsudo systemctl start ghost_jidongdong-cn
JS+H5を使用してWeChatシェイクを実装する方法
Node.jsのhttpsユースケース分析
Node.jsクラスターモジュールの使用の詳細な分析
以上がCentos でゴースト ブログを構築する手順を共有するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。