亚洲无码福利在线观看视频,国产精品1024免费,视频黄色一区二区三区,夜色福利院在线看视频,日本午夜视频黄,av永久热线在线观看网站,免费一级欧美片在线观看网站,春药高潮抽搐流白浆在线观看 http://www.vanhostingweb.com 分享技術(shù),共同進步 Sat, 29 Jun 2024 12:00:10 +0000 zh-Hans hourly 1 如何在 Ubuntu 上安裝Vendure 22.04 http://www.vanhostingweb.com/5635.html Sat, 29 Jun 2024 12:00:10 +0000 http://www.vanhostingweb.com/?p=5635

介紹

Vendure 是一個開源的無頭商務(wù)框架,允許構(gòu)建由 Node.js、TypeScript 和 GraphQL 提供支持的生產(chǎn)就緒電子商務(wù)應(yīng)用程序。它的工作原理是通過 API 公開所有應(yīng)用程序功能。Vendure 在 GraphQL API 上公開了所有商店前端功能,并且不提供默認的商店前端界面。這提高了開發(fā)人員的靈活性,因為它允許您使用任何前端技術(shù)創(chuàng)建店面。

本文介紹如何在 Ubuntu 22.04 Vultr 服務(wù)器上部署 Vendure。您需要將該框架與 Vultr Object Storage(PostgreSQL 托管數(shù)據(jù)庫)和 Redis? 集成,以構(gòu)建生產(chǎn)就緒型應(yīng)用程序。

先決條件

準備工作:

安裝Node.js

Vendure 需要 Node.js 版本 16.x 或更高版本。按照以下步驟中的說明安裝最新的 Node.js 版本。

  1. 更新服務(wù)器
     $ sudo apt update
  2. 創(chuàng)建目錄keyrings
     $ sudo mkdir -p /etc/apt/keyrings
  3. 下載節(jié)點源 GPG 密鑰并將其添加到服務(wù)器密鑰
     curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
  4. 將Node.js存儲庫添加到源列表中。替換為您想要的版本apt20
     NODE_MAJOR=20
     echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list
  5. 更新服務(wù)器程序包
     $ sudo apt update
  6. 安裝Node.js
     $ sudo apt install nodejs -y
  7. 驗證已安裝的Node.js版本
     $ nodejs --version

    輸出:

     v20.5.1

設(shè)置本地 PostgreSQL 數(shù)據(jù)庫服務(wù)器

要在服務(wù)器上安裝 Vendure,您需要將應(yīng)用程序數(shù)據(jù)臨時保存在本地 PostgreSQL 數(shù)據(jù)庫服務(wù)器上。稍后,您可以先將數(shù)據(jù)遷移到 Vultr Managed Database for MySQL,然后再將應(yīng)用程序部署到生產(chǎn)環(huán)境。如下所述設(shè)置本地數(shù)據(jù)庫。

在 PostgreSQL 上啟用密碼身份驗證

  1. 驗證已安裝的 PostgreSQL 版本
     $ psql --version

    輸出:

     psql (PostgreSQL) 14.16 (Ubuntu 14.16-0ubuntu0.22.04.1)
  2. 根據(jù)您的 PostgreSQL 版本,使用文本編輯器編輯文件,例如pg_hba.confnano
     $ sudo nano /etc/postgresql/14/main/pg_hba.conf
  3. 查找以下配置行
     # "local" is for Unix domain socket connections only
     local   all             all                                     peer
  4. 將身份驗證方法更改為peermd5
     local   all             all                                     md5

    保存并關(guān)閉文件

  5. 重新啟動 PostgreSQL 數(shù)據(jù)庫服務(wù)器
     $ sudo systemctl restart postgresql

創(chuàng)建新的 PostgreSQL 數(shù)據(jù)庫

  1. 登錄PostgreSQL數(shù)據(jù)庫服務(wù)器
     $ sudo -u postgres psql
  2. 創(chuàng)建新數(shù)據(jù)庫
     postgres=# CREATE DATABASE vendure_db;

    輸出:

     CREATE DATABASE
  3. 使用強密碼創(chuàng)建新的數(shù)據(jù)庫用戶
     postgres=# CREATE USER vendure_user WITH ENCRYPTED PASSWORD 'strong-password';

    輸出:

     CREATE ROLE
  4. 授予用戶對 Vendure 數(shù)據(jù)庫的完全權(quán)限
     postgres=# GRANT ALL PRIVILEGES ON DATABASE vendure_db TO vendure_user;

    輸出:

     GRANT
  5. 退出 PostgreSQL 控制臺
     postgres-# \q

安裝 Vendure

  1. 使用 Node.js 工具,使用該工具安裝 Vendure。npx@vendure/create
     $ npx @vendure/create vendure-app
  2. 回復(fù)每個安裝提示,如下所述按 安裝軟件包Y@vendure/create
     Need to install the following packages:
       @vendure/create@2.0.2
     Ok to proceed? (y) y

    選擇為正在使用的數(shù)據(jù)庫Postgres

     ◆  Which database are you using?
     │  ○ MySQL
     │  ○ MariaDB
     │  ● Postgres
     │  ○ SQLite
     │  ○ SQL.js

    按下可設(shè)置為 PostgreSQL 主機名ENTERlocalhost

     ◆  What's the database host address?
     │  localhost

    按下可保留為 PostgreSQL 端口號ENTER5432

     ◆  What port is the database listening on?
     │  5432

    輸入您之前創(chuàng)建的 PostgreSQL 數(shù)據(jù)庫名稱

     ◆  What's the name of the database?
     │  vendure_db

    按下可將 PostgreSQL 架構(gòu)設(shè)置為 publicENTER

        What's the schema name we should use?
     │  public

    輸入您之前創(chuàng)建的 PostgreSQL 用戶

     ◇  What's the database user name?
     │  vendure_user

    輸入您之前創(chuàng)建的 PostgreSQL 數(shù)據(jù)庫用戶密碼

     ◇  What's the database password?
     │  strong-password

    按下可保留為默認管理員用戶名。將用戶名更改為所需值ENTERsuperadmin

     ◇  What identifier do you want to use for the superadmin user?
     │  superadmin
     │

    輸入您想要的超級管理員用戶名或按下以使用默認密碼ENTER

     ◇  What password do you want to use for the superadmin user?
     │  superadmin
     │

    Select?and press?to populate the database with sample product datayesENTER

     ◆  Populate with some sample product data?
     │  ● yes
     │  ○ no
  3. When successful, the installation process should complete with the following output:
     ◇  Server successfully initialized and populated
     │
     ◇   ──────────────────────────────────────────╮
     │                                             │
     │  Success! Created a new Vendure server at:  │
     │                                             │
     │                                             │
     │  /home/example_user/vendure-app             │
     │                                             │
     │                                             │
     │  We suggest that you start by typing:       │
     │                                             │
     │                                             │
     │  $ cd vendure-app                           │
     │  $ npm run dev                              │
     │                                             │
     ├─────────────────────────────────────────────╯
     │
     └  Happy hacking!
  4. List files in your working directory
     $ ls

    Output:

     vendure-app

    Verify that a new?directory is available on the listvendure-app

Set Up the Vultr Managed Database for PostgreSQL

  1. Log in to your Vultr Managed Database for PostgreSQL. Replace?,?,?with your actual valuesvultradmin1234host.vultrdb.com
     $ psql -h host.vultrdb.com -d postgres -U vultradmin

    Or, copy and use your database connection string from your Vultr Managed Database for PostgreSQL control panel

    get-postgresql-url

  2. When logged in, create a new database
     defaultdb=> CREATE DATABASE venduredb;

    Output:

     CREATE DATABASE
  3. Quit PostgreSQL console
     defaultdb=> \q

將本地 PostgreSQL 數(shù)據(jù)庫數(shù)據(jù)遷移到 Vultr PostgreSQL 托管數(shù)據(jù)庫

  1. 使用之前創(chuàng)建的用戶和數(shù)據(jù)庫將 PostgreSQL 數(shù)據(jù)庫備份到文件venduredb.sql
     $ pg_dump --no-owner -U vendure_user -d vendure_db -W > venduredb.sql

    出現(xiàn)提示時,輸入您之前設(shè)置的正確的 Vendure 用戶數(shù)據(jù)庫密碼

  2. 使用備份文件,將數(shù)據(jù)庫還原到 Vultr PostgreSQL 托管數(shù)據(jù)庫。將 ,, 替換為您的實際詳細信息。host.vultrdb.comvendure_dbvultradmin
     $ psql -h host.vultrdb.com -d vendure_db -U vultradmin < venduredb.sql
  3. 恢復(fù)完成后,訪問 Vultr Managed Database for PostgreSQL
     $ psql -h host.vultrdb.com -d vendure_db -U vultradmin 
  4. 查看 Vendure 數(shù)據(jù)庫表
     vendure_db=> \dt

    輸出:

                               List of relations
      Schema |                    Name                     | Type  | Owner 
     --------+---------------------------------------------+-------+-------
      public | address                                     | table | vultradmin
      public | administrator                               | table | vultradmin
      public | asset                                       | table | vultradmin
      public | asset_channels_channel                      | table | vultradmin
      public | asset_tags_tag                              | table | vultradmin
      public | authentication_method                       | table | vultradmin
      public | channel                                     | table | vultradmin
      public | collection                                  | table | vultradmin
      public | collection_asset                            | table | vultradmin
      public | collection_channels_channel                 | table | vultradmin
      public | collection_closure                          | table | vultradmin
      public | collection_product_variants_product_variant | table | vultradmin
      public | collection_translation                      | table | vultradmin
      public | customer                                    | table | vultradmin
      public | customer_channels_channel                   | table | vultradmin
      public | customer_group                              | table | vultradmin
      public | customer_groups_customer_group              | table | vultradmin
      public | facet                                       | table | vultradmin
      public | facet_channels_channel                      | table | vultradmin
     :

    Enter 退出 PostgreSQL 尋呼機Q

  5. 退出 PostgreSQL 控制臺
     # \q
  6. 在 Vultr 客戶門戶中,下載 Vultr Managed Database for PostgreSQL 簽名證書文件ca-certificate.crtdownload-certificate
  7. 下載后,在終端會話中使用文件并將其上傳到服務(wù)器scp
     $ scp ca-certificate.crt example_user@SERVER-IP:/home/example_user/
  8. 上傳時,請驗證證書文件在用戶主目錄中是否可用
     $ ls

    輸出:

     ca-certificate.crt
  9. 將證書文件移動到目錄中。/usr/local/share/ca-certificates/
     $ sudo mv ca-certificate.crt /usr/local/share/ca-certificates/
  10. 編輯文件vendure-config.ts
     $ nano src/vendure-config.ts
  11. 從文件頂部導(dǎo)入方法readFileSyncnode:fs
     import { readFileSync } from 'node:fs';
  12. 將以下聲明添加到該部分dbConnectionOptions
     ssl: {
         rejectUnauthorized: true,
         ca: readFileSync('/usr/local/share/ca-certificates/ca-certificate.crt').toString(),
     },

    您編輯的部分應(yīng)如下所示:dbConnectionOptions

     dbConnectionOptions: {
         type: 'postgres',
         // See the README.md "Migrations" section for an explanation of
         // the `synchronize` and `migrations` options.
         synchronize: false,
         migrations: [path.join(__dirname, './migrations/*.+(js|ts)')],
         logging: false,
         database: process.env.DB_NAME,
         schema: process.env.DB_SCHEMA,
         host: process.env.DB_HOST,
         port: +process.env.DB_PORT,
         username: process.env.DB_USERNAME,
         password: process.env.DB_PASSWORD,
         ssl: {
             rejectUnauthorized: true,
             ca: readFileSync('/usr/local/share/ca-certificates/ca-certificate.crt').toString(),
         },
     },

    保存并關(guān)閉文件。

切換 Vendure PostgreSQL 數(shù)據(jù)庫配置

  1. 切換到目錄vendure-app
     $ cd vendure-app
  2. 編輯文件.env
     $ nano .env
  3. 使用 Vultr Managed Database for PostgreSQL 詳細信息更新以下現(xiàn)有變量
     DB_HOST=host.vultrdb.com   
     DB_PORT=1234
     DB_NAME=vendure_db
     DB_USERNAME=vultradmin
     DB_PASSWORD=managed-db-password

    Save and close the file.

Store Vendure Assets in Object Storage

Create a New Bucket

  1. Log in to the?Vultr customer portal
  2. Navigate to?Products -> Cloud Storage -> Object Storage.product-object-storage-menu
  3. Access your Vultr Object Storage control panelobject-storage
  4. Navigate to?Bucketsbucket-tab
  5. Click the?Create Bucket?button, and assign the bucket a name of your choice. For example?vendurecreate-bucket

Sync the Assets to Vultr Object Storage

  1. View your working directory
     $ pwd

    Verify that you're operating in the?directory, or switch to the directoryvendure-app

     $ cd vendure-app
  2. Using the?tool, synchronize the Vendure assets directory to your Vultr Object Storage buckets3cmd
     $ s3cmd sync static/assets/ s3://vendure/

    Verify that the file transfer completes successfully

Add the Vultr Object Storage Configuration

  1. Using?, install the?and?packagesnpm@aws-sdk/client-s3@aws-sdk/lib-storage
     $ npm install @aws-sdk/client-s3 @aws-sdk/lib-storage --save
  2. Edit the?fileenvironment.d.ts
     $ nano src/environment.d.ts
  3. Add the following configurations within the?functionProcessEnv
     S3_ENDPOINT: string;
     S3_ACCESS_KEY_ID: string;
     S3_SECRET_ACCESS_KEY: string;
     S3_BUCKET_NAME: string;

    Save and close the file.

    Your edited file should look like the one below:

     namespace NodeJS {
         interface ProcessEnv {
             APP_ENV: string;
             COOKIE_SECRET: string;
             SUPERADMIN_USERNAME: string;
             SUPERADMIN_PASSWORD: string;
             DB_HOST: string;
             DB_PORT: number;
             DB_NAME: string;
             DB_USERNAME: string;
             DB_PASSWORD: string;
             DB_SCHEMA: string;
             S3_ENDPOINT: string;
             S3_ACCESS_KEY_ID: string;
             S3_SECRET_ACCESS_KEY: string;
             S3_BUCKET_NAME: string;
         }
  4. Edit the?file:.env
     $ nano .env
  5. Add the following environment variables to the file. Replace the placeholder values with your actual Vultr Object Storage details
     S3_ENDPOINT=https://YOUR_VULTR_OBJECT_STORAGE_HOST
     S3_ACCESS_KEY_ID=YOUR_VULTR_OBJECT_STORAGE_ACCESS_KEY
     S3_SECRET_ACCESS_KEY=YOUR_VULTR_OBJECT_STORAGE_SECRET_KEY
     S3_BUCKET_NAME=YOUR_VULTR_OBJECT_STORAGE_BUCKET_NAME

    Save and close the file.

    You can view your Vultr Object Storage details on the instance overview section

    s3-credentials

  6. Back up the original?filevendure-config.ts
     $ mv src/vendure-config.ts src/vendure-config.ORIG
  7. Create the file again
     $ nano src/vendure-config.ts 
  8. Add the following updated contents to the file. Replace?with your actual domainexample.com
     import {
         dummyPaymentHandler,
         DefaultJobQueuePlugin,
         DefaultSearchPlugin,
         VendureConfig,
     } from '@vendure/core';
     import { AssetServerPlugin, configureS3AssetStorage } from '@vendure/asset-server-plugin';
     import { defaultEmailHandlers, EmailPlugin } from '@vendure/email-plugin';
     import { AdminUiPlugin } from '@vendure/admin-ui-plugin';
     import 'dotenv/config';
     import path from 'path';
    
     const IS_DEV = process.env.APP_ENV === 'dev';
    
     export const config: VendureConfig = {
         apiOptions: {
             port: 3000,
             adminApiPath: 'admin-api',
             shopApiPath: 'shop-api',
             // The following options are useful in development mode,
             // but are best turned off for production for security
             // reasons.
             ...(IS_DEV ? {
                 adminApiPlayground: {
                     settings: { 'request.credentials': 'include' } as any,
                 },
                 adminApiDebug: true,
                 shopApiPlayground: {
                     settings: { 'request.credentials': 'include' } as any,
                 },
                 shopApiDebug: true,
             } : {}),
         },
         authOptions: {
             tokenMethod: ['bearer', 'cookie'],
             superadminCredentials: {
                 identifier: process.env.SUPERADMIN_USERNAME,
                 password: process.env.SUPERADMIN_PASSWORD,
             },
             cookieOptions: {
               secret: process.env.COOKIE_SECRET,
             },
         },
         dbConnectionOptions: {
             type: 'postgres',
             // See the README.md "Migrations" section for an explanation of
             // the `synchronize` and `migrations` options.
             synchronize: false,
             migrations: [path.join(__dirname, './migrations/*.+(js|ts)')],
             logging: false,
             database: process.env.DB_NAME,
             schema: process.env.DB_SCHEMA,
             host: process.env.DB_HOST,
             port: +process.env.DB_PORT,
             username: process.env.DB_USERNAME,
             password: process.env.DB_PASSWORD,
         },
         paymentOptions: {
             paymentMethodHandlers: [dummyPaymentHandler],
         },
         // When adding or altering custom field definitions, the database will
         // need to be updated. See the "Migrations" section in README.md.
         customFields: {},
         plugins: [
             AssetServerPlugin.init({
                 route: 'assets',
                 assetUploadDir: path.join(__dirname, '../static/assets'),
                 assetUrlPrefix: IS_DEV ? undefined : 'https://example.com/assets/',
                 storageStrategyFactory: configureS3AssetStorage({
                     bucket: process.env.S3_BUCKET_NAME,
                     credentials: {
                         accessKeyId: process.env.S3_ACCESS_KEY_ID,
                         secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
                     },
                     nativeS3Configuration: {
                         endpoint: process.env.S3_ENDPOINT,
                         forcePathStyle: true,
                         signatureVersion: 'v4',
                         region: 'eu-west-1',
                     },
                 }),
             }),
             DefaultJobQueuePlugin.init({ useDatabaseForBuffer: true }),
             DefaultSearchPlugin.init({ bufferUpdates: false, indexStockStatus: true }),
             EmailPlugin.init({
                 devMode: true,
                 outputPath: path.join(__dirname, '../static/email/test-emails'),
                 route: 'mailbox',
                 handlers: defaultEmailHandlers,
                 templatePath: path.join(__dirname, '../static/email/templates'),
                 globalTemplateVars: {
                     // The following variables will change depending on your storefront implementation.
                     // Here we are assuming a storefront running at http://localhost:8080.
                     fromAddress: '"example" <noreply@example.com>',
                     verifyEmailAddressUrl: 'http://localhost:8080/verify',
                     passwordResetUrl: 'http://localhost:8080/password-reset',
                     changeEmailAddressUrl: 'http://localhost:8080/verify-email-address-change'
                 },
             }),
             AdminUiPlugin.init({
                 route: 'admin',
                 port: 3002,
             }),
         ],
     };

    Save and close the file.

    The above configuration imports the?and?assets to Vendure. Then, it defines the Vendure URL?in the?section.configureS3AssetStorageasset-server-pluginexample.comAssetServerPlugin.init({

Store the Job Queue and Session Cache in Redis?

Vendure keeps the job queue in the PostgreSQL database by default. To store the jobs in a Vultr Managed Database for Caching, use the BullMQ job queue plugin as described in the steps below.

Set Up the Job Queue

  1. Install the BullMQ job queue plugin
     $ npm install @vendure/job-queue-plugin bullmq@1 --save
  2. Edit the?fileenvironment.d.ts
     $ nano src/environment.d.ts
  3. Add the following declarations to the?interface after your?directivesProcessEnvS3
     REDIS_HOST: string;
     REDIS_PORT: number;
     REDIS_USERNAME: string;
     REDIS_PASSWORD: string;

    Save and close the file.

  4. Edit the?filevendure-config.ts
     $ nano src/vendure-config.ts
  5. Add the?import directive at the top of the fileBullMQJobQueuePlugin
     import { BullMQJobQueuePlugin } from '@vendure/job-queue-plugin/package/bullmq';

    In the?section, find the?initialization directiveplugins:DefaultJobQueuePlugin

     DefaultJobQueuePlugin.init({ useDatabaseForBuffer: true }),

    Replace it with the following?declarationsBullMQJobQueuePlugin

     BullMQJobQueuePlugin.init({
         connection: {
             port: process.env.REDIS_PORT,
             host: process.env.REDIS_HOST,
             username: process.env.REDIS_USERNAME,
             password: process.env.REDIS_PASSWORD,
             tls: {},
         }
     }),

    Save and close the file.

  6. Edit the?file.env
     $ nano .env
  7. Add the following environment variables at the end of the file. Replace the placeholder values with your Vultr Managed Database for Caching details
     REDIS_HOST=host.vultrd.com
     REDIS_PORT=1234
     REDIS_USERNAME=admin
     REDIS_PASSWORD=strong-password

    You can find your Vultr Managed Database for Caching details on your instance overview section

    redis-connection-details

Configure Session Cache

Vendure stores the session object cache in your system memory. It's fast and suitable for a single-instance deployment. However, for horizontal scaling or multi-instance deployment, you must store the session cache to an external data store such as a Vultr Managed Database for Caching. To enable Redis?, create a custom session cache strategy as described below.

  1. Create a new?file in the?directoryredis-session-cache-strategy.tsplugins
     $ nano src/plugins/redis-session-cache-strategy.ts
  2. Add the following configurations to the file
     import { CachedSession, Logger, SessionCacheStrategy, VendurePlugin } from '@vendure/core';
     import { Redis, RedisOptions } from 'ioredis';
    
     export interface RedisSessionCachePluginOptions {
       namespace?: string;
       redisOptions?: RedisOptions;
     }
     const loggerCtx = 'RedisSessionCacheStrategy';
     const DEFAULT_NAMESPACE = 'vendure-session-cache';
    
     export class RedisSessionCacheStrategy implements SessionCacheStrategy {
       private client: Redis;
       constructor(private options: RedisSessionCachePluginOptions) {}
    
       init() {
         this.client = new Redis(this.options.redisOptions as RedisOptions);
         this.client.on('error', err => Logger.error(err.message, loggerCtx, err.stack));
       }
    
       async get(sessionToken: string): Promise<CachedSession | undefined> {
         const retrieved = await this.client.get(this.namespace(sessionToken));
         if (retrieved) {
           try {
             return JSON.parse(retrieved);
           } catch (e: any) {
             Logger.error(`Could not parse cached session data: ${e.message}`, loggerCtx);
           }
         }
       }
    
       async set(session: CachedSession) {
         await this.client.set(this.namespace(session.token), JSON.stringify(session));
       }
    
       async delete(sessionToken: string) {
         await this.client.del(this.namespace(sessionToken));
       }
    
       clear() {
         // not implemented
       }
    
       private namespace(key: string) {
         return `${this.options.namespace ?? DEFAULT_NAMESPACE}:${key}`;
       }
     }
    
     @VendurePlugin({
       configuration: config => {
         config.authOptions.sessionCacheStrategy = new RedisSessionCacheStrategy(
           RedisSessionCachePlugin.options,
         );
         return config;
       },
     })
     export class RedisSessionCachePlugin {
       static options: RedisSessionCachePluginOptions;
       static init(options: RedisSessionCachePluginOptions) {
         this.options = options;
         return this;
       }
     }

    Save and close the file

  3. Edit the?filevendure-config.ts
     $ nano src/vendure-config.ts
  4. Add the?directive to the import sectionRedisSessionCachePlugin
     import { RedisSessionCachePlugin } from './plugins/redis-session-cache-strategy';

    Within the?section, add the following code after?to initialize the?Plugins: [AdminUiPlugin.init(...)RedisSessionCachePlugin

     RedisSessionCachePlugin.init({
         redisOptions: {
             port: process.env.REDIS_PORT,
             host: process.env.REDIS_HOST,
             username: process.env.REDIS_USERNAME,
             password: process.env.REDIS_PASSWORD,
             tls: {},
         }
     }),

    Save and close the file.

Build for Vendure Production

  1. Edit the?file.env
     $ nano .env
  2. Change the?value from?to?APP_ENVdevproduction
     APP_ENV=production

    Save and close the file.

  3. Install the Vendure harden plugin that locks down your schema and protects your shop API from malicious queries
     $ npm install @vendure/harden-plugin --save
  4. Edit the?filevendure-config.ts
     $ nano src/vendure-config.ts
  5. Add the following?import directive to the?sectionharden pluginimport
     import { HardenPlugin } from '@vendure/harden-plugin';

    Within the?section, add the following code to initialize the harden pluginPlugins:

     HardenPlugin.init({
         maxQueryComplexity: 500,
         apiMode: IS_DEV ? 'dev' : 'prod',
     }),

    Save and close the file.

    The edited?file should look like the one below:vendure-config.ts

     import {
         dummyPaymentHandler,
         DefaultJobQueuePlugin,
         DefaultSearchPlugin,
         VendureConfig,
     } from '@vendure/core';
     import { defaultEmailHandlers, EmailPlugin } from '@vendure/email-plugin';
     import { AssetServerPlugin, configureS3AssetStorage } from '@vendure/asset-server-plugin';
     import { AdminUiPlugin } from '@vendure/admin-ui-plugin';
     import { BullMQJobQueuePlugin } from '@vendure/job-queue-plugin/package/bullmq';
     import { RedisSessionCachePlugin } from './plugins/redis-session-cache-strategy';
     import { HardenPlugin } from '@vendure/harden-plugin';
     import 'dotenv/config';
     import path from 'path';
     import { readFileSync } from 'node:fs';
    
     const IS_DEV = process.env.APP_ENV === 'dev';
    
     export const config: VendureConfig = {
         apiOptions: {
             port: 3000,
             adminApiPath: 'admin-api',
             shopApiPath: 'shop-api',
             // The following options are useful in development mode,
             // but are best turned off for production for security
             // reasons.
             ...(IS_DEV ? {
                 adminApiPlayground: {
                     settings: { 'request.credentials': 'include' } as any,
                 },
                 adminApiDebug: true,
                 shopApiPlayground: {
                     settings: { 'request.credentials': 'include' } as any,
                 },
                 shopApiDebug: true,
             } : {}),
         },
         authOptions: {
             tokenMethod: ['bearer', 'cookie'],
             superadminCredentials: {
                 identifier: process.env.SUPERADMIN_USERNAME,
                 password: process.env.SUPERADMIN_PASSWORD,
             },
             cookieOptions: {
               secret: process.env.COOKIE_SECRET,
             },
         },
         dbConnectionOptions: {
             type: 'postgres',
             // See the README.md "Migrations" section for an explanation of
             // the `synchronize` and `migrations` options.
             synchronize: false,
             migrations: [path.join(__dirname, './migrations/*.+(js|ts)')],
             logging: false,
             database: process.env.DB_NAME,
             schema: process.env.DB_SCHEMA,
             host: process.env.DB_HOST,
             port: +process.env.DB_PORT,
             username: process.env.DB_USERNAME,
             password: process.env.DB_PASSWORD,
         ssl: {
                 rejectUnauthorized: true,
                 ca: readFileSync('/usr/local/share/ca-certificates/ca-certificate.crt').toString(),
             },
         },
         paymentOptions: {
             paymentMethodHandlers: [dummyPaymentHandler],
         },
         // When adding or altering custom field definitions, the database will
         // need to be updated. See the "Migrations" section in README.md.
         customFields: {},
         plugins: [
             AssetServerPlugin.init({
                 route: 'assets',
                 assetUploadDir: path.join(__dirname, '../static/assets'),
                 assetUrlPrefix: IS_DEV ? undefined : 'https://example.hisman.org/assets/',
                 storageStrategyFactory: configureS3AssetStorage({
                     bucket: process.env.S3_BUCKET_NAME,
                     credentials: {
                         accessKeyId: process.env.S3_ACCESS_KEY_ID,
                         secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
                     },
                     nativeS3Configuration: {
                         endpoint: process.env.S3_ENDPOINT,
                         forcePathStyle: true,
                         signatureVersion: 'v4',
                         region: 'eu-west-1',
                     },
                 }),
             }),
         RedisSessionCachePlugin.init({
                 redisOptions: {
                     port: process.env.REDIS_PORT,
                     host: process.env.REDIS_HOST,
                     username: process.env.REDIS_USERNAME,
                     password: process.env.REDIS_PASSWORD,
                     tls: {},
                 }
             }),
             BullMQJobQueuePlugin.init({
                 connection: {
                     port: process.env.REDIS_PORT,
                     host: process.env.REDIS_HOST,
                     username: process.env.REDIS_USERNAME,
                     password: process.env.REDIS_PASSWORD,
                     tls: {},
                 }
             }),
             HardenPlugin.init({
                 maxQueryComplexity: 500,
                 apiMode: IS_DEV ? 'dev' : 'prod',
             }),
             DefaultSearchPlugin.init({ bufferUpdates: false, indexStockStatus: true }),
             EmailPlugin.init({
                 devMode: true,
                 outputPath: path.join(__dirname, '../static/email/test-emails'),
                 route: 'mailbox',
                 handlers: defaultEmailHandlers,
                 templatePath: path.join(__dirname, '../static/email/templates'),
                 globalTemplateVars: {
                     // The following variables will change depending on your storefront implementation.
                     // Here we are assuming a storefront running at http://localhost:8080.
                     fromAddress: '"example" <noreply@example.com>',
                     verifyEmailAddressUrl: 'http://localhost:8080/verify',
                     passwordResetUrl: 'http://localhost:8080/password-reset',
                     changeEmailAddressUrl: 'http://localhost:8080/verify-email-address-change'
                 },
             }),
             AdminUiPlugin.init({
                 route: 'admin',
                 port: 3002,
             }),
         ],
     };
  6. Build the Vendure application
     $ npm run build

    npm?writes the build files to the?directorydist

Run the Production Vendure App

  1. Install the?packagePM2
     $ sudo npm install pm2 -g
  2. Run the Vendure app server in cluster mode
     $ pm2 start ./dist/index.js -i max
  3. Run the Vendure app worker in cluster mode
     $ pm2 start ./dist/index-worker.js -i max

    Output:

     [PM2] Starting /home/user/vendure-app/dist/index-worker.js in cluster_mode (0 instance)
     [PM2] Done.
     ┌────┬─────────────────┬─────────────┬─────────┬─────────┬──────────┬────────┬──────┬───────────┬──────────┬──────────┬──────────┬──────────┐
     │ id │ name            │ namespace   │ version │ mode    │ pid      │ uptime │ ?    │ status    │ cpu      │ mem      │ user     │ watching │
     ├────┼─────────────────┼─────────────┼─────────┼─────────┼──────────┼────────┼──────┼───────────┼──────────┼──────────┼──────────┼──────────┤
     │ 0  │ index           │ default     │ 0.1.0   │ cluster │ 232015   │ 47s    │ 0    │ online    │ 0%       │ 135.0mb  │ user     │ disabled │
     │ 1  │ index-worker    │ default     │ 0.1.0   │ cluster │ 232052   │ 0s     │ 0    │ online    │ 0%       │ 36.5mb   │ user     │ disabled │
     └────┴─────────────────┴─────────────┴─────────┴─────────┴──────────┴────────┴──────┴───────────┴──────────┴──────────┴──────────┴──────────┘
  4. Generate and run a startup script to start PM2 when the server reboots
     $ pm2 startup

    Output:

     [PM2] Init System found: systemd
     [PM2] To setup the Startup Script, copy/paste the following command:
     sudo env PATH=$PATH:/usr/bin /usr/lib/node_modules/pm2/bin/pm2 startup systemd -u example_user --hp /home/example_user
  5. Save all the running processes
     $ pm2 save
  6. Using?, test that your Vendure app runs on the default port?wget3000
     $ wget -S http://localhost:3000/admin/

    Output:

     --2023-08-18 10:30:28--  http://localhost:3000/admin/
     Resolving localhost (localhost)... ::1, 127.0.0.1
     Connecting to localhost (localhost)|::1|:3000... connected.
     HTTP request sent, awaiting response...
       HTTP/1.1 200 OK
       X-Powered-By: Express
       Vary: Origin
       Access-Control-Allow-Credentials: true
       Access-Control-Expose-Headers: vendure-auth-token
       Accept-Ranges: bytes
       Cache-Control: public, max-age=0
       Last-Modified: Fri, 18 Aug 2023 09:34:01 GMT
       ETag: W/"268-18a07fe9b82"
       Content-Type: text/html; charset=UTF-8
       Content-Length: 616
       Date: Fri, 18 Aug 2023 10:30:28 GMT
       Connection: keep-alive
       Keep-Alive: timeout=5
     Length: 616 [text/html]
     Saving to: ‘index.html’

    If Vendure fails to run and listen on port?. Start it using the following command to view the runtime log and catch any errors3000

     $ npm run dev

    Output:

     [server] info 8/31/23, 8:25 PM - [BullMQJobQueuePlugin] Checking Redis connection... 
     [server] info 8/31/23, 8:25 PM - [BullMQJobQueuePlugin] Connected to Redis ✔ 
     [server] info 8/31/23, 8:25 PM - [NestApplication] Nest application successfully started 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] ================================================ 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] Vendure server (v2.0.6) now running on port 3000 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] ------------------------------------------------ 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] Shop API:     http://localhost:3000/shop-api 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] Admin API:    http://localhost:3000/admin-api 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] Asset server: http://localhost:3000/assets 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] Dev mailbox:  http://localhost:3000/mailbox 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] Admin UI:     http://localhost:3000/admin 
     [server] info 8/31/23, 8:25 PM - [Vendure Server] ================================================ 

    When successful, verify that Vendure runs on port?3000

Configure Nginx as a Reverse Proxy

To securely access the Vendure app through your domain name, configure Nginx as a reverse proxy to handle connections to the backend port?as described below.3000

  1. Install Nginx
     $ sudo apt install nginx
  2. Disable the default Nginx configuration
     $ sudo unlink /etc/nginx/sites-enabled/default
  3. Create a new Nginx virtual host configuration file
     $ sudo nano /etc/nginx/sites-available/vendure
  4. Add the following configurations to the file. Replace?with your actual domainexample.com
     server {
         listen 80;
    
         server_name example.com;
    
         location / {
             proxy_pass http://localhost:3000;
             proxy_http_version 1.1;
             proxy_set_header Upgrade $http_upgrade;
             proxy_set_header Connection 'upgrade';
             proxy_set_header Host $host;
             proxy_set_header X-Real-IP $remote_addr;
             proxy_set_header X-Forwarded-Proto $scheme;
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             proxy_cache_bypass $http_upgrade;
         }
     }

    Save and close the file.

  5. Enable the Nginx configuration file
     $ sudo ln -s /etc/nginx/sites-available/vendure /etc/nginx/sites-enabled/
  6. Test your configurations from syntax errors
     $ sudo nginx -t
  7. Reload Nginx configurations to save changes
     $ sudo nginx -s reload

Security

To secure Vendure for production use, allow Nginx to accept incoming connections on HTTP port?and the HTTPS port?. Then, securely redirect all HTTP requests to HTTPS by generating SSL certificates as described in the steps below.80443

Configure the Firewall

  1. Allow SSH port connection to the server
     $ sudo ufw allow 'OpenSSH'
  2. Allow the Nginx HTTP and HTTPS ports profile
     $ sudo ufw allow 'Nginx Full'
  3. Enable the firewall
     $ sudo ufw enable
  4. Verify the firewall status
     $ sudo ufw status

    Output:

     Status: active
    
     To                         Action      From
     --                         ------      ----
     22/tcp                     ALLOW       Anywhere
     Nginx Full                 ALLOW       Anywhere
     22/tcp (v6)                ALLOW       Anywhere (v6)
     Nginx Full (v6)            ALLOW       Anywhere (v6)

Secure Vendure with Let's Encrypt SSL Certificates

  1. Using?, install the Certbot Let's Encrypt client toolsnap
     $ sudo snap install --classic certbot
  2. Create a symbolic link for the system wide Certbot command to?/usr/bin
     $ sudo ln -s /snap/bin/certbot /usr/bin/certbot
  3. Generate your Let's Encrypt SSL certificate. Replace?,?with your domain, and email address respectivelyexample.comhello@example.com
     $ sudo certbot --nginx -d example.com -m hello@example.com --agree-tos
  4. Verify that Certbot auto renews the SSL certificate upon expiry
     $ sudo certbot renew --dry-run

Test the Application

  1. Using a web browser such as Chrome, access your Vendure shop administrator page
     https://example.com/admin

    vendure-login

    Log in with the?credentials you set earlier. When successful, the administrator dashboard should displaysuperadmin

    vendure-dashboard

  2. Navigate to the?Inventory?menu. Verify that all sample products display on the page. Try to update or delete any of them.vendure-inventory-page
  3. Navigate to the?Assets?menu and upload a sample imagevendure-assets-page
  4. 在 Vultr 客戶門戶會話中,查看 Vultr 對象存儲桶。驗證映像在存儲桶中是否可用vendure-bucket
  5. 除了 Vendure 管理員頁面,還可以訪問以下 GraphQL API 端點:
    • 管理員 GraphQL API:https://example.com/admin-api
    • 購買 GraphQL API:https://example.com/shop-api

當您設(shè)計 Vendure 商店時,前端界面會隨著您的產(chǎn)品和設(shè)計而激活。

結(jié)論

在本指南中,您安裝了 Vendure 應(yīng)用程序并將其部署到生產(chǎn)環(huán)境。您還將 Vendure 配置為使用 Vultr 對象存儲、用于 PostgreSQL 的 Vultr 托管數(shù)據(jù)庫和用于緩存的 Vultr 托管數(shù)據(jù)庫。有關(guān) Vendure 的更多信息,請訪問官方文檔。

]]>
如何在Python中使用Vultr托管數(shù)據(jù)庫進行緩存 http://www.vanhostingweb.com/5650.html Sat, 29 Jun 2024 11:38:11 +0000 http://www.vanhostingweb.com/?p=5650

介紹

Redis? 是一種內(nèi)存數(shù)據(jù)存儲,提供靈活的數(shù)據(jù)結(jié)構(gòu)、高性能和按需可擴展性。Vultr Managed Database for Caching 為任務(wù)關(guān)鍵型應(yīng)用程序提供高可用性、高吞吐量和低延遲。本指南介紹如何在 Python 中使用 Vultr Managed Database for Caching 創(chuàng)建高可用性應(yīng)用程序。

先決條件

準備工作:

  • 購買用于緩存的 Vultr 托管數(shù)據(jù)庫
  • 購買Vultr Linux 服務(wù)器以用作開發(fā)計算機
  • 使用?SSH?以非 root 用戶身份訪問服務(wù)器

設(shè)置 Python 開發(fā)環(huán)境

要將 Vultr Managed Database for Caching 集成到 Python 應(yīng)用程序,請安裝 Python 模塊并設(shè)置示例項目目錄來存儲應(yīng)用程序文件。redis

  1. 升級 Python 包管理器。pip
     $ pip install --upgrade pip
  2. 安裝 Python 驅(qū)動程序以連接到 Redis? 數(shù)據(jù)庫。redis
     $ pip install redis
  3. 創(chuàng)建一個新目錄。project
     $ mkdir project
  4. 導(dǎo)航到新目錄。project
     $ cd project

創(chuàng)建 Redis? 網(wǎng)關(guān)類

要在 Python 應(yīng)用程序文件中使用 Vultr Managed Database for Caching 連接,請創(chuàng)建一個連接到數(shù)據(jù)庫的中央 Python 模塊。然后,可以通過在應(yīng)用程序中使用子句聲明數(shù)據(jù)庫模塊來重用該模塊。按照以下步驟創(chuàng)建 Redis? 連接模塊import

  1. 使用 Vim 等文本編輯器創(chuàng)建一個新文件redis_gateway.py
     $ nano redis_gateway.py
  2. 將以下代碼添加到文件中。將 、 和 值替換為正確的 Vultr Managed Database for Caching 詳細信息vultr-prod-abcd.vultrdb.com16752example-password
     import redis
    
     class RedisGateway:
    
         def __init__(self):
    
             r_host = 'vultr-prod-abcd.vultrdb.com'
             r_port = 16752
             r_pass = 'example-password'
    
             self.r_client = redis.Redis(
                 host     = r_host, 
                 port     = r_port, 
                 password = r_pass, 
                 ssl      = 'true'
             )

    保存并關(guān)閉文件

    上面的 Python 應(yīng)用程序代碼使用方法聲明一個類。每次創(chuàng)建類的實例時,都會執(zhí)行此方法。然后,它使用該函數(shù)連接到 Redis? 數(shù)據(jù)庫。RedisGateway__init__(self)RedisGatewayself.r_client = redis.Redis(...)

    要將 Redis? 數(shù)據(jù)庫模塊導(dǎo)入到其他 Python 源代碼文件,請使用以下聲明:

     import redis_gateway 
    
     r_gateway = redis_gateway.RedisGateway() 
     r_client  = r_gateway.r_client

實現(xiàn) Redis? 字符串

在 Redis? 中,字符串是字節(jié)序列,是最常用的數(shù)據(jù)類型。您可以使用字符串數(shù)據(jù)類型來存儲會話 ID、用戶密碼、產(chǎn)品信息和靜態(tài) HTML 內(nèi)容。要在 Redis? 服務(wù)器中創(chuàng)建密鑰,請使用關(guān)鍵字。若要檢索鍵值,請使用關(guān)鍵字。在本節(jié)中,創(chuàng)建一個 Python 應(yīng)用程序來實現(xiàn) Redis? 字符串,如下所述。setget

  1. 創(chuàng)建新文件redis_strings.py
     $ nano redis_strings.py
  2. 將以下內(nèi)容添加到文件中
     import redis_gateway 
    
     r_gateway = redis_gateway.RedisGateway() 
     r_client  = r_gateway.r_client
    
     r_key   = "john_doe"
     r_value = "example-password"
    
     r_client.set(r_key, r_value)   
    
     print("...\r\n You've successfully set the Redis key.\r\n")
    
     if r_client.exists(r_key): 
    
         r_value = r_client.get(r_key).decode("utf-8")
    
         print("The value for the " + r_key + " key is " + r_value + "\r\n ...")

    保存并關(guān)閉文件。

    上面的應(yīng)用程序文件導(dǎo)入您之前創(chuàng)建的模塊,然后:redis_gateway

    • r_key:定義您在 Redis? 數(shù)據(jù)庫中設(shè)置的字符串鍵的名稱
    • r_value:定義 Redis? 鍵值
    • r_client.set(r_key, r_value):在 Redis? 數(shù)據(jù)庫中設(shè)置密鑰
    • if r_client.exists(r_key):在檢索密鑰之前,先驗證密鑰是否存在于 Redis? 數(shù)據(jù)庫服務(wù)器中,以避免運行時錯誤
    • r_client.get(r_key).decode("utf-8"):從 Redis? 數(shù)據(jù)庫中檢索密鑰
  3. 運行 Redis? 字符串應(yīng)用程序文件
     $ python3 redis_strings.py

    輸出:

     ...
      You've successfully set the Redis key.
    
     The value for the john_doe key is example-password
      ...

    如上面的輸出所示,Python 正確連接到 Redis? 數(shù)據(jù)庫并設(shè)置字符串鍵的值。example-passwordjohn_doe

實現(xiàn) Redis? 列表

Redis? 列表是用于實現(xiàn)排隊機制的字符串的有序集合。Redis? 允許您使用 和 命令將元素添加到列表的頭部或尾部。創(chuàng)建新的 Python 應(yīng)用程序來測試 Redis? 列表功能,如下所述。lpushrpush

  1. 創(chuàng)建新文件redis_lists.py
     $ nano redis_lists.py
  2. 將以下內(nèi)容添加到文件中
     import redis_gateway
     import json
    
     r_gateway = redis_gateway.RedisGateway() 
     r_client  = r_gateway.r_client
    
     r_list   = "sample_customer_job_list"
    
     sample_job_1 = {
         "firstName": "JOHN",
         "lastName": "DOE",
         "email": "john_doe@example.com"
     }
    
     sample_job_2 = {
         "firstName": "MARY",
         "lastName": "SMITH",
         "email": "mary_smith@example.com"
     }
    
     r_list_value_1  = json.dumps(sample_job_1)
     r_list_value_2  = json.dumps(sample_job_2)
    
     r_client.lpush(r_list, r_list_value_1, r_list_value_2) 
    
     print("...\r\n You've successfully added a customer registration jobs to the Redis list.\r\n...")
    
     while(r_client.llen(r_list) != 0):
    
         print("The values for the " + r_list + "\r\n...")
    
         print(r_client.lpop(r_list).decode("utf-8") + "\r\n...") 

    保存并關(guān)閉文件。

    下面是上面的應(yīng)用程序代碼的作用:

    • 該變量表示示例 Redis? 列表的鍵。r_list
    • sample_job_1 = {...}和 是示例列表值。sample_job_1 = {...}
    • 該函數(shù)將兩個示例作業(yè)插入到 Redis? 列表中r_client.lpush(r_list, r_list_value_1, r_list_value_2)
    • 循環(huán)查詢 Redis? 服務(wù)器并循環(huán)訪問變量以打印列表值while(r_client.llen(r_list) != 0):r_list
  3. 運行應(yīng)用程序文件redis_lists.py
     $ python3 redis_lists.py

    輸出:

     ...
      You've successfully added a customer registration jobs to the Redis list.
     ...
     The values for the sample_customer_job_list
     ...
     {"firstName": "MARY", "lastName": "SMITH", "email": "mary_smith@example.com"}
     ...
     The values for the sample_customer_job_list
     ...
     {"firstName": "JOHN", "lastName": "DOE", "email": "john_doe@example.com"}
     ...

實現(xiàn) Redis? 哈希

Redis? 哈希是將鍵映射到值對的記錄類型。在 Python 應(yīng)用程序中以公司數(shù)據(jù)的形式實現(xiàn) Redis? 哈希,如下所述。

  1. 創(chuàng)建新文件redis_hash.py
     $ nano redis_hash.py
  2. 將以下內(nèi)容添加到文件中
     import redis_gateway
     import json
    
     r_gateway = redis_gateway.RedisGateway() 
     r_client  = r_gateway.r_client
    
     r_hash = "company_profile"
    
     r_client.hset(r_hash, "company_name", "XYZ COMPANY")
     r_client.hset(r_hash, "add_line_1", "123 SAMPLE STREET")
     r_client.hset(r_hash, "add_line_2", "APT BUILDING")
     r_client.hset(r_hash, "county", "3RD COUNTY")
     r_client.hset(r_hash, "city", "SUN CITY")
     r_client.hset(r_hash, "zip", "123456")
    
     print("...\r\nYou've successfully set a company profile.\r\n...")
    
     print("Company profile information \r\n" )
    
     print(json.dumps(str(r_client.hgetall(r_hash)))) 
    
     print("Company Name : " + r_client.hget(r_hash, "company_name").decode("utf-8"))

    保存并關(guān)閉文件。

    在上述應(yīng)用中:

    • 該變量表示 Redis? 數(shù)據(jù)庫中的哈希鍵。r_hash
    • 該函數(shù)在 Redis 服務(wù)器中設(shè)置哈希值。此函數(shù)與以下內(nèi)容相同:r_client.hset(r_hash, "company_name", "XYZ COMPANY")
        company_profile['company_name'] =  "XYZ COMPANY"
    • r_client.hgetall(r_hash):檢索給定哈希的所有鍵值對
    • r_client.hget(r_hash, "company_name"):檢索哈希中給定鍵的值
  3. 運行應(yīng)用程序
     $ python3 redis_hash.py

    輸出:

     ...
     You've successfully set a company profile.
     ...
     Company profile information
    
     "{b'company_name': b'XYZ COMPANY', b'add_line_1': b'123 SAMPLE STREET', b'add_line_2': b'APT BUILDING', b'county': b'3RD COUNTY', b'city': b'SUN CITY', b'zip': b'123456'}"
     Company Name : XYZ COMPANY

實現(xiàn) Redis? 排序集

排序集表示按關(guān)聯(lián)樂譜排列的字符串集合。元素在排序集中只能出現(xiàn)一次。Redis? 提供了用于添加和檢索排序集值的 and 函數(shù)。在 Python 應(yīng)用程序中實現(xiàn)這些函數(shù),如下所述。zaddzrange

  1. 創(chuàng)建新文件redis_sorted_set.py
     $ nano redis_sorted_set.py
  2. 將以下內(nèi)容添加到文件中
     import redis_gateway
     import json
    
     r_gateway = redis_gateway.RedisGateway() 
     r_client  = r_gateway.r_client
    
     r_sorted_set = "database_ratings"
    
     database_scores = {
         'MySQL': 1, 
         'PostgreSQl': 2,
         'SQLite': 3,
         'MongoDB': 4 
     }
    
     r_client.zadd(r_sorted_set, database_scores)
    
     print("...\r\nYou've successfully entered four database ratings.\r\n...")
    
     print("Database rating information: \r\n")
    
     print(r_client.zrange(r_sorted_set, 0, 3))

    保存并關(guān)閉文件。

    在上述應(yīng)用中:

    • r_sorted_set:聲明排序集的鍵
    • database_scores = {...}:包含四個具有匹配分數(shù)的元素
    • r_client.zadd(r_sorted_set, database_scores):將 set 元素添加到 Redis? 服務(wù)器
    • r_client.zrange(r_sorted_set, 0, 3):從數(shù)據(jù)庫中返回所有排序的集合值
  3. 運行應(yīng)用程序
     $ python3 redis_sorted_set.py

    輸出:

     ...
     You've successfully entered four database ratings.
     ...
     Database rating information:
    
     [b'MySQL', b'PostgreSQl', b'SQLite', b'MongoDB']

結(jié)論

在本指南中,您已使用 Vultr Managed Database for Caching with Python 實現(xiàn)了不同的數(shù)據(jù)類型。根據(jù)您的應(yīng)用程序用例,實現(xiàn)相關(guān)的 Redis? 數(shù)據(jù)類型以在數(shù)據(jù)庫中緩存和存儲數(shù)據(jù)。

]]>
如何在 Vultr 服務(wù)器中使用 SSH http://www.vanhostingweb.com/5629.html Fri, 28 Jun 2024 16:10:07 +0000 http://www.vanhostingweb.com/?p=5629

介紹

SSH 是一種協(xié)議,允許您從遠程系統(tǒng)連接到基于 Linux 或 Unix 的服務(wù)器。OpenSSH 是一種連接工具,它使用 SSH 協(xié)議通過安全外殼在客戶端和服務(wù)器之間進行通信。本指南介紹了如何使用密碼通過 SSH 連接到您的 Vultr 服務(wù)器或使用 OpenSSH 的 SSH 密鑰。它還介紹了如何生成 SSH 密鑰并將其手動添加到服務(wù)器。

如何使用密碼連接

若要使用 SSH 客戶端和密碼連接到服務(wù)器,請在本地工作站上打開命令提示符并執(zhí)行以下命令。將示例 IP 地址替換為服務(wù)器的 IP 地址,您可以在 Vultr 客戶門戶的服務(wù)器信息頁面上找到該地址。

$ ssh root@192.0.2.123

SSH 顯示一條警告以確認服務(wù)器的真實性。鍵入并按 。您將看到密碼提示。鍵入密碼,然后按 。YesENTERENTER

注意:鍵入時密碼將不可見。

現(xiàn)在,您將登錄到服務(wù)器,您可以使用命令與服務(wù)器進行交互。

什么是 SSH 密鑰對

SSH 密鑰對包含公鑰和私鑰。公鑰存儲在服務(wù)器上,私鑰存儲在將用于連接到遠程服務(wù)器的本地計算機上。這兩個密鑰對于使用 SSH 密鑰通過 SSH 連接到服務(wù)器都是必需的。

如何在 Windows、Linux、Mac 上生成密鑰

ssh-keygen實用程序可用于生成 SSH 密鑰。

如何使用命令ssh-keygen

使用以下命令在 Windows、Linux 和 Mac 中生成密鑰對。

ssh-keygen -t ed25519 -C email@example.com

哪里

  • ssh-keygen- 生成SSH密鑰對的命令
  • -t- 用于指定密鑰類型的標志
  • ed25519- 要生成的密鑰的類型。 建議使用,因為它比 RSA 類型密鑰更安全ed25519
  • -C- 標志以指定鍵的注釋
  • email- 要在密鑰中添加的注釋。此注釋將附加在公鑰字符串的末尾。當服務(wù)器上有更多公鑰可用時,它將有助于識別密鑰(稍后將詳細介紹本主題)。

在 Windows 上生成密鑰

啟動命令提示符并使用以下命令生成 SSH 密鑰對。

C:\users\username>  ssh-keygen -t ed25519 -C email@example.com

系統(tǒng)會提示您輸入生成密鑰的位置。默認值在括號中顯示為?(C:\Users\Username/.ssh/id_ed25519)。

注意:建議使用此目錄。因為在登錄時,SSH會在默認目錄中查找密鑰。如果使用默認目錄以外的目錄,則需要顯式指定鍵位置。

按下可使用默認位置。ENTER

Generating public/private ed25519 key pair.
Enter file in which to save the key (C:\Users\username/.ssh/id_ed25519):

系統(tǒng)會提示輸入密鑰的密碼。您可以根據(jù)需要輸入密碼,也可以按下創(chuàng)建沒有密碼的鍵。如果您選擇輸入密碼,則每次使用此密鑰登錄時都需要使用它。ENTER

Enter passphrase (empty for no passphrase):

確認密碼后,將生成密鑰并將其存儲在默認位置,并顯示以下消息。

Your identification has been saved in    C:\Users\username/.ssh/id_ed25519.
Your public key has been saved in C:\Users\username/.ssh/id_ed25519.pub.
The key fingerprint is:
SHA256:W6ceE1mGIi87YjD9BEUoROg3Aie/fOZMr1c+qOSD8Wk email@example.com
The key's randomart image is:
+--[ED25519 256]--+
| +o  oo          |
+----[SHA256]-----+

在 Linux 上生成密鑰

啟動 Linux shell 并使用以下命令創(chuàng)建 SSH 密鑰對。

$ ssh-keygen -t ed25519 -C email@example.com

系統(tǒng)會提示您輸入密鑰的位置。默認值在括號中顯示為?(/home/username/.ssh/id_ed25519)

注意:建議使用此目錄。因為在登錄時,SSH會在默認目錄中查找密鑰。如果使用默認目錄以外的目錄,則需要顯式指定鍵位置。

按下可使用默認位置。ENTER

Generating public/private ed25519 key pair.
Enter file in which to save the key (C:\Users\username/.ssh/id_ed25519):

系統(tǒng)會提示輸入密鑰的密碼。您可以根據(jù)需要輸入密碼,也可以按下創(chuàng)建沒有密碼的鍵。如果您選擇輸入密碼,則每次使用此密鑰登錄時都需要使用它。ENTER

Enter passphrase (empty for no passphrase):

確認密碼后,將生成密鑰并將其存儲在默認位置,并顯示以下消息。

Your identification has been saved in /home/ubuntu/.ssh/id_ed25519
Your public key has been saved in /home/ubuntu/.ssh/id_ed25519.pub

The key fingerprint is:
SHA256:c0hYyBV+e1vY7DUVage/3nYk4z9DvxzrLmsiek7dkZE email@example.com
The key's randomart image is:
+--[ED25519 256]--+
|     . o+.   . . |
+----[SHA256]-----+
|      o+      = .|

在Mac上生成密鑰

啟動終端并使用以下命令生成 SSH 密鑰對。

% ssh-keygen -t ed25519 -C email@example.com

系統(tǒng)會提示您輸入生成密鑰的位置。默認值在括號中顯示為?(/Users/Username/.ssh/id_ed25519)。

注意:建議使用此目錄。因為在登錄時,SSH會在默認目錄中查找密鑰。如果使用默認目錄以外的目錄,則需要顯式指定鍵位置。

按下可使用默認位置。ENTER

Generating public/private ed25519 key pair.
Enter file in which to save the key (/Users/Username/.ssh/id_ed25519):

系統(tǒng)會提示輸入密鑰的密碼。您可以根據(jù)需要輸入密碼,也可以按下創(chuàng)建沒有密碼的鍵。如果您選擇輸入密碼,則每次使用此密鑰登錄時都需要使用它。ENTER

Enter passphrase (empty for no passphrase):

確認密碼后,將生成密鑰并將其存儲在默認位置,并顯示以下消息。

Your identification has been saved in    /Users/Username/.ssh/id_ed25519.
Your public key has been saved in /Users/Username/.ssh/id_ed25519.pub.
The key fingerprint is:
SHA256:W6ceE1mGIi87YjD9BEUoROg3Aie/fOZMr1c+qOSD8Wk email@example.com
The key's randomart image is:
+--[ED25519 256]--+
| +o  oo          |
+----[SHA256]-----+

如何向現(xiàn)有服務(wù)器添加密鑰

SCP 命令用于將文件復(fù)制到遠程服務(wù)器。必須將公有 SSH 密鑰復(fù)制到服務(wù)器才能啟用 SSH 身份驗證。您可以使用該命令將公鑰復(fù)制到遠程服務(wù)器。scp

啟動命令提示符或 Linux shell,然后執(zhí)行以下命令以復(fù)制公鑰。

C:\users\username> scp C:\Users\username\.ssh\id_ed25519.pub example_user@192.0.2.123:/home/example_user 

哪里

  • SCP- 復(fù)制文件的命令
  • C:\Users\username\.ssh\id_ed25519.pub- 生成的公鑰位置
  • example_user- 需要將文件復(fù)制到的服務(wù)器的用戶名。您需要有權(quán)訪問此服務(wù)器
  • 192.0.2.123- 服務(wù)器的IP地址
  • /home/example_user- 服務(wù)器上的目標文件夾位置

文件將復(fù)制到目錄中。現(xiàn)在,您需要將密鑰復(fù)制到文件中并啟用 SSH 身份驗證。登錄到新創(chuàng)建的 Vultr 服務(wù)器,并使用以下命令導(dǎo)航到用戶的主目錄。authorized_keys

$ cd /home/example_user/ 

如果目錄尚不存在,請使用以下命令創(chuàng)建一個目錄。.ssh

$ mkdir .ssh

導(dǎo)航到 .ssh 文件夾。

$ cd .ssh

使用以下命令創(chuàng)建一個將公鑰存儲在服務(wù)器中的密鑰。authorized_keys

$ touch authorized_keys

僅當文件不存在時,該命令才會創(chuàng)建文件。touch

創(chuàng)建文件后,使用如下所示的命令將公鑰的內(nèi)容復(fù)制到文件中。authorized_keyscat

$ cat /home/example_user/id_ed25519.pub >> authorized_keys

鑰匙放置在適當?shù)奈恢谩?/p>

啟用 SSH 密鑰身份驗證

SSH 身份驗證方法在名為sshd_config.

要使用 SSH 密鑰啟用身份驗證,請使用以下命令導(dǎo)航到該目錄。/etc/ssh/

$ cd /etc/ssh 

使用以下命令打開文件。sshd_config

$ sudo nano sshd_config

在文件中,查找并取消注釋以下兩行。

PubkeyAuthentication yes
AuthorizedKeysFile  .ssh/authorized_keys   .ssh/authorized_keys2

將參數(shù)設(shè)置為啟用使用公鑰的身份驗證。該參數(shù)指定公鑰的位置?,F(xiàn)在,密鑰已添加到現(xiàn)有服務(wù)器。您可以使用下一節(jié)中定義的步驟使用公鑰通過 SSH 連接到服務(wù)器。PubkeyAuthenticationyesAuthorizedKeysFile

如何使用密鑰連接

OpenSSH 客戶端提供與服務(wù)器建立 SSH 連接的命令。啟動命令提示符,然后使用以下命令使用 SSH 密鑰通過 SSH 連接到服務(wù)器。ssh

C:\users\username>  ssh example_user@192.0.2.123

哪里

  • ssh- 建立連接的命令
  • example_user- 用于建立連接的用戶名
  • 192.0.2.123- 服務(wù)器的IP地址

此命令將使用本地計算機的默認 ssh 目錄 () 中的私鑰。如果公鑰和私鑰正確匹配,則將建立SSH連接,并且您可以與服務(wù)器通信。./users/.ssh

如何使用密鑰部署新服務(wù)器

要使用 SSH 密鑰部署新服務(wù)器,您需要在 Vultr Dashboard 中創(chuàng)建 SSH 密鑰。請按照以下步驟將 SSH 密鑰添加到您的 Vultr 帳戶。

  1. 登錄到客戶中心。
  2. 單擊右上角的姓名,然后從下拉菜單中選擇?SSH 密鑰。
  3. 單擊藍色的“加號”按鈕以添加密鑰。
  4. 輸入密鑰的描述性名稱。
  5. 將公鑰粘貼到 SSH 密鑰字段中。6jGzBK0
  6. 單擊“添加 SSH 密鑰”按鈕以創(chuàng)建 SSH 密鑰。

將添加 SSH 密鑰,您可以在啟動新服務(wù)器時在 SSH 密鑰部分中選擇此 SSH 密鑰。

相關(guān)文章

使用SSH密鑰連接到VULTR云服務(wù)器

如何使用SSH、RDP或SFTP連接到您的Vultr云服務(wù)器

 

]]>
VPS服務(wù)器與服務(wù)器,哪個更適合您? http://www.vanhostingweb.com/5551.html Mon, 06 May 2024 08:20:34 +0000 http://www.vanhostingweb.com/?p=5551
VPS-HostingvsCloud-Hosting

VPS服務(wù)器與服務(wù)器。哪一個是您網(wǎng)站業(yè)務(wù)的完美主機?在這里找到答案!

在WordPress網(wǎng)站的虛擬主機領(lǐng)域,有兩個流行的選擇脫穎而出:VPS(虛擬專用服務(wù)器)和服務(wù)器。兩者都具有獨特的優(yōu)勢,可以滿足不同的需求。但是哪一個適合您的 WordPress 網(wǎng)站?在這篇博客中,我們將深入探討 VPS服務(wù)器 和云服務(wù)器之間的戰(zhàn)斗,并幫助您做出明智的決定。

 

在我們進行比較之前,讓我們了解它們是什么以及它們的優(yōu)缺點。

什么是VPS服務(wù)器?

Virtual-Private-Server-1024x576-1
圖片來源:?神秘主題

虛擬專用服務(wù)器 (VPS) 是在物理服務(wù)器上創(chuàng)建的隔離和虛擬環(huán)境,由托管服務(wù)提供商擁有或運營。該過程涉及將物理服務(wù)器劃分為多個虛擬服務(wù)器,每個虛擬服務(wù)器都有自己的資源、操作系統(tǒng)和專用環(huán)境。

例如,您租了一套公寓或公寓。這是您關(guān)于托管的虛擬空間。房間將有自己的資源,如家具、電視等。您的公寓或公寓所在的建筑物是您的物理服務(wù)器或 VPS。你有自己的個人空間,但你的鄰居將與你共享這棟樓。

這種設(shè)置增強了用戶的控制和定制能力,使其成為需要可擴展解決方案和增加流量列的企業(yè)的理想選擇。

為您的 WordPress 網(wǎng)站托管 VPS服務(wù)器 的主要優(yōu)勢:

性能優(yōu)化

通過分配專用資源,VPS服務(wù)器托管確保了WordPress網(wǎng)站的一致性能,即使在活動增加的時期也是如此。

可擴展性

VPS 服務(wù)器計劃允許您在無縫資源增強的幫助下納入業(yè)務(wù)增長條款。這對您的業(yè)務(wù)大有裨益,因為它可以幫助您保持網(wǎng)站或業(yè)務(wù)的增長和需求。

安全

VPS服務(wù)器為您提供強大的安全措施來保護您網(wǎng)站的數(shù)據(jù)。

由于VPS服務(wù)器提供了一個專門針對您的特定需求的虛擬化環(huán)境。這種隔離轉(zhuǎn)化為顯著的安全優(yōu)勢,保護您的數(shù)據(jù)和在線狀態(tài)免受各種威脅。

成本效益

VPS服務(wù)器最重要的用途之一是您為使用的內(nèi)容付費?,F(xiàn)在,我們知道此托管提供固定的資源分配,這可能或多或少于您的需求。

因此,您可以根據(jù)需要擴展資源,從而消除了為未使用資源多付錢的可能性,并避免了因資源不足而導(dǎo)致的性能瓶頸。

什么是云服務(wù)器?

Cloud-Server

云服務(wù)器是一種托管服務(wù),可將您網(wǎng)站的數(shù)據(jù)和應(yīng)用程序存儲在虛擬服務(wù)器網(wǎng)絡(luò)上,而不是單個物理服務(wù)器上。

云服務(wù)器是當今最受歡迎的托管服務(wù)之一。由于其高可擴展性、可靠性、易于管理和按需資源設(shè)施,該服務(wù)受到世界各地各種大型和小型組織的信任。

但是您需要注意的關(guān)于此服務(wù)的一件事是,成本可能會波動,并且與VPS服務(wù)器相比,您對資源環(huán)境的控制更少。

但在我們比較這兩者之前,讓我們先看看云托管服務(wù)的主要優(yōu)勢。

云服務(wù)器為您的 WordPress 網(wǎng)站提供的主要優(yōu)勢:

高擴展性

借助云服務(wù)器,您可以輕松地按需擴展或縮減資源,而無需擔心購買新硬件和遷移整個網(wǎng)站。

出色的正常運行時間和可靠性

云服務(wù)器服務(wù)提供商擁有冗余系統(tǒng),這意味著您的網(wǎng)站不太可能因服務(wù)器故障而出現(xiàn)停機。如果一臺服務(wù)器出現(xiàn)故障,您的網(wǎng)站可以自動切換到另一臺服務(wù)器,而中斷最小。

靈活性

它非常適合流量模式不可預(yù)測的網(wǎng)站或偶爾需要大量資源的網(wǎng)站。您只需偶爾為資源付費。您只需為使用的資源付費,使其成為任何企業(yè)的具有成本效益的選擇。

最低服務(wù)管理要求

與傳統(tǒng)托管不同,您經(jīng)常需要管理自己的服務(wù)器,云服務(wù)器服務(wù)提供商為您處理大部分維護和技術(shù)任務(wù)。這意味著您可以減少對服務(wù)器維護和管理的擔憂,而是專注于您的業(yè)務(wù)以獲得更大的繁榮。

一流的安全性

云服務(wù)器提供商在安全措施方面投入了大量資金,以保護您的數(shù)據(jù)和應(yīng)用程序。它們提供防火墻、入侵檢測和 DDoS 保護等功能,以確保您的網(wǎng)站免受網(wǎng)絡(luò)攻擊。

VPS服務(wù)器與云服務(wù)器:比較

特征 VPS服務(wù)器 云服務(wù)器
環(huán)境 物理服務(wù)器上的隔離虛擬環(huán)境 虛擬服務(wù)器網(wǎng)絡(luò)
控制 用戶控制和定制能力強 減少對資源環(huán)境的控制
可擴展性 可通過無縫資源增強進行擴展 高度可擴展,可以根據(jù)需求調(diào)整資源。
安全 隔離環(huán)境,提供強大的安全措施 具有防火墻和入侵檢測等功能的一流安全性
成本 按實際使用量付費;固定資源分配。 為您使用的資源付費;成本可能會波動。
管理 需要更多的用戶管理。 用戶需要最少的服務(wù)管理。
VPS服務(wù)器和云服務(wù)器的比較表

這些只是這兩種托管服務(wù)之間的根本區(qū)別。每種方法都有自己的一套優(yōu)勢,適用于不同的業(yè)務(wù)和增長階段。

哪一個是您業(yè)務(wù)的正確選擇?

正確的選擇始終是最適合您業(yè)務(wù)的選擇。在這兩種服務(wù)之間進行選擇之前,您必須考慮各種因素。

以下是您在 VPS 服務(wù)器和云服務(wù)器之間進行選擇之前需要考慮的因素清單:

性能和可靠性:VPS服務(wù)器提供一致的性能和可靠的服務(wù),而云服務(wù)器旨在處理流量的大幅激增。因此,根據(jù)您的業(yè)務(wù)及其流量,您必須在這兩者之間進行選擇。

可擴展性和靈活性:您必須考慮業(yè)務(wù)增長以及擴展資源所需的速度。云服務(wù)器允許立即擴展,而 VPS 服務(wù)器可能會受到物理服務(wù)器容量的限制。

安全和數(shù)據(jù)保護:您還應(yīng)該確定您的業(yè)務(wù)所需的安全級別。VPS 服務(wù)器提供了一個安全、隔離的環(huán)境,但由于其分布式特性,云托管可能會提供更高級的安全功能。

成本和定價結(jié)構(gòu):評估您的預(yù)算。VPS 服務(wù)器具有固定的月費率,而云服務(wù)器采用即用即付模式,根據(jù)使用情況可能更具成本效益。

管理和控制:確定要對服務(wù)器進行多少控制和管理。VPS 服務(wù)器需要更多的實際管理,而云托管通常由提供商管理。

結(jié)論

因此,在 VPS服務(wù)器 和云服務(wù)器之間進行選擇完全取決于您的業(yè)務(wù)需求。評估您企業(yè)的特定需求非常重要。

總而言之,VPS 服務(wù)器提供了一個受控的、可定制的環(huán)境和專用資源,使其適合具有可預(yù)測流量的企業(yè)和需要強大安全措施的企業(yè)。

另一方面,云服務(wù)器在可擴展性和靈活性方面表現(xiàn)出色,使其成為處理不可預(yù)測的流量激增和最大限度地減少管理責(zé)任的理想選擇。

通過仔細考慮提到的所有因素,您可以選擇與您的業(yè)務(wù)目標和增長完全一致的托管服務(wù)。

]]>
Vultr服務(wù)器是否預(yù)裝了 cPanel/WHM、WordPress、PHP、MySQL 等? http://www.vanhostingweb.com/5400.html Tue, 03 Oct 2023 12:43:45 +0000 http://www.vanhostingweb.com/?p=5400 Vultr服務(wù)器是否預(yù)裝了 cPanel/WHM、WordPress、PHP、MySQL 等?

默認情況下,vultr服務(wù)器將安裝干凈的操作系統(tǒng),而無需這些附加軟件包,但您將擁有完整的 root/管理員權(quán)限來安裝所需的任何附加軟件。國內(nèi)的用戶建議直接使用寶塔面板即可滿足大多數(shù)的要求。vultr服務(wù)器搭建寶塔面板圖文教程

如果您希望您的實例附帶一些已安裝的預(yù)打包軟件,我們確實提供了一套一鍵式應(yīng)用程序,可添加一些流行的軟件包,包括 cPanel/WHM、LEMP、OpenVPN 等。

vultr服務(wù)器提供下面的一鍵式應(yīng)用程序供大家使用。

]]>
Linux系統(tǒng)開啟和關(guān)閉防火墻命令 http://www.vanhostingweb.com/5083.html Fri, 11 Mar 2022 15:27:04 +0000 http://www.vanhostingweb.com/?p=5083 Linux系統(tǒng)開啟和關(guān)閉防火墻命令

1.永久有效

開啟: chkconfig iptables on
關(guān)閉:?chkconfig iptables off

2.即刻生效

開啟: service iptables start
關(guān)閉:?service iptables stop

3.開啟部分端口

vim /etc/sysconfig/iptables
添加想要開啟的相關(guān)端口
-A INPUT -m state --state NEW -m tcp -p tcp --dport 6379 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8080 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8081 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 8082 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

重啟防火墻命令

service iptables restart

]]>
CentOS7系統(tǒng)服務(wù)器常用命令 http://www.vanhostingweb.com/5078.html Wed, 09 Mar 2022 15:09:34 +0000 http://www.vanhostingweb.com/?p=5078

CentOS7系統(tǒng)服務(wù)器常用命令大全

文件與目錄操作

命令 說明
cd /www 進入 ‘/www’ 目錄
cd .. 返回上一級目錄
cd ../.. 返回上兩級目錄
cd - 返回上次所在目錄
cp file1 file2 將file1復(fù)制為file2
cp -a dir1 dir2 復(fù)制一個目錄
cp -a /tmp/dir1 . 復(fù)制一個目錄到當前工作目錄(.代表當前目錄)
ls 查看目錄中的文件
ls -a 顯示隱藏文件
ls -l 顯示詳細信息
ls -lrt 按時間顯示文件(l表示詳細列表,r表示反向排序,t表示按時間排序)
pwd 顯示工作路徑
mkdir dir1 創(chuàng)建 ‘dir1’ 目錄
mkdir dir1 dir2 同時創(chuàng)建兩個目錄
mkdir -p /tmp/dir1/dir2 創(chuàng)建一個目錄樹
mv dir1 dir2 移動/重命名一個目錄
rm -f file1 刪除 ‘file1’
rm -rf dir1 刪除 ‘dir1’ 目錄及其子目錄內(nèi)容

查看文件內(nèi)容

命令 說明
cat file1 從第一個字節(jié)開始正向查看文件的內(nèi)容
head -2 file1 查看一個文件的前兩行
more file1 查看一個長文件的內(nèi)容
tac file1 從最后一行開始反向查看一個文件的內(nèi)容
tail -3 file1 查看一個文件的最后三行
vi file 打開并瀏覽文件

文本內(nèi)容處理

命令 說明
grep str /tmp/test 在文件 ‘/tmp/test’ 中查找 “str”
grep ^str /tmp/test 在文件 ‘/tmp/test’ 中查找以 “str” 開始的行
grep [0-9] /tmp/test 查找 ‘/tmp/test’ 文件中所有包含數(shù)字的行
grep str -r /tmp/* 在目錄 ‘/tmp’ 及其子目錄中查找 “str”
diff file1 file2 找出兩個文件的不同處
sdiff file1 file2 以對比的方式顯示兩個文件的不同
vi file
操作 說明
i 進入編輯文本模式
Esc 退出編輯文本模式
:w 保存當前修改
:q 不保存退出vi
:wq 保存當前修改并退出vi

查詢操作

命令 說明
find / -name file1 從 ‘/’ 開始進入根文件系統(tǒng)查找文件和目錄
find / -user user1 查找屬于用戶 ‘user1’ 的文件和目錄
find /home/user1 -name *.bin 在目錄 ‘/ home/user1’ 中查找以 ‘.bin’ 結(jié)尾的文件
find /usr/bin -type f -atime +100 查找在過去100天內(nèi)未被使用過的執(zhí)行文件
find /usr/bin -type f -mtime -10 查找在10天內(nèi)被創(chuàng)建或者修改過的文件
locate *.ps 尋找以 ‘.ps’ 結(jié)尾的文件,先運行 ‘updatedb’ 命令
find -name ‘*.[ch]’ | xargs grep -E ‘expr’ 在當前目錄及其子目錄所有.c和.h文件中查找 ‘expr’
find -type f -print0 | xargs -r0 grep -F ‘expr’ 在當前目錄及其子目錄的常規(guī)文件中查找 ‘expr’
find -maxdepth 1 -type f | xargs grep -F ‘expr’ 在當前目錄中查找 ‘expr’

壓縮、解壓

命令 說明
bzip2 file1 壓縮 file1
bunzip2 file1.bz2 解壓 file1.bz2
gzip file1 壓縮 file1
gzip -9 file1 最大程度壓縮 file1
gunzip file1.gz 解壓 file1.gz
tar -cvf archive.tar file1 把file1打包成 archive.tar(-c: 建立壓縮檔案;-v: 顯示所有過程;-f: 使用檔案名字,是必須的,是最后一個參數(shù))
tar -cvf archive.tar file1 dir1 把 file1,dir1 打包成 archive.tar
tar -tf archive.tar 顯示一個包中的內(nèi)容
tar -xvf archive.tar 釋放一個包
tar -xvf archive.tar -C /tmp 把壓縮包釋放到 /tmp目錄下
zip file1.zip file1 創(chuàng)建一個zip格式的壓縮包
zip -r file1.zip file1 dir1 把文件和目錄壓縮成一個zip格式的壓縮包
unzip file1.zip 解壓一個zip格式的壓縮包到當前目錄
unzip test.zip -d /tmp/ 解壓一個zip格式的壓縮包到 /tmp 目錄

yum安裝器

命令 說明
yum -y install [package] 下載并安裝一個rpm包
yum localinstall [package.rpm] 安裝一個rpm包,使用你自己的軟件倉庫解決所有依賴關(guān)系
yum -y update 更新當前系統(tǒng)中安裝的所有rpm包
yum update [package] 更新一個rpm包
yum remove [package] 刪除一個rpm包
yum list 列出當前系統(tǒng)中安裝的所有包
yum search [package] 在rpm倉庫中搜尋軟件包
yum clean [package] 清除緩存目錄(/var/cache/yum)下的軟件包
yum clean headers 刪除所有頭文件
yum clean all 刪除所有緩存的包和頭文件

網(wǎng)絡(luò)相關(guān)

命令 說明
ifconfig eth0 顯示一個以太網(wǎng)卡的配置
ifconfig eth0 192.168.1.1 netmask 255.255.255.0 配置網(wǎng)卡的IP地址
ifdown eth0 禁用 ‘eth0’ 網(wǎng)絡(luò)設(shè)備
ifup eth0 啟用 ‘eth0’ 網(wǎng)絡(luò)設(shè)備
iwconfig eth1 顯示一個無線網(wǎng)卡的配置
iwlist scan 顯示無線網(wǎng)絡(luò)
ip addr show 顯示網(wǎng)卡的IP地址

系統(tǒng)相關(guān)

命令 說明
su - 切換到root權(quán)限(與su有區(qū)別)
shutdown -h now 關(guān)機
shutdown -r now 重啟
top 羅列使用CPU資源最多的linux任務(wù) (輸入q退出)
pstree 以樹狀圖顯示程序
man ping 查看參考手冊(例如ping 命令)
passwd 修改密碼
df -h 顯示磁盤的使用情況
cal -3 顯示前一個月,當前月以及下一個月的月歷
cal 10 1988 顯示指定月,年的月歷
date –date ‘1970-01-01 UTC 1427888888 seconds’ 把一相對于1970-01-01 00:00的秒數(shù)轉(zhuǎn)換成時間

XSheel 5相關(guān)操作

窗體快捷鍵

命令 說明
Ctrl + u 刪除光標之前到行首的字符
Ctrl + k 刪除光標之前到行尾的字符
Ctrl + c 取消當前行輸入的命令,相當于Ctrl + Break
Ctrl + a 光標移動到行首(ahead of line),相當于通常的Home鍵
Ctrl + e 光標移動到行尾(end of line)
Ctrl + f 光標向前(forward)移動一個字符位置
Ctrl + b 光標往回(backward)移動一個字符位置
Ctrl + l 清屏,相當于執(zhí)行clear命令
Ctrl + r 顯示:號提示,根據(jù)用戶輸入查找相關(guān)歷史命令(reverse-i-search)
Ctrl + w 刪除從光標位置前到當前所處單詞(word)的開頭
Ctrl + t 交換光標位置前的兩個字符
Ctrl + y 粘貼最后一次被刪除的單詞
Ctrl + Alt + d 顯示桌面
Alt + b 光標往回(backward)移動到前一個單詞
Alt + d 刪除從光標位置到當前所處單詞的末尾
Alt + F2 運行
Alt + F4 關(guān)閉當前窗口
Alt + F9 最小化當前窗口
Alt + F10 最大化當前窗口
Alt + Tab 切換窗口
Alt + 左鍵 移動窗口(或在最下面的任務(wù)欄滾動鼠標滑輪)

操作小技巧

鼠標中間鍵:粘貼突出顯示的文本。(使用鼠標左鍵來選擇文本。把光標指向想粘貼文本的地方。點擊鼠標中間鍵來粘貼。)

Tab:命令行自動補全。使用 shell 提示時可使用這一方式。鍵入命令或文件名的前幾個字符,然后按 [Tab] 鍵,它會自動補全命令或顯示匹配鍵入字符的所有命令。

在滾動條的空白處點擊鼠標中鍵:屏幕即滾動到那個地方。

在桌面或文件管理器中直接按 / 就可以輸入位置,打開文件管理器。

在 vi 或 Firefox 中直接按 / 即可進入快速搜索狀態(tài)。

網(wǎng)站鏈接和圖片可直接拖放到桌面或者目錄,可以馬上下載。

直接將文件管理器中的文件拖到終端中就可以在終端中得到完整的路徑名。

]]>
寶塔面板linux命令大全 http://www.vanhostingweb.com/5011.html Mon, 17 Jan 2022 08:27:51 +0000 http://www.vanhostingweb.com/?p=5011 安裝寶塔
Centos安裝腳本
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

Ubuntu/Deepin安裝腳本

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh

Debian安裝腳本

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh

Fedora安裝腳本

wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh

管理寶塔

寶塔工具箱(包含下列絕大部分功能 直接ssh中執(zhí)行bt命令 僅限6.x以上版本面板)

bt

停止

/etc/init.d/bt stop

啟動

/etc/init.d/bt start

重啟

/etc/init.d/bt restart

卸載

/etc/init.d/bt stop && chkconfig --del bt && rm -f /etc/init.d/bt && rm -rf /www/server/panel

查看當前面板端口

cat /www/server/panel/data/port.pl

修改面板端口,如要改成8881(centos 6 系統(tǒng))

echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restart
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 8881 -j ACCEPT
service iptables save
service iptables restart

修改面板端口,如要改成8881(centos 7 系統(tǒng))

echo '8881' > /www/server/panel/data/port.pl && /etc/init.d/bt restart
firewall-cmd --permanent --zone=public --add-port=8881/tcp
firewall-cmd --reload

強制修改MySQL管理(root)密碼,如要改成123456

cd /www/server/panel && python tools.py root 123456

修改面板密碼,如要改成123456

cd /www/server/panel && python tools.py panel 123456

查看寶塔日志

cat /tmp/panelBoot.pl

查看軟件安裝日志

cat /tmp/panelExec.log

站點配置文件位置

/www/server/panel/vhost

刪除域名綁定面板

rm -f /www/server/panel/data/domain.conf

清理登陸限制

rm -f /www/server/panel/data/*.login

查看面板授權(quán)IP

cat /www/server/panel/data/limitip.conf

關(guān)閉訪問限制

rm -f /www/server/panel/data/limitip.conf

查看許可域名

cat /www/server/panel/data/domain.conf

關(guān)閉面板SSL

rm -f /www/server/panel/data/ssl.pl && /etc/init.d/bt restart

查看面板錯誤日志

cat /tmp/panelBoot

查看數(shù)據(jù)庫錯誤日志

cat /www/server/data/*.err

站點配置文件目錄(nginx)

/www/server/panel/vhost/nginx

站點配置文件目錄(apache)

/www/server/panel/vhost/apache

站點默認目錄

/www/wwwroot

數(shù)據(jù)庫備份目錄

/www/backup/database

站點備份目錄

/www/backup/site

站點日志

/www/wwwlogs

Nginx服務(wù)管理

nginx安裝目錄

/www/server/nginx

啟動

/etc/init.d/nginx start

停止

/etc/init.d/nginx stop

重啟

/etc/init.d/nginx restart

啟載

/etc/init.d/nginx reload

nginx配置文件

/www/server/nginx/conf/nginx.conf

Apache服務(wù)管理

apache安裝目錄

/www/server/httpd

啟動

/etc/init.d/httpd start

停止

/etc/init.d/httpd stop

重啟

/etc/init.d/httpd restart

啟載

/etc/init.d/httpd reload

apache配置文件

/www/server/apache/conf/httpd.conf

MySQL服務(wù)管理

mysql安裝目錄

/www/server/mysql

phpmyadmin安裝目錄

/www/server/phpmyadmin

數(shù)據(jù)存儲目錄

/www/server/data

啟動

/etc/init.d/mysqld start

停止

/etc/init.d/mysqld stop

重啟

/etc/init.d/mysqld restart

啟載

/etc/init.d/mysqld reload

mysql配置文件

/etc/my.cnf

FTP服務(wù)管理

ftp安裝目錄

/www/server/pure-ftpd

啟動

/etc/init.d/pure-ftpd start

停止

/etc/init.d/pure-ftpd stop

重啟

/etc/init.d/pure-ftpd restart

ftp配置文件

/www/server/pure-ftpd/etc/pure-ftpd.conf

PHP服務(wù)管理

php安裝目錄

/www/server/php

啟動(請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 start)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} start

停止(請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 stop)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} stop

重啟(請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 restart)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} restart

啟載(請根據(jù)安裝PHP版本號做更改,例如:/etc/init.d/php-fpm-54 reload)

/etc/init.d/php-fpm-{52|53|54|55|56|70|71|72|73|74} reload

配置文件(請根據(jù)安裝PHP版本號做更改,例如:/www/server/php/52/etc/php.ini)

/www/server/php/{52|53|54|55|56|70|71|72|73|74}/etc/php.ini

Redis服務(wù)管理

redis安裝目錄

/www/server/redis

啟動

/etc/init.d/redis start

停止

/etc/init.d/redis stop

redis配置文件

/www/server/redis/redis.conf

Memcached服務(wù)管理

memcached安裝目錄

/usr/local/memcached

啟動

/etc/init.d/memcached start

停止

/etc/init.d/memcached stop

重啟

/etc/init.d/memcached restart

啟載

/etc/init.d/memcached reload
]]>
恒創(chuàng)云服務(wù)器在安全組中放行寶塔面板8888端口 http://www.vanhostingweb.com/4926.html Wed, 15 Dec 2021 02:49:11 +0000 http://www.vanhostingweb.com/?p=4926 以前購買的恒創(chuàng)云服務(wù)器由以前的V3云服務(wù)器免費升級遷移至 V4 云平臺,所以得重新安裝寶塔面板,以前安裝后不用修改端口放行啥的,升級后的服務(wù)器卻需要修改放行端口,不然無法訪問。今天我們就來看看如何恒創(chuàng)云服務(wù)器如何在安全組中放行寶塔面板8888端口。

操作步驟:

1. 登錄會員中心,進入需要添加規(guī)則的云服務(wù)器管理頁面。

2. 在云服務(wù)器管理頁面的上方導(dǎo)航欄,點擊進入“安全組”管理頁面。

3. 在安全組界面,點擊控制列的“配置規(guī)則”,進入安全組規(guī)則詳情界面。

1605056780694245

4. 點擊右側(cè)上方的“創(chuàng)建”,開始添加新的安全組規(guī)則。

1605056781129909

5. 選擇“入方向”,選擇“自定義TCP”,端口范圍輸入“8888”,授權(quán)IP輸入“0.0.0.0/0”(表示允許所有IP來源訪問 8888 端口,當然你也可以指定IP或IP段),點擊確定即可。

1605056841627304

然后再訪問面板,正常。

]]>
寶塔面板徹底刪除命令 http://www.vanhostingweb.com/4484.html Mon, 19 Apr 2021 08:33:49 +0000 http://www.vanhostingweb.com/?p=4484 最近在,安裝寶塔面板時,由于操作失誤,導(dǎo)致某個設(shè)置有問題,所以就想刪除重新安裝,在官網(wǎng)找到一個刪除命令

/etc/init.d/bt stop && chkconfig --del bt && rm -f /etc/init.d/bt && rm -rf /www/server/panel

執(zhí)行后,

寶塔面板最新安裝命令

再安裝寶塔面板發(fā)現(xiàn)。不用安裝運行環(huán)境,可以直接使用。對于我這種有強迫癥的來說,不是全新的就容易出問題。所以就想刪除寶塔全部文件,然后全新安裝。找到官方,給出了下面的命令。

首先執(zhí)行下面命令:

wget http://download.bt.cn/install/bt-uninstall.sh

然后再執(zhí)行下面命令

sh bt-uninstall.sh

如果你只是想卸載面板,選擇1就行了。如果想卸載面板及運行環(huán)境,就選擇2

刪除完成。

]]>
亚洲中文色欧另类欧美,久久久久久久激情,亚洲 日韩 欧美 另类 国产,中文字幕高清无码男人的天堂 www.sucaiwu.net