prcsgidb1: /u01/Stage/database

C:\Users\alley_li>ping prcsgidb1

Pinging prcsgidb1.ad.infosys.com [10.221.62.71] with 32 by Reply from 10.221.62.71: bytes=32 time=15ms TTL=63 Reply from 10.221.62.71: bytes=32 time=1ms TTL=63 Reply from 10.221.62.71: bytes=32 time=73ms TTL=63 Reply from 10.221.62.71: bytes=32 time=1ms TTL=63

username: ebizR121 password: ebizR121

Database

su - ortm12

-bash-3.2$ ps -ef|grep tns |grep ortm12 ortm12   10065     1  0 Aug30 ?        00:00:01 /u02/TM12/apps/tech_st/10.1.2/bin/tnslsnr APPS_TM12 -inherit ortm12   13750 13593  0 13:38 pts/18   00:00:00 grep tns ortm12   26905     1  0 Sep28 ?        00:00:03 /u02/TM12/db/tech_st/11.1.0/bin/tnslsnr tm12 -inherit

/u02/TM12/db/tech_st/11.1.0

TM12_prcsgidb1.env

. TM12_prcsgidb1.env . ./. TM12_prcsgidb1.env

Application

/u02/TM12/apps/apps_st/appl

. ./APPSTM12_prcsgidb1.env

URL FOR APPLICATION

grep -i login $CONTEXT_FILE

-bash-3.2$ ls -l $CONTEXT_FILE -rw-r--r-- 1 ortm12 dba 12809 Jun  1 13:55 /u02/TM12/db/tech_st/11.1.0/appsutil/TM12_prcsgidb1.xml

-bash-3.2$ . APPSTM12_prcsgidb1.env -bash-3.2$ grep -i login $CONTEXT_FILE          <login_page oa_var="s_login_page">http://prcsgidb1.ad.infosys.com:8020/OA_HTML/AppsLogin</login_page> -bash-3.2$ LS -L -bash: LS: command not found -bash-3.2$ ls -l $CONTEXT_FILE -rw-r--r-- 1 ortm12 dba 87241 Sep 28 09:25 /u02/TM12/inst/apps/TM12_prcsgidb1/appl/admin/TM12_prcsgidb1.xml -bash-3.2$ grep -i login /u02/TM12/inst/apps/TM12_prcsgidb1/appl/admin/TM12_prcsgidb1.xml          <login_page oa_var="s_login_page">http://prcsgidb1.ad.infosys.com:8020/OA_HTML/AppsLogin</login_page> -bash-3.2$

EBS learning history (to know about the environment)的更多相关文章

  1. How do I learn machine learning?

    https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644   How Can I Learn X? ...

  2. [转]Introduction to Learning to Trade with Reinforcement Learning

    Introduction to Learning to Trade with Reinforcement Learning http://www.wildml.com/2018/02/introduc ...

  3. Introduction to Learning to Trade with Reinforcement Learning

    http://www.wildml.com/2015/12/implementing-a-cnn-for-text-classification-in-tensorflow/ The academic ...

  4. ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS

    ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS We recently interviewed ...

  5. 论文笔记之:Asynchronous Methods for Deep Reinforcement Learning

    Asynchronous Methods for Deep Reinforcement Learning ICML 2016 深度强化学习最近被人发现貌似不太稳定,有人提出很多改善的方法,这些方法有很 ...

  6. (zhuan) Where can I start with Deep Learning?

    Where can I start with Deep Learning? By Rotek Song, Deep Reinforcement Learning/Robotics/Computer V ...

  7. A Gentle Guide to Machine Learning

    A Gentle Guide to Machine Learning Machine Learning is a subfield within Artificial Intelligence tha ...

  8. Pattern Recognition and Machine Learning-02-1.0-Introduction

    Introduction The problem of searching for patterns in data is a fundamental one and has a long and s ...

  9. [Python] python vs cplusplus

    一些学习过程中的总结的两种语言的小对比,帮助理解OO programming. Continue... 字典 序列 --> 字典 Python: def get_counts(sequence) ...

随机推荐

  1. HDU 5965 枚举模拟 + dp(?)

    ccpc合肥站的重现...一看就觉得是dp 然后强行搞出来一个转移方程 即 根据第i-1列的需求和i-1 i-2列的枚举摆放 可以得出i列摆放的种类..加了n多if语句...最后感觉怎么都能过了..然 ...

  2. mock the facade

    mock the facade: Auth::shouldReceive('user')->andReturn($user = m::mock('StdClass')); $user->s ...

  3. bahuanghou111

    #include<stdio.h> int map[8][8]={0}; int count=0; int safe(int x,int y) { int i; int j; for(i= ...

  4. js windows.open()模拟POST提交

    function openPostWindow (url,name, data1, data2)        {            var tempForm = document.createE ...

  5. 键盘事件触发的兼容tips

    在firefox中 退格键 enter del tab 这些非字符触发编码为0 然而在Safari3以下 是8

  6. 利用nodeJS实现的网络小爬虫

    var http=require("http");var cheerio=require('cheerio');var url="http://www.imooc.com ...

  7. QList

    #include <QCoreApplication> #include<QList> #include<QDebug> int main(int argc, ch ...

  8. magento搬家

    将原来网站文件中的var文件中的cache和session文件删除,将media中的缓存文件删除.然后将所有文件制作成一个压缩包,以减少文件体积,方便转移. 将压缩包转移到新的服务器域名指向的文件夹, ...

  9. WP8.1 和UWP 如何使用下载网页的上的音频 并保存

    WP8.1: private async Task<StorageFile> GetVoiceData() { HttpClient httpclient = new HttpClient ...

  10. LeetCode Moving Average from Data Stream

    原题链接在这里:https://leetcode.com/problems/moving-average-from-data-stream/ 题目: Given a stream of integer ...