首页 > 其他分享 >GoFurther - Chapter 5: Database Setup and Configuration

GoFurther - Chapter 5: Database Setup and Configuration

时间:2024-11-15 17:18:14浏览次数:1  
标签:Chapter GoFurther ZZHPC Setup greenlight zzh docker root user

 

zzh@ZZHPC:/zdata/Github/greenlight$ docker pull postgres

zzh@ZZHPC:/zdata/Github/greenlight$ docker run --name postgres17 -p 5432:5432 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=root -d postgres:latest

 

zzh@ZZHPC:~$ docker exec -it postgres17 psql -U root
psql (17.1 (Debian 17.1-1.pgdg120+1))
Type "help" for help.

root=# SELECT current_user;
 current_user 
--------------
 root
(1 row)

root=# CREATE DATABASE greenlight;
CREATE DATABASE
root=# \c greenlight
You are now connected to database "greenlight" as user "root".
greenlight=#

 

 

标签:Chapter,GoFurther,ZZHPC,Setup,greenlight,zzh,docker,root,user
From: https://www.cnblogs.com/zhangzhihui/p/18548351

相关文章

  • 【Chapter 4】Machine Learning Regression Case_Second hand Car Price Prediction-X
    文章目录一、XGBoostAlgorithm二、ComparisonofalgorithmimplementationbetweenPythoncodeandSentosa_DSMLcommunityedition(1)Datareadingandstatisticalanalysis(2)dataprocessing(三)Featureselectionandcorrelationanalysis(4)Samplepartit......
  • 使用 WinNTSetup 来安装 Windows 11 24H2 或 Windows Server 2025 可以帮助你快速创建
    使用WinNTSetup来安装Windows1124H2或WindowsServer2025可以帮助你快速创建和部署操作系统。以下是详细的步骤:1.准备工作在开始之前,确保你已经具备以下条件:WinNTSetup 工具。可以从官方网站或者其他可信的来源下载WinNTSetup。Windows1124H2或WindowsServe......
  • setupui.dll 找不到了:快速修复指南
    setupui.dll是Windows操作系统中的一个动态链接库文件,主要用于支持安装程序和系统设置功能。如果这个文件丢失,可能会导致一些应用程序或系统功能无法正常运行。如何修复setupui.dll文件丢失:1.使用系统文件检查器(SFC)工具:•打开命令提示符(以管理员身份)。•输入sfc......
  • 《TCP/IP网络编程》学习笔记 | Chapter 11:进程间通信
    《TCP/IP网络编程》学习笔记|Chapter11:进程间通信《TCP/IP网络编程》学习笔记|Chapter11:进程间通信进程间通信的基本概念通过管道实现进程间通信通过管道进行进程间双向通信运用进程间通信习题(1)什么是进程间通信?分别从概念和内存的角度进行说明。(2)进程间通信需要......
  • 常见 setup.exe 参数 有关 Setup 命令行参数的其他信息,请参阅 Setup Help 文件。有
    Windows安装程序安装或升级Windows。Setup.exe[/debughelp][/auto<upgrade;dataonly;clean>][/quiet][/installdrivers<driver_folder_path>][/noreboot][/installangpacks<language_packfolder_path>][/showoobe<none;full>][/unattend:<ans......
  • VUE3 script setup里面如何动态更新整个页面的背景图片
    1.使用内联样式和响应式数据步骤一:创建响应式数据来存储背景图片的URL在scriptsetup中,可以使用ref来创建一个响应式的变量来存储背景图片的URL。<template><div><button@click="changeBackground">更换背景图片</button></div></template><scriptsetup>......
  • chapter17
    malloc.py参数中文版第一题问题1.首先运行flag-n10-H0-pBEST-s0来产生一些随机分配和释放。你能预测malloc()/free()会返回什么吗?你可以在每次请求后猜测空闲列表的状态吗?随着时间的推移,你对空闲列表有什么发现?空闲列表不会合并,导致外部碎片越来越多第二题......
  • 【Chapter 1: Overview of Sentosa_DSML Community Edition】
    文章目录Chapter1:OverviewofSentosa_DSMLCommunityEdition1.WhatisDSML?2.WhatisSentosa_DSML?3.PositioningoftheSentosa_DSMLCommunityEdition4.WhatisSentosa_DSMLCommunityEdition?![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/51e1c2......
  • chapter15
    relocation.py参数第一题问题用种子1、2和3运行,并计算进程生成的每个虚拟地址是处于界限内还是界限外?如果在界限内,请计算地址转换。种子为1时:种子为2时:种子为3时:第二题问题使用以下标志运行:-s0-n10。为了确保所有生成的虚拟地址都处于边界内,要将-l(界限寄......
  • WinNTSetup 使用教程的框架,您可以根据自己的需求深入研究每个部分,特别是集成驱动、应
    WinNTSetupv5.3.5.2-InstallWindowsfromUSB-MSFNWinNTSetup官方原版多国语言版下载链接:https://www.mediafire.com/folder/53um6k2nmhvd5/https://www.mediafire.com/file/rbpu88tre4nxwbe/WinNTSetup_v5352.rar/fileWinNTSetupv5352初级使用教程大纲引言WinNTSet......