首页 > 其他分享 >VNC Config

VNC Config

时间:2023-12-17 22:36:41浏览次数:24  
标签:www VNC com https oracle Config

VNC Config

Steps 

 

  1. Vmware 安装 redhat 8.9

  2. 连接网络

  3. subscription-manager register 注册 redhat账户

  4. vi  /etc/selinux/config, 设置SELINUX=disabled

  5. yum install tigervnc-server tigervnc

  6. adduser oracle

  7. passwd oracle

  8. su - oracle

  9. vncpasswd

  10. vim /etc/tigervnc/vncserver.users,  添加 :1=oracle

  11. systemctl enable vncserver@:1.service

  12. systemctl start vncserver@:1.service

  13. systemctl stop firewalld 

 

Reference

https://blog.csdn.net/u011016933/article/details/112151937

https://www.cnblogs.com/gaizhongfeng/p/14162596.html

https://linux.cn/article-11458-1.html

https://www.zhihu.com/column/c_1392900622857891840

https://zhuanlan.zhihu.com/p/556664196

https://blog.csdn.net/aaaaaaaTi/article/details/107132005

https://zhuanlan.zhihu.com/p/86611534

https://www.cnblogs.com/afei654138148/p/14934207.html

标签:www,VNC,com,https,oracle,Config
From: https://www.cnblogs.com/pugang/p/17909980.html

相关文章

  • Nginx 配置(Config)中遇到的错误(Error)
    原文:https://ichochy.com/posts/software/20231125.htmlnginxlocation正则错误写法location错误的写法匹配请求目录地址/555server{location~^/\d{2,3}${……}}分析正则location~^/\d{2,3}$~为开启正则匹配,这个不能少^为字符的开始匹......
  • tsconfig.json文件配置
    tsconfig.json配置TypeScript使用tsconfig.json文件作为其配置文件,当一个目录中存在tsconfig.json文件,则认为该目录为TypeScript项目的根目录。基础字段files-设置要编译的文件的名称;['./src/main.tsx']include-设置需要进行编译的文件,支持路径模式匹配;['src']......
  • hadoop:通过Configuration读取hdfs
    packagetju;importorg.apache.hadoop.conf.Configuration;importorg.apache.hadoop.fs.FSDataInputStream;importorg.apache.hadoop.fs.FSDataOutputStream;importorg.apache.hadoop.fs.FileSystem;importorg.apache.hadoop.fs.Path;importorg.apache.hadoop.io......
  • logback error Logging system failed to initialize using configuration from 'nul
    *[Afterupgradingtheprojectfromspringboot2.3.4to2.7.0,buildfailwithalogback.xml·Issue#32025·spring-projects/spring-boot·GitHub](https://github.com/spring-projects/spring-boot/issues/32025)*[WhyDoesTheLoggingSystemFailToInitial......
  • spring xml配置文件之context:annotation-config
    我们一般在含有Spring的项目中,可能会看到配置项中包含这个配置节点context:annotation-config。<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-......
  • 当你用neovim的mason插件管理lsp config,并且配置好bash的bashls后,却没有正常工作的解
    刚开始遇到这个情况我百思不得其解,检查了neovimcheckhealth,以为是npm包管理的问题,然后删了下删了下不但没有解决还把包管理整乱了……后来发现是我没仔细看bash-language-server这个包的官方文档。。。以下是bash-language-server的官方仓库:https://github.com/bash-lsp/......
  • spring boot项目中org.springframework.boot.autoconfigure.AutoConfiguration.import
    一、resource下的文件org.springframework.boot.autoconfigure.AutoConfiguration.importsspring.factoriesmessages_zh_CN.properties二、spring.factories文件我们知道在springboot项目中,只要用注解@Configuration、@Bean、@Compont等注解标注的类springboot会自动为......
  • ICEE-Microchip-MPLAB® X IDE-Microchip-MPLAB-MCC(MPLAB® Code Configurator)
    MCC(MPLAB®CodeConfigurator)https://www.microchip.com/en-us/tools-resources/configure/mplab-code-configurator#downloadsMPLAB®CodeConfigurator(MCC)isafreeGPE(graphicalprogrammingenvironment):generatesCcode(seamless,easy-to-understand)to......
  • ICEE-Microchip-MPLAB® X IDE-Microchip-MPLAB-Harmony extension + MHC(**Harmony C
    Microchip-MPLAB-Harmony:Github:https://github.com/Microchip-MPLAB-HarmonyProject:https://www.microchip.com/en-us/tools-resources/configure/mplab-harmonyMPLAB®Harmony3User’sGuide:https://microchip-mplab-harmony.github.ioMPLAB®Harmony3User’s......
  • 玩转 K8s 权限控制:RBAC + kubeconfig 搞定 kubectl 权限管理那些事
    目录1.先抛需求2.RBAC配置2.1.K8s里的RBAC机制介绍2.2创建ServiceAccount、Role、RoleBinding和Secret3.配置kubeconfig文件3.1kubeconfig文件介绍3.2具体的kubeconfig配置3.3kubeconfig切换测试4.总结1.先抛需求当一个K8s集群需要被多个租户共享时,就......