当前位置: 首页 > news >正文

南京html5网站建设嘉兴市秀洲区住房和建设局网站

南京html5网站建设,嘉兴市秀洲区住房和建设局网站,中国广告公司前十强,能制作图片的软件CentOS7静默安装oracle11g 一、下载Oracle11g安装包二、开始安装oracle11g三、配置Oracle监听程序四、添加数据库实例五、设置开机启动六、登录后解除锁定 一、下载Oracle11g安装包 下载链接#xff1a;https://pan.baidu.com/s/1gcLMFGX7-8ju7OoFOFLzQA 提取码#xff1a;6… CentOS7静默安装oracle11g 一、下载Oracle11g安装包二、开始安装oracle11g三、配置Oracle监听程序四、添加数据库实例五、设置开机启动六、登录后解除锁定 一、下载Oracle11g安装包 下载链接https://pan.baidu.com/s/1gcLMFGX7-8ju7OoFOFLzQA 提取码636s 也可在oracle官网下载 关闭防火墙 service iptables stop systemctl stop firewalld systemctl disable firewalld关闭selinux 使用以下命令进入配置文件将SELINUX的值修改为disabled vi /etc/selinux/config# This file controls the state of SELinux on the system. # SELINUX can take one of these three values: # enforcing - SELinux security policy is enforced. # permissive - SELinux prints warnings instead of enforcing. # disabled - No SELinux policy is loaded. SELINUXdisabled # SELINUXTYPE can take one of three two values: # targeted - Targeted processes are protected, # minimum - Modification of targeted policy. Only selected processes are protected. # mls - Multi Level Security protection. SELINUXTYPEtargeted使用setenforce 0使命令生效 上传下载好的Oracle安装文件 下载安装 unzip 软件用来解压上传的Oracle安装文件 命令为yum install -y unzip zip 开始解压 unzip linux.x64_11gR2_database_1of2.zip unzip linux.x64_11gR2_database_2of2.zip二、开始安装oracle11g 安装Oracle 11g依赖包 yum install yum install gcc make binutils gcc-c compat-libstdc-33 elfutils-libelf-devel elfutils-libelf-devel-static ksh libaio libaio-devel numactl-devel sysstat unixODBC unixODBC-devel pcre-devel -y添加安装用户和用户组 [rootlocalhost opt]# groupadd oinstall [rootlocalhost opt]# groupadd dba [rootlocalhost opt]# useradd -g oinstall -G dba oracle [rootlocalhost opt]# passwd oracle Changing password for user oracle. New password: #输入密码时必须是字符数字特殊字符,否则不通过 Retype new password: passwd: all authentication tokens updated successfully. [rootlocalhost opt]#修改参数 命令如下进入相关配置文件 vi /etc/sysctl.conffs.aio-max-nr 1048576 fs.file-max 6815744 kernel.sem 250 32000 100 128 kernel.shmall 2097152 kernel.shmmax 4294967295 kernel.shmmni 4096 net.core.rmem_default 262144 net.core.rmem_max 4194304 net.core.wmem_default 262144 net.core.wmem_max 1048586 net.ipv4.ip_local_port_range 9000 65500使用sysctl -p使修改的参数立即生效 创建安装目录和设置文件权限 [rootlocalhost ~]# mkdir -p /u01/app/oracle/product/11.2.0 [rootlocalhost ~]# mkdir /u01/app/oracle/oradata [rootlocalhost ~]# mkdir /u01/app/oracle/inventory [rootlocalhost ~]# mkdir /u01/app/oracle/fast_recovery_area [rootlocalhost ~]# chown -R oracle:oinstall /u01/app/oracle [rootlocalhost ~]# chmod -R 775 /u01/app/oracle设置oracle用户环境变量 [rootlocalhost ~]# su - oracle [oraclelocalhost ~]$ vi .bash_profile [oraclelocalhost ~]$添加以下内容 ORACLE_BASE/u01/app/oracle ORACLE_HOME$ORACLE_BASE/product/11.2.0 ORACLE_SIDorcl PATH$PATH:$ORACLE_HOME/bin export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH编辑静默安装响应文件 [oraclelocalhost ~]$ cp -R /opt/database/response/ . [oraclelocalhost ~]$ cd response/ [oraclelocalhost response]$ vi db_install.rsp [oraclelocalhost response]$ 将其中参数值修改为以下内容 oracle.install.optionINSTALL_DB_SWONLY UNIX_GROUP_NAMEoinstall INVENTORY_LOCATION/u01/app/oracle/inventory SELECTED_LANGUAGESen,zh_CN ORACLE_HOME/u01/app/oracle/product/11.2.0 ORACLE_BASE/u01/app/oracle oracle.install.db.InstallEditionEE oracle.install.db.DBA_GROUPdba oracle.install.db.OPER_GROUPdba oracle.install.db.config.starterdb.typeGENERAL_PURPOSE oracle.install.db.config.starterdb.globalDBNameorcl oracle.install.db.config.starterdb.SIDorcl oracle.install.db.config.starterdb.characterSetAL32UTF8 oracle.install.db.config.starterdb.memoryLimit800 oracle.install.db.config.starterdb.password.ALLoracle DECLINE_SECURITY_UPDATEStrue 安装Oracle主程序 进入相应的database目录执行安装命令 [oraclelocalhost response]$ cd /opt/database/ [oraclelocalhost database]$ ./runInstaller -silent -responseFile /home/oracle/response/db_install.rsp -ignorePrereq等待一段时间…(时间的话看机器性能) 出现如上图所示信息说明主程序安装成功安装成功。 三、配置Oracle监听程序 打开一个新命令窗口 执行以下命令 sh /u01/app/oracle/inventory/orainstRoot.sh sh /u01/app/oracle/product/11.2.0/root.sh执行后结果如下 C:\Users\enssh root192.168.66.120 root192.168.66.120s password: Last login: Tue Oct 31 16:57:07 2023 from 192.168.66.1 [rootlocalhost ~]# sh /u01/app/oracle/inventory/orainstRoot.sh Changing permissions of /u01/app/oracle/inventory. Adding read,write permissions for group. Removing read,write,execute permissions for world.Changing groupname of /u01/app/oracle/inventory to oinstall. The execution of the script is complete. [rootlocalhost ~]# sh /u01/app/oracle/product/11.2.0/root.sh Check /u01/app/oracle/product/11.2.0/install/root_localhost.localdomain_2023-10-31_17-42-41.log for the output of root script [rootlocalhost ~]#切换回oracle用户依次执行如下命令 source .bash_profile netca /silent /responsefile /home/oracle/response/netca.rsp执行结果如下 [oraclelocalhost ~]$ source .bash_profile [oraclelocalhost ~]$ netca /silent /responsefile /home/oracle/response/netca.rspParsing command line arguments:Parameter silent trueParameter responsefile /home/oracle/response/netca.rsp Done parsing command line arguments. Oracle Net Services Configuration: Configuring Listener:LISTENER Listener configuration complete. Oracle Net Listener Startup:Running Listener Control:/u01/app/oracle/product/11.2.0/bin/lsnrctl start LISTENERListener Control complete.Listener started successfully. Profile configuration complete. Oracle Net Services configuration successful. The exit code is 0 [oraclelocalhost ~]$查看1521端口是否启动示例如下 [oraclelocalhost ~]$ netstat -tnulp| grep 1521 (Not all processes could be identified, non-owned process infowill not be shown, you would have to be root to see it all.) tcp6 0 0 :::1521 :::* LISTEN 9026/tnslsnr [oraclelocalhost ~]$如若使用netstat报错可以在root用户下执行yum install net-tools安装net-tools工具。 关于监听的开启和关闭 开启监听:/u01/app/oracle/product/11.2.0/bin/lsnrctl start 关闭监听:/u01/app/oracle/product/11.2.0/bin/lsnrctl stop 四、添加数据库实例 编辑数据库实例文件 vi /home/oracle/response/dbca.rsp修改以下参数 GDBNAME orcl SID orcl SYSPASSWORD oracle SYSTEMPASSWORD oracle SYSMANPASSWORD oracle DBSNMPPASSWORD oracle DATAFILEDESTINATION /u01/app/oracle/oradata RECOVERYAREADESTINATION/u01/app/oracle/fast_recovery_area CHARACTERSET ZHS16GBK TOTALMEMORY 1638其中TOTALMEMORY “1638” 为1638MB物理内存2G*80%。TOTALMEMORY的值 要根据自己实际的内存去分配 执行以下命令 dbca -silent -responseFile /home/oracle/response/dbca.rsp执行后示例如下 [oraclelocalhost ~]$ dbca -silent -responseFile /home/oracle/response/dbca.rsp Copying database files 1% complete 3% complete 11% complete 18% complete 26% complete 37% complete Creating and starting Oracle instance 40% complete 45% complete 50% complete 55% complete 56% complete 60% complete 62% complete Completing Database Creation 66% complete 70% complete 73% complete 85% complete 96% complete 100% complete Look at the log file /u01/app/oracle/cfgtoollogs/dbca/orcl/orcl.log for further details.检查实例进程 [oraclelocalhost ~]$ ps -ef | grep ora_ | grep -v grep oracle 11293 1 0 18:46 ? 00:00:00 ora_pmon_orcl oracle 11295 1 0 18:46 ? 00:00:01 ora_vktm_orcl oracle 11299 1 0 18:46 ? 00:00:00 ora_gen0_orcl oracle 11301 1 0 18:46 ? 00:00:00 ora_diag_orcl oracle 11303 1 0 18:46 ? 00:00:00 ora_dbrm_orcl oracle 11305 1 0 18:46 ? 00:00:00 ora_psp0_orcl oracle 11307 1 0 18:46 ? 00:00:00 ora_dia0_orcl oracle 11309 1 0 18:46 ? 00:00:00 ora_mman_orcl oracle 11311 1 0 18:46 ? 00:00:00 ora_dbw0_orcl oracle 11313 1 0 18:46 ? 00:00:00 ora_lgwr_orcl oracle 11315 1 0 18:46 ? 00:00:00 ora_ckpt_orcl oracle 11317 1 0 18:46 ? 00:00:00 ora_smon_orcl oracle 11319 1 0 18:46 ? 00:00:00 ora_reco_orcl oracle 11321 1 0 18:46 ? 00:00:00 ora_mmon_orcl oracle 11323 1 0 18:46 ? 00:00:00 ora_mmnl_orcl oracle 11325 1 0 18:46 ? 00:00:00 ora_d000_orcl oracle 11327 1 0 18:46 ? 00:00:00 ora_s000_orcl oracle 11339 1 0 18:46 ? 00:00:00 ora_qmnc_orcl oracle 11373 1 0 18:46 ? 00:00:00 ora_cjq0_orcl oracle 11522 1 0 18:46 ? 00:00:00 ora_q000_orcl oracle 11524 1 0 18:46 ? 00:00:00 ora_q001_orcl [oraclelocalhost ~]$查看监听zhuangtai [oraclelocalhost ~]$ lsnrctl statusLSNRCTL for Linux: Version 11.2.0.1.0 - Production on 31-OCT-2023 18:50:27Copyright (c) 1991, 2009, Oracle. All rights reserved.Connecting to (DESCRIPTION(ADDRESS(PROTOCOLTCP)(HOSTlocalhost)(PORT1521))) STATUS of the LISTENER ------------------------ Alias LISTENER Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production Start Date 31-OCT-2023 18:08:07 Uptime 0 days 0 hr. 42 min. 20 sec Trace Level off Security ON: Local OS Authentication SNMP OFF Listener Parameter File /u01/app/oracle/product/11.2.0/network/admin/listener.ora Listener Log File /u01/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml Listening Endpoints Summary...(DESCRIPTION(ADDRESS(PROTOCOLtcp)(HOSTlocalhost)(PORT1521))) Services Summary... Service orcl has 1 instance(s).Instance orcl, status READY, has 1 handler(s) for this service... Service orclXDB has 1 instance(s).Instance orcl, status READY, has 1 handler(s) for this service... The command completed successfully [oraclelocalhost ~]$登录查看实例状态 [oraclelocalhost ~]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Tue Oct 31 18:52:23 2023Copyright (c) 1982, 2009, Oracle. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL select status from v$instance;STATUS ------------ OPENSQL quit Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options [oraclelocalhost ~]$五、设置开机启动 修改 /u01/app/oracle/product/11.2.0/bin路径下的dbstart dbshut脚本将两个脚本中的ORACLE_HOME_LISTNER$1,修改为ORACLE_HOME_LISTNER$ORACLE_HOME [oraclelocalhost ~]$ vi /u01/app/oracle/product/11.2.0/bin/dbstart [oraclelocalhost ~]$ vi /u01/app/oracle/product/11.2.0/bin/dbshut修改/etc/oratab文件,将orcl:/u01/app/oracle/product/11.2.0:N中最后的N改为Y成为orcl:/u01/app/oracle/product/11.2.0:Y vi /etc/oratab修改rc.local文件 [oraclelocalhost ~]$ vi /etc/rc.d/rc.local添加以下内容 su oracle -lc /u01/app/oracle/product/11.2.0/bin/lsnrctl start #加上引号才能把空格后的start,当作命令的一部分 su oracle -lc /u01/app/oracle/product/11.2.0/bin/dbstart重启后执行netstat -tpln示例如下 [oraclelocalhost ~]$ netstat -tpln (Not all processes could be identified, non-owned process infowill not be shown, you would have to be root to see it all.) Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN - tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN - tcp6 0 0 :::1521 :::* LISTEN 1032/tnslsnr tcp6 0 0 :::28084 :::* LISTEN 1319/ora_d000_orcl tcp6 0 0 :::22 :::* LISTEN - tcp6 0 0 ::1:25 :::* LISTEN - [oraclelocalhost ~]$发现有1521监听端口存在,配置成功 六、登录后解除锁定 [oraclelocalhost ~]$ source .bash_profile [oraclelocalhost ~]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Tue Oct 31 19:23:34 2023Copyright (c) 1982, 2009, Oracle. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL alter user SYSTEM account unlock;User altered.SQL配置navicat 用navicat连接测试 用户名:SYSTEM 密码:oracle 此时可能会报错如下图所示oracle library is not loaded 进入https://www.oracle.com/database/technologies/instant-client/winx64-64-downloads.html下载如下图所示文件 解压文件将 oci.dll 文件路径拷贝到OCI环境重启Navicat 即可。
http://www.dnsts.com.cn/news/267479.html

相关文章:

  • 专题类响应式网站建设问答推广的优势和不足
  • 合肥大型网站开发公司wordpress鼠标点击
  • 上海网站建设雍熙云南培训网站建设
  • 凡科做网站在百度能看见吗做社群最好的网站源码
  • 有没有给宝宝做辅食的网站wordpress产品展示插件
  • 网站的数据库怎么建立二手东西怎么挂网上卖
  • 个人网站可以做哪些主题网站建设设计报告前言
  • 河南做网站哪家好学短视频剪辑与制作
  • 浙江创新网站建设销售最好的免费网站空间
  • 网站怎么创建自己的网站中国网库企业黄页
  • 杭州海淀区网站建设深圳企业贷款中介
  • 网站背景图建站语言有哪些
  • 贵州建站互联网科技有限公司丹东网站seo
  • 主题网站设计模板合肥优化网站哪家公司好
  • 做网站的上海公司关于软文营销的案例
  • 网站用自己的电脑做服务器吗医院网站开发多少钱
  • 网站促销计算服务器租用一天
  • 东莞外贸网站建设哪家好网站首页设计公司
  • 环保设备网站建设方案蓝盟it外包
  • 手机网站建设 移商动力photoshop官方下载
  • 网站域名要钱吗哪些网站可以直接做英文字谜
  • html5响应式设计公司网站模板整站html源码下载知名网络公司
  • 优质的邵阳网站建设软件商城电脑版下载
  • 南昌网站建设培训学校网站建设与维护一般需要多少钱每年
  • 石家庄市住房和建设局网站wordpress调用搜索框
  • 面试网站建设的问题网站外链建设的八大基本准则
  • 百度竞价 百度流量 网站权重企业网站建设背景
  • 在线课堂手机网站模板网站流量 龙优化软件
  • 做直播网站需要多少钱校园网站制作模板
  • 手机跳转网站建设浙江做网站的公司有哪些