官網部署手冊

2022-03-28 03:23:58 字數 4729 閱讀 9681

備註:此步驟省略

#開始#!/bin/sh

#結束賦予指令碼可執行許可權:

chmod 755 nginx

配置nginx自啟動,並啟動它。

chkconfig  nginx  on

service nginx start

修改配置檔案

vi /usr/local/nginx/conf/nginx.conf

location ~ \.php$ {

root           html;

fastcgi_pass   127.0.0.1:9000;

fastcgi_index  index.php;

#fastcgi_param  script_filename  /scripts$fastcgi_script_name;

fastcgi_param  script_filename  /usr/local/nginx/html$fastcgi_script_name;

include        fastcgi_params;

chkconfig mysqld on

service mysqld start

/usr/bin/mysqladmin -u root password 'new-password'

###注意修改」new-password」為合適的密碼

mysql -uroot -p

enter password:

mysql>grant all privileges on *.*  to  『root』@』%』 identified by 『new-password』 with grant option; 

mysql>grant all privileges on *.* to 『root』@』localhost』 identified by 『new-password』 with grant option;

mysql>flush privileges;

mysql> create database sheying default character set utf8 collate utf8_general_ci;

mysql> use sheying;

mysql> source /root/web6.cn.sql  ###此處注意語句的路徑

mysql> quit

chown -r www:www /usr/local/nginx/html/

//配置資料庫

//線上資料庫

'db_type'               =>      'mysql',// 資料庫型別

'db_host'               =>      'localhost',// 資料庫伺服器位址

'db_name'               =>      'sheying',// 資料庫名稱

'db_user'               =>      'root',// 資料庫使用者名稱

'db_pwd'                =>      'new-password',// 資料庫密碼

'db_prefix'             =>      'pre_',// 資料表字首

'db_charset'    =>      'utf8',// **編碼

'db_port'               =>      '3306',// 資料庫埠

docker官網手冊譯part 1

part 1 get started,part 1 orientation and setup docker概念 docker是開發 管理人員進行開發 部署 執行應用或專案的容器平台。通過linux容器部署應用稱為容器化。容器不是乙個新的事物,但用容器部署應用使其簡單化是新事物。容器化流行原因 靈活...

MySQL5 7官網參考手冊路徑

目錄 1.1關於本手冊 1.2印刷和語法約定 1.3 mysql資料庫管理系統概述 1.4 mysql 5.7中的新功能 1.5 mysql 5.7中新增,棄用或刪除的伺服器和狀態變數和選項 1.6 mysql資訊源 1.7如何報告錯誤或問題 1.8 mysql標準合規性 1.9學分 mysql 軟...

10 10 010 簡介 官網 官網翻譯

netty是 乙個非同步事件驅動的網路應用程式框架,用於快速開發可維護的高效能協議伺服器和客戶端。netty是乙個nio客戶端伺服器框架,可以快速輕鬆地開發協議伺服器和客戶端等網路應用程式。它極大地簡化並簡化了tcp和udp套接字伺服器等網路程式設計。快速簡便 並不意味著最終的應用程式會受到可維護性...