[oracle@linuxuser ~]$ dbca -bash: dbca: command not foundOracle DBCA utility: “Listener is not up or...
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
How do I create uniquely male characters?
A function which translates a sentence to title-case
least quadratic residue under GRH: an EXPLICIT bound
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Why is the design of haulage companies so “special”?
New order #4: World
Copycat chess is back
Copenhagen passport control - US citizen
What makes Graph invariants so useful/important?
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?
How old can references or sources in a thesis be?
Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?
What is the command to reset a PC without deleting any files
I see my dog run
Can an x86 CPU running in real mode be considered to be basically an 8086 CPU?
What is the meaning of "of trouble" in the following sentence?
A Journey Through Space and Time
What do you call a Matrix-like slowdown and camera movement effect?
Is Social Media Science Fiction?
Modification to Chariots for Heavy Cavalry Analogue for 4-armed race
Does the radius of the Spirit Guardians spell depend on the size of the caster?
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
[oracle@linuxuser ~]$ dbca -bash: dbca: command not found
Oracle DBCA utility: “Listener is not up or database service is not registered with it”Installing Oracle 11gR2 on Oracle Linux 6 - error possibly related to database (unique) nameOracle SYS Auditing with Audit Trail to DBCheck only prerequisites when running runInstaller in silent modeOracle installation requires old rpm versions, what to do?Oracle 11g installation stuck at installationBASH: DBCA: command not foundbash: sqlplus: command not found
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
i'm installing 11G on Enterprise version linux. after executing ./runInstaller and setting bashprofile when i'm firing dbca on tightVNC am facing this problem of not finding command dbca.
please help me!! what to do next?
oracle-11g-r2
add a comment |
i'm installing 11G on Enterprise version linux. after executing ./runInstaller and setting bashprofile when i'm firing dbca on tightVNC am facing this problem of not finding command dbca.
please help me!! what to do next?
oracle-11g-r2
Hey!it works. I had mistake in my bashprofile. Yeah.great thanks
– krati bhatnagar
Jul 10 '16 at 4:46
add a comment |
i'm installing 11G on Enterprise version linux. after executing ./runInstaller and setting bashprofile when i'm firing dbca on tightVNC am facing this problem of not finding command dbca.
please help me!! what to do next?
oracle-11g-r2
i'm installing 11G on Enterprise version linux. after executing ./runInstaller and setting bashprofile when i'm firing dbca on tightVNC am facing this problem of not finding command dbca.
please help me!! what to do next?
oracle-11g-r2
oracle-11g-r2
asked Jul 8 '16 at 21:30
krati bhatnagarkrati bhatnagar
111
111
Hey!it works. I had mistake in my bashprofile. Yeah.great thanks
– krati bhatnagar
Jul 10 '16 at 4:46
add a comment |
Hey!it works. I had mistake in my bashprofile. Yeah.great thanks
– krati bhatnagar
Jul 10 '16 at 4:46
Hey!it works. I had mistake in my bashprofile. Yeah.great thanks
– krati bhatnagar
Jul 10 '16 at 4:46
Hey!it works. I had mistake in my bashprofile. Yeah.great thanks
– krati bhatnagar
Jul 10 '16 at 4:46
add a comment |
2 Answers
2
active
oldest
votes
You need to set your PATH correctly, or run dbca
by specifying the absolute path. For example:
$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
$ export PATH=$ORACLE_HOME/bin:$PATH
$ dbca
Or run dbca with absolute path:
$ /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbca
add a comment |
thanks a lot that helps for new beginners in oracle
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "182"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f143367%2foraclelinuxuser-dbca-bash-dbca-command-not-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to set your PATH correctly, or run dbca
by specifying the absolute path. For example:
$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
$ export PATH=$ORACLE_HOME/bin:$PATH
$ dbca
Or run dbca with absolute path:
$ /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbca
add a comment |
You need to set your PATH correctly, or run dbca
by specifying the absolute path. For example:
$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
$ export PATH=$ORACLE_HOME/bin:$PATH
$ dbca
Or run dbca with absolute path:
$ /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbca
add a comment |
You need to set your PATH correctly, or run dbca
by specifying the absolute path. For example:
$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
$ export PATH=$ORACLE_HOME/bin:$PATH
$ dbca
Or run dbca with absolute path:
$ /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbca
You need to set your PATH correctly, or run dbca
by specifying the absolute path. For example:
$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
$ export PATH=$ORACLE_HOME/bin:$PATH
$ dbca
Or run dbca with absolute path:
$ /u01/app/oracle/product/11.2.0/dbhome_1/bin/dbca
answered Jul 8 '16 at 21:49
Balazs PappBalazs Papp
27.1k2931
27.1k2931
add a comment |
add a comment |
thanks a lot that helps for new beginners in oracle
New contributor
add a comment |
thanks a lot that helps for new beginners in oracle
New contributor
add a comment |
thanks a lot that helps for new beginners in oracle
New contributor
thanks a lot that helps for new beginners in oracle
New contributor
New contributor
answered 3 mins ago
SQL LEARNERSQL LEARNER
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Database Administrators Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fdba.stackexchange.com%2fquestions%2f143367%2foraclelinuxuser-dbca-bash-dbca-command-not-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Hey!it works. I had mistake in my bashprofile. Yeah.great thanks
– krati bhatnagar
Jul 10 '16 at 4:46