Quantcast
Channel: SCN: Message List - SAP MaxDB
Viewing all 2539 articles
Browse latest View live

Re: Problem when installing NetWeaver 2004 on MaxDB

$
0
0

Hi Venkat and thanks for the answer!

 

No, the database wasn't installed at all. I have installed it manually after sapinst.

Then the problem with xuser not found came. Yesterday I did some additional research

on this webpage and I found the 4 commands to recreate the users too. But most probably

I don't have a database at all, so I'm really not sure how to create the DB for SAP and

there is TOTALLY NO DOCUMENTATION on that !!

And in the end, it remains a total mystery, why sapinst didn't do nothing about the DB.

Although it asked about the RDBMS DVD and it accepted the location without any errors.

I have tried to use newer sapinst versions, but I couldn't even start an installation with them.

I've also checked the SAP note about the Software Provisioning Manager, but it seems to

support only versions 7.0 and above.

 

PLEASE HEEEEELP :-)


NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Dear experts,

 

I am struggling with the installation of NetWeaver 2004 on MaxDB on Linux.

When executing sapinst for the second time to install and create the DB, I am

getting the following error:

 

ERROR 2013-06-07 00:19:05

CJS-00030  Assertion failed: in function InstallationScript_128() {    var installer = new Installer();    var kdb = new KeyDB();    var context = new Context();    var gui = new Gui();    Gui.prototype._callModule = function (func, argsarg) {var args = argsarg || {};var call = {lib:"iajsmod", module:"CJSlibModule", version:"1.0", call:func, arg:args};return installer.invokeModuleCall(call);};    Gui.prototype.setErrorInformation = function () {return this.setErrorInformationWithArray(arguments);};    Gui.prototype.setErrorInformationWithArray = function (parameters) {var translated = installer.getMessageWithArray(parameters);this.setUntranslatedErrorInformation(translated);};    Gui.prototype.updateMsg = function () {return this.updateMsgWithArray(arguments);};    Gui.prototype.updateMsgWithArray = function (parameters) {return this._callModule("updateGuiMessage", _impl_common_massage_args(parameters));};    Gui.prototype.update = function (message) {return this._callModule("updateGui", {GuiLine:message});};    Gui.prototype.showMessageBox = function () {return this.showMessageBoxWithArray(arguments);};    Gui.prototype.showMessageBoxWithArray = function (parameters) {return this._callModule("showMessageBox", _impl_common_massage_args(parameters));};    Gui.prototype.showOkCancelBox = function () {return this.showOkCancelBoxWithArray(arguments);};    Gui.prototype.showOkCancelBoxWithArray = function (parameters) {return this._callModule("showOkCancelBox", _impl_common_massage_args(parameters));};

 

Please kindly suggest how to solve it... I'd be very very thankful :-)

Re: MAXDB Installation error - Some Database application might still be running

$
0
0

Just had the same problem on Win8.

Installation is not ready yet, but Edward's advice has helped me too.

Thank you, Edward!

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Hi Symon,

 

You mentioned

I am struggling with the installation of NetWeaver 2004 on MaxDB on Linux.

When executing sapinst for the second time to install and create the DB, I am

getting the following error:

 

Why are your executing sapinst for the second time ? At what phase you are getting error ?

Please share last 500 lines from sapinstdev.log

 

Regards,

Deepak Kori

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

I have tried with the IBM JRE 1.4.2, SR13 FP 17. I'm still getting the error.

I also tried replacing [CDATA[ERROR] with OK, but then sapinst would just give an error, that it crashed and quit.

I've decided to post a screenshot too!

Re: "Could not load the system tables" when installing the MAXDB DB instance

$
0
0

I am having the same problem!! Could you kindly post the solution please ???

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Dear Deepak,

 

I am executing it for the second time, as this is obviously the procedure for NetWeaver 2004.

When you choose installing a CI (as in 7.0), here the DB doesn't get installed & created.

I was wondering for 2 days what to do, till I found out yesterday, that the installation of a DB instance is step 2 in the installation process (written in sapinst on the right pane, but someone's gotta read it, right :-P )

 

I am getting the error right at the phase MaxDB Database installation. Here are the last 500 lines:

 

# tail -500 /tmp/sapinst_assertion.log

 

 

    function sapdb_sql_user_sv(db_nm, db_node, sql_s, user, userpasswd) {

        var db_host;

        if (db_node == undefined || db_node == "") {

            db_host = installer.getHostName();

        } else {

            db_host = db_node;

        }

        var r_v = "N_OK";

        var sh_op = get_dbmcli_app();

        var std_in = sh_op.getInputStream();

        var out_s = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        var usr_s = user + "," + userpasswd;

        sh_op.setArguments(["-n", db_host, "-d", db_nm, "-u", ctl_s, "-uSQL", usr_s]);

        sh_op.setHiddenArguments({5:true, 7:true});

        sh_op.start(false);

        std_in.putLine("sql_execute " + sql_s);

        while (!out_s.fail()) {

            var s_ln = out_s.getLine();

            if (/OK/.test(s_ln)) {

                r_v = "OK";

                while (!out_s.fail()) {

                    s_ln = out_s.getLine();

                    if (/END/.test(s_ln)) {

                        r_v = out_s.getLine();

                        std_in.putLine("exit");

                        sapdb_complete_output(out_s);

                        break;

                    }

                    if (/---/.test(s_ln)) {

                        std_in.putLine("exit");

                        sapdb_complete_output(out_s);

                        break;

                    }

                }

            } else {

                if (/---/.test(s_ln)) {

                    std_in.putLine("exit");

                    sapdb_complete_output(out_s);

                    break;

                }

            }

        }

        return r_v;

    }

 

 

    function sapdb_sql_user(db_nm, db_node, sql_s, user, userpasswd) {

        var sdbInst = new sdbInstance();

        sdbInst.dbName = db_nm;

        sdbInst.dbHost = (db_node == undefined) ? installer.getHostName() : db_node;

        sdbInst.dbUser = (user == undefined) ? "" : user;

        sdbInst.dbUserPasswd = (userpasswd == undefined) ? "" : userpasswd;

        var r_arr = sdb_sql_query(sql_s, sdbInst);

        ASSERT(arguments.callee, r_arr != undefined, "ERROR EXECUTING DBMCLI COMMAND!");

        if (r_arr[0] == "false") {

            var err_msg = "ERROR EXECUTING SQL QUERY: ";

            for (var i_cnt = 1; i_cnt < r_arr.length; i_cnt++) {

                err_msg = err_msg + r_arr[i_cnt];

            }

            ASSERT(arguments.callee, false, err_msg);

        }

        return (r_arr[0] == "false") ? "N_OK" : "OK";

    }

 

 

    function sapdb_sql_query(db_nm, sql_s, db_node) {

        var ret_s = "";

        var sdbInst = new sdbInstance();

        sdbInst.dbName = db_nm;

        sdbInst.dbHost = (db_node == undefined) ? installer.getHostName() : db_node;

        var r_arr = sdb_sql_query(sql_s, sdbInst);

        ASSERT(arguments.callee, r_arr != undefined, "ERROR EXECUTING DBMCLI COMMAND!");

        if (r_arr[0] == "false") {

            var err_msg = "ERROR EXECUTING SQL QUERY: ";

            for (var i_cnt = 1; i_cnt < r_arr.length; i_cnt++) {

                err_msg = err_msg + r_arr[i_cnt];

            }

            ASSERT(arguments.callee, false, err_msg);

        } else {

            end_l = new RegExp("END");

            for (i_cnt = 0; i_cnt < r_arr.length; i_cnt++) {

                if (end_l.test(r_arr[i_cnt])) {

                    ret_s = r_arr[i_cnt + 1];

                    break;

                }

            }

        }

        return ret_s;

    }

 

 

    function sapdb_sql_query_sv(db_nm, sql_s, db_node) {

        var db_host;

        if (db_node == undefined || db_node == "") {

            db_host = installer.getHostName();

        } else {

            db_host = db_node;

        }

        var r_v = "N_OK";

        var sh_op = get_dbmcli_app();

        var std_in = sh_op.getInputStream();

        var out_s = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        var adm_s = sapdb_get_db_user("ADMIN", db_nm, db_host) + "," + sapdb_get_db_user_passwd("ADMIN", db_nm, db_host);

        sh_op.setArguments(["-n", db_host, "-d", db_nm, "-u", ctl_s, "-uSQL", adm_s]);

        sh_op.setHiddenArguments({5:true, 7:true});

        sh_op.start(false);

        std_in.putLine("sql_execute " + sql_s);

        while (!out_s.fail()) {

            var s_ln = out_s.getLine();

            if (/OK/.test(s_ln)) {

                r_v = "OK";

                while (!out_s.fail()) {

                    s_ln = out_s.getLine();

                    if (/END/.test(s_ln)) {

                        r_v = out_s.getLine();

                        std_in.putLine("exit");

                        sapdb_complete_output(out_s);

                        break;

                    }

                    if (/---/.test(s_ln)) {

                        std_in.putLine("exit");

                        sapdb_complete_output(out_s);

                        break;

                    }

                }

            } else {

                if (/---/.test(s_ln)) {

                    std_in.putLine("exit");

                    sapdb_complete_output(out_s);

                    break;

                }

            }

        }

        return r_v;

    }

 

 

    function sapdb_init_config(db_nm, db_host, usr, usr_passwd) {

        return sapdb_action(db_nm, db_host, "INIT_CONFIG");

    }

 

 

    function sapdb_init_config_sv(db_nm, db_host, usr, usr_passwd) {

        var r_v = true;

        var sh_op = get_dbmcli_app(usr, usr_passwd);

        var std_in = sh_op.getInputStream();

        var std_out = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        sh_op.setArguments(["-n", db_host, "-d", db_nm, "-u", ctl_s]);

        sh_op.setHiddenArguments({5:true});

        sh_op.start(false);

        std_in.putLine("db_offline");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("db_start");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("util_connect");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("util_execute init config");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("exit");

        sapdb_proceed_output(std_out);

        sapdb_complete_output(std_out);

        return true;

    }

 

 

    function sapdb_load_systab(db_nm, db_host, usr, usr_passwd) {

        var s_cmd = "LOAD_SYSTAB";

        var sdb_i = new sdbInstance();

        sdb_i.dbName = db_nm;

        sdb_i.dbHost = db_host;

        sdb_i.Domain = "DOMAIN";

        sdb_i.DomainPasswd = "DOMAIN";

        var r_arr = sdb_instance_action(s_cmd, sdb_i);

        return (r_arr[0] == "true");

    }

 

 

    function sapdb_load_systab_sv(db_nm, db_host, usr, usr_passwd) {

        var db_root = sapdb_get_db_root(db_nm);

        var sh_op = get_dbmcli_app(usr, usr_passwd);

        var std_out = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        var adm_s = sapdb_get_db_user("ADMIN", db_nm, db_host) + "," + sapdb_get_db_user_passwd("ADMIN", db_nm, db_host);

        var dmn_s = sapdb_get_db_user_passwd("DOMAIN", db_nm, db_host);

        sh_op.setArguments(["-n", db_host, "-d", db_nm.toUpperCase(), "-u", ctl_s, "load_systab", "-u", adm_s, "-ud", dmn_s]);

        sh_op.setHiddenArguments({5:true, 8:true, 10:true});

        sh_op.start(false);

        var ret_v = false;

        while (!std_out.fail()) {

            var s_ln = std_out.getLine();

            if (/OK/.test(s_ln)) {

                ret_v = true;

            }

        }

        return ret_v;

    }

 

 

    function sapdb_db_create(db_nm, db_host, db_ver) {

        var dep_root = sapdb_inst_root(db_nm);

        var sdb_i = new sdbInstance();

        sdb_i.dbName = db_nm;

        sdb_i.dbHost = db_host;

        sdb_i.dbVer = db_ver[0] + "." + db_ver[1];

        sdb_i.ctlUser = sapdb_get_db_user("CONTROL", db_nm, db_host);

        sdb_i.ctlUserPasswd = sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        var actorObj = new SdbExtActor();

        actorObj.setSdbInstance(sdb_i);

        actorObj.setDbmCmd("DB_CREATE");

        actorObj.setExecutable(sapdb_dbmcli_path());

        actorObj.setDbRoot(dep_root);

        var rv = actorObj.sessionExecute();

        ASSERT(arguments.callee, rv == "OK", " SDB: ERROR CREATING DATABASE INSTANCE! Check the XCMDOUT.LOG FILE");

        var creation_ok = false;

        var i_size = actorObj.outSize();

        for (var i = 0; i < i_size; i++) {

            var s_line = actorObj.getOutputLine(i);

            if (/OK/.test(s_line)) {

                creation_ok = true;

            }

        }

        ASSERT(arguments.callee, creation_ok, "SDB: ERROR WHILE DB INSTANCE CREATION! CHECK THE XCMDOUT.LOG FILE! ");

    }

 

 

    function sapdb_db_create_sv(db_nm, db_host, usr, usr_passwd) {

        var db_root = sapdb_get_db_root(db_nm);

        var sh_op = get_dbmcli_app(usr, usr_passwd);

        var std_out = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        sh_op.setArguments(["-s", "-R", db_root, "db_create", db_nm.toUpperCase(), ctl_s]);

        sh_op.setHiddenArguments({5:true, 6:true});

        sh_op.start(false);

        var ret_v = false;

        while (!std_out.fail()) {

            var s_ln = std_out.getLine();

            if (/OK/.test(s_ln)) {

                ret_v = true;

            }

        }

        return ret_v;

    }

 

 

    function sapdb_action(db_nm, db_host, db_action, db_ver, ctl_usr, ctl_passwd) {

        var dbversion = (db_ver == undefined) ? "75" : db_ver;

        if (ctl_usr == undefined || ctl_passwd == undefined) {

            ctl_user = sapdb_get_db_user("CONTROL", db_nm, db_host);

            ctl_passwd = sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        }

        var sdb_call = sdb_action_with_info(db_action.toUpperCase(), dbversion, db_nm, db_host, ctl_usr, ctl_passwd);

        return (sdb_call[0] == "true");

    }

 

 

    function sapdb_action_sv(db_nm, db_host, db_action, ctl_usr, ctl_passwd) {

        var ctl_s;

        var sh_op = get_dbmcli_app();

        var std_out = sh_op.getOutputStream();

        if (ctl_usr == undefined || ctl_passwd == undefined) {

            ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        } else {

            ctl_s = ctl_usr + "," + ctl_passwd;

        }

        if (db_host == installer.getHostName()) {

            sh_op.setArguments(["-s", "-d", db_nm, "-u", ctl_s, db_action]);

            sh_op.setHiddenArguments({4:true});

        } else {

            sh_op.setArguments(["-n", db_host, "-d", db_nm, "-u", ctl_s, db_action]);

            sh_op.setHiddenArguments({5:true});

        }

        var b_start = sh_op.start(false);

        ASSERT(arguments.callee, b_start, "COULD NOT START THE APPLICATION: " + sh_op.getCommandLine() + "! Check the path!");

        var ret_v = false;

        while (!std_out.fail()) {

            var s_ln = std_out.getLine();

            if (/OK/.test(s_ln)) {

                ret_v = true;

            }

        }

        return ret_v;

    }

 

 

    function sapdb_put_instance_param(db_nm, db_host) {

        var t_param = new Table("tSapdbParameters");

        var par_arr = t_param.arraySelect(["fParamName", "fParamValue"], " WHERE fDbName='" + db_nm + "' ");

        var sdb_i = new sdbInstance();

        sdb_i.dbName = db_nm;

        sdb_i.dbHost = db_host;

        sdb_param_put(par_arr, sdb_i);

        return true;

    }

 

 

    function sapdb_param_put(db_nm, db_host, param_name, param_val, usr, usr_passwd) {

        var sdb_i = new sdbInstance();

        sdb_i.dbName = db_nm;

        sdb_i.dbHost = db_host;

        var db_parr = new Array({fParamName:param_name, fParamValue:param_val});

        sdb_param_put(db_parr, sdb_i);

        return true;

    }

 

 

    function sapdb_param_put_sv(db_nm, db_host, param_name, param_val, usr, usr_passwd) {

        var sh_op = get_dbmcli_app(usr, usr_passwd);

        var std_out = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_nm, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_nm, db_host);

        sh_op.setArguments(["-n", db_host, "-d", db_nm, "-u", ctl_s, "param_directput", param_name, param_val]);

        sh_op.setHiddenArguments({5:true});

        sh_op.start(false);

        var ret_v = false;

        while (!std_out.fail()) {

            var s_ln = std_out.getLine();

            if (/OK/.test(s_ln)) {

                ret_v = true;

            }

        }

        return ret_v;

    }

 

 

    function sdb_inst_enum() {

        var actn = "SDB_INST_ENUM";

        var call_arr = sdb_action_with_info(actn, "75");

        var e_arr;

        e_arr = new Array();

        if (call_arr != undefined && call_arr[0] != "false") {

            for (var a_cnt = 1; a_cnt < call_arr.length; a_cnt++) {

                e_arr.push(call_arr[a_cnt]);

            }

        }

        return e_arr;

    }

 

 

    function sapdb_inst_root(db_nm) {

        var inst_root = "";

        var r_call = sdb_inst_enum();

        if (r_call != undefined) {

            for (var r_cnt = 0; r_cnt < r_call.length; r_cnt++) {

                var re = /\s+\t*/;

                var re_db = new RegExp(db_nm, "i");

                var db_enum = r_call[r_cnt].split(re);

                if (re_db.test(db_enum[1])) {

                    inst_root = db_enum[1];

                }

            }

        }

        return inst_root;

    }

 

 

    function sapdb_inst_enum(enum_option, db_nm) {

        var dbm_cli = get_dbmcli_app(undefined, undefined);

        dbm_cli.setArguments(["-s", "inst_enum"]);

        var out_s = dbm_cli.getOutputStream();

        dbm_cli.start(false);

        var inst_root = "";

        while (!out_s.fail()) {

            var s_ln = out_s.getLine();

            if (/OK/.test(s_ln)) {

                while (!out_s.fail()) {

                    var re = /\s+\t*/;

                    var re_db = new RegExp(db_nm, "i");

                    var db_enum = out_s.getLine().split(re);

                    if (re_db.test(db_enum[1])) {

                        if (enum_option == "DBROOT") {

                            inst_root = db_enum[1];

                        } else {

                            inst_root = db_enum[0];

                        }

                    }

                }

            }

        }

        return inst_root;

    }

 

 

    function sapdb_proceed_output(std_out) {

        var r_v = true;

        var dbmcli_resp = std_out.getLine();

        return r_v;

    }

 

 

    function sapdb_complete_output(std_out) {

        var r_v = true;

        while (!std_out.fail()) {

            var dbmcli_resp = std_out.getLine();

        }

        return r_v;

    }

 

 

    function sapdb_param_init(db_name, db_host, sapdb_version, inst_type) {

        var init_s;

        if (inst_type == undefined) {

            init_s = "OLTP";

        } else {

            switch (inst_type) {

              case "LVC":

                init_s = "LVC";

                break;

              default:

                init_s = "OLTP";

                break;

            }

        }

        var r_arr = sdb_instance_type(db_name, db_host, init_s, sapdb_version);

        ASSERT(arguments.callee, r_arr != undefined, "SDB: ERROR EXECUTING PARAM_INIT!");

        ASSERT(arguments.callee, r_arr[0] == "true", "SDB: ERROR EXECUTING PARAM_INIT! CHECK THE XCMDOUT.LOG FILE!");

        return (r_arr[0] == "true");

    }

 

 

    function sapdb_param_init_sv(db_name, db_host, os_user, osdbgroup, sapdb_version, inst_type) {

        var init_s;

        if (inst_type == undefined) {

            init_s = "PARAM_INIT OLTP";

        } else {

            switch (inst_type) {

              case "LVC":

                init_s = "PARAM_INIT LVC";

                break;

              default:

                init_s = "PARAM_INIT OLTP";

                break;

            }

        }

        var r_v = true;

        var sh_op = get_dbmcli_app(os_user, osdbgroup);

        var std_in = sh_op.getInputStream();

        var std_out = sh_op.getOutputStream();

        var ctl_s = sapdb_get_db_user("CONTROL", db_name, db_host) + "," + sapdb_get_db_user_passwd("CONTROL", db_name, db_host);

        sh_op.setArguments(["-n", db_host, "-d", db_name, "-u", ctl_s]);

        sh_op.setHiddenArguments({5:true});

        sh_op.start(false);

        std_in.putLine("db_offline");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("param_rmfile");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("param_startsession");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine(init_s);

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("param_checkall");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("param_commitsession");

        if (!sapdb_proceed_output(std_out)) {

            return false;

        }

        std_in.putLine("exit");

        sapdb_proceed_output(std_out);

        sapdb_complete_output(std_out);

        return true;

    }

 

    try {

        gui.update("MaxDB: putting database cold ... ");

        ASSERT(arguments.callee, sapdb_action(context.get("DatabaseName"), installer.getHostName(), "DB_START", context.get("SAPDB_VERSION")), "SDB: ERROR EXECUTING DB START! CHECK THE XCMDOUT.LOG FILE!");

        gui.update("MaxDB: putting database cold ... OK");

    } catch (e) {

        if (e.getMessage) {

            installer.writeErrorWithArray(e.getMessage(), true);

        } else {

            throw e;

        }

    }

}

SDB: ERROR EXECUTING DB START! CHECK THE XCMDOUT.LOG FILE!

 

WARNING 2013-06-07 00:36:22

Installation canceled by user request.

Re: 0kb Backup logfiles

$
0
0

Hi Basti,

 

Check whether the user defined to start MaxDB Services(database, database e service and xserver) has proper authorizations over the network share. By default these services are started using the Local SYSTEM account which seems to not have change permissions in network shares.

 

Also, check your network infrastructure and NAS(maybe event viewer can give you more info).

 

Meanwhile, to not break your backup cycle, it would be a good idea change the LOG backup template to generate the LOG backups in a local drive and schedule a user script to copy the LOG backup files to the network share meanwhile you verify this.


Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Hi Symon,

 

Could you share the log XCMDOUT.LOG

 

Regards,

Deepak Kori

Re: Bad performance with inner join

Re: Content server installation with HA

$
0
0

hi Deepak,

 

Referred doc contain's only few pages.

 

Please provide alternate link regarding HA for both file system and Web services.

 

Thanks,

Amarnath.

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Thanks for the reply, Deepak.

I will upload the file perhaps tomorrow night...

Re: 0kb Backup logfiles

$
0
0

Hello Thiago,

thank you very much for your answer. We will start to write the log backups locally and try to copy them with an os script.

 

Kind regards, Bastian

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Dear Deepak,

 

as promised: XCMDOUT.LOG

 

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021738

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 inst_enum

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021738

 

OK

7.5.0.32     /sapdb/N04/db

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021739

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 inst_enum

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021739

 

OK

7.5.0.32     /sapdb/N04/db

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021739

 

Execute Command : /sapdb/programs/bin/dbmcli  -R /sapdb/N04/db db_create N04 CONTROL,CONTROL

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021739

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021739

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,********

Start subprocess as user with uid: root

Execute Session Command : param_startsession

Execute Session Command : param_init OLTP

Execute Session Command : param_checkall

Execute Session Command : param_commitsession

Execute Session Command : exit

 

> Subprocess stops at 20130608021739

 

OK

OK

OK

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021740

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput LOG_IO_QUEUE 200

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021740

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021740

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput MAXLOCKS 300000

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021740

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021740

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput CAT_CACHE_SUPPLY 3000

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021740

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021740

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput JOIN_MAXTAB_LEVEL4 64

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021740

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021740

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput _UNICODE YES

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DEFAULT_CODE ASCII

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput _PACKET_SIZE 131072

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput MAXUSERTASKS 50

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput MAXCPU 2

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput LOG_MIRRORED YES

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput M_LOG_VOLUME_NAME_001 /sapdb/N04/saplog/M_DISKL001

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput M_LOG_VOLUME_TYPE_001 L

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_NAME_0001 /sapdb/N04/sapdata/DISKD0001

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_TYPE_0001 L

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_SIZE_0001 1048576

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_NAME_0002 /sapdb/N04/sapdata/DISKD0002

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_TYPE_0002 L

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_SIZE_0002 1048576

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_NAME_0003 /sapdb/N04/sapdata/DISKD0003

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_TYPE_0003 L

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput DATA_VOLUME_SIZE_0003 262144

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput LOG_VOLUME_NAME_001 /sapdb/N04/saplog/DISKL001

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput LOG_VOLUME_TYPE_001 L

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput LOG_VOLUME_SIZE_001 199680

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021741

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** param_directput CACHE_SIZE 1638

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021741

 

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021742

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,********

Start subprocess as user with uid: root

Execute Session Command : param_startsession

Execute Session Command : param_checkall

Execute Session Command : param_commitsession

Execute Session Command : exit

 

> Subprocess stops at 20130608021742

 

OK

OK

OK

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021743

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021743

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021927

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021927

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021930

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021930

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608021932

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021932

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022024

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022024

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022030

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022030

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022031

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022031

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022032

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022032

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022034

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022034

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022035

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022035

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022037

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022037

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022038

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022038

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022039

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022040

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022041

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022042

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022131

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022131

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022142

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022142

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022144

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022144

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022145

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022145

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022146

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022146

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022148

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022148

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022149

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022149

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022150

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022150

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022151

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022151

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022152

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022153

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022154

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022154

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022155

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022155

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022157

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022157

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022158

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022158

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022159

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022159

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022200

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022200

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022202

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022202

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022203

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022203

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022205

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022205

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022206

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022206

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022207

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022207

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022407

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,********

Start subprocess as user with uid: root

Execute Session Command : util_connect

Execute Session Command : exit

 

> Subprocess stops at 20130608022407

 

> Subprocess call failed

ERR

-24988,ERR_SQL: sql error

1,database not running: no request pipe  

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022500

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,********

Start subprocess as user with uid: root

Execute Session Command : util_connect

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608022640

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** load_systab -u SUPERDBA,******** -ud ********

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608022640

 

ERR

-24936,ERR_DBNORUN: database is not running

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608023106

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** load_systab -u SUPERDBA,******** -ud ********

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608023106

 

ERR

-24936,ERR_DBNORUN: database is not running

 

--------------------------------------------------------------

 

 

> Subprocess starts at 20130608023110

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** load_systab -u SUPERDBA,******** -ud ********

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608023110

 

ERR

-24936,ERR_DBNORUN: database is not running

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Sooo, the DB is not starting and I don't have a clue why... I didn't do nothing, just the standard installation in a fresh OS (Linux). I'm also providing the contend of startdb.log (I've called the startdb script manually):

 

 

------------------------------ Thu Jun 13 01:59:10 CEST 2013

LOGFILE FOR STARTING DATABASE

 

Trying to start database ...

 

------------------------------ Thu Jun 13 01:59:10 CEST 2013

Checking required environment variables

 

SAPSYSTEMNAME is >N04<

Start database with xuserkey >c<

 

------------------------------ Thu Jun 13 01:59:10 CEST 2013

Connect to the database to check the database state

 

dbmcli: connect check finished with return code: 0

Database not available

 

------------------------------ Thu Jun 13 01:59:11 CEST 2013

Starting XServer

 

    12798  NISERVER server started.

INFO: Starting x_server will start x_niserver automatically

    12902  XSERVER  started, 'X32/LINUX 7.5.0    Build 032-121-111-699'

 

------------------------------ Thu Jun 13 01:59:11 CEST 2013

Starting database

 

Starting Database Instance...

Error! Connection failed to node N04 for database N04: ERR_USRFAIL: user authorization failed

Opening Database...

Error! Connection failed to node N04 for database N04: ERR_USRFAIL: user authorization failed

 

------------------------------ Thu Jun 13 01:59:11 CEST 2013

Connect to the database to verify the database is now open

 

dbmcli check finished with return code: 0

Database start failed

 

PLEASE HEEEELP ME :-)

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Hi Symon,

 

Please check the following

 

dbmcli -d <DB-name> -u control,<first 9 char of your password selected during Installation>

 

Post the results.

 

Regards,

Deepak Kori


Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Hello Symon,

it is nothing wrong with your username/password.

 

 

Symon Braunbaer wrote:

 

Dear Deepak,

 

as promised: XCMDOUT.LOG

 

 

> Subprocess starts at 20130608021743

 

Execute Command : /sapdb/programs/bin/dbmcli -n N04 -d N04 -u CONTROL,******** db_start

Start subprocess as user with uid: root

 

> Subprocess stops at 20130608021743

 

ERR

-24994,ERR_RTE: runtime environment error

1,Check knldiag! Kernel died before reaching ADMIN state

 

 

check the knldiag / KnlMsg file for detailed message.

Kind regards,

Burkhard

Live Cache 7.9 : Data cache Usage 100% even when system not used

$
0
0

Hello,

 

 

We are running SAP SCM 7.03/Oracle 11.2 plugged to a Livecache system (MaxDB 7 .9), the hardware is HP-UX ia64.

I am quite new to MaxDB technology.

 

We have received several complaints over the past weeks, over MaxDB performances.

 

It turns out that one of the main issue we had was Data cache Usage 100%

 

datacache100.png

 

 

So I have increased the value of CacheMemorySize parameter several times, from 32000 to 64000 to 128000

 

constantlysaturated.png

But after a while, the datacache usage hits 100 %, even when there are no users connected, no datalaods from SCM, absolutely no activity,

And the datache usage remains at 100%

 

Now the current value is : 256000, but I am afraid that it is only a matter of time, before it hist again 100% for no apparent reasons.

 

 

increased.png

 

I have checked SAP notes database to try to find any guidance, recommendation on the optimal size

of CacheMemorySize , there are several FAQ, several notes detailing database parameters, but I could not find

anything about CacheMemorySize recommended settings

 

Any help in understanding why the data cache usage remains at 100% even when there is no activity would be really helpful.

Also any recommendation on CacheMemorySize setting would be really appreciated.

 

Thank you

Best regards

Raoul

Re: -2 ERR_USRFAIL: User authorization failed

$
0
0

I am trying to install NetWeaver 2004 on MaxDB and Linux and I'm getting an assertion error,

then the error described here when I try to start the DB. My password has only 8 characters.

 

Here is my thread, please help me!!

 

http://scn.sap.com/message/14124926#14124926

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

@Deepak - Dear Deepak, here is the otcome of the command, my password has "only" 8 characters:

 

dbmcli -d N04 -u control,xxxxxxxx

Error! Connection failed to node (local) for database N04: ERR_USRFAIL: user authorization failed

 

@Burkhard Diesing - thank you too for your tip, but these files don't exist in my system

I've checked with grep -i ...

 

Could it be, that I have setup some users / permissions wrongly ? I have 755 on all the SAP-folders and the following users, which I have created

by myself, as sapinst was crashing / giving very bizzare errors:

 

excerpt from /etc/passwd:

 

...

n04adm:x:200:200:SAP System Administrator:/home/n04adm:/bin/csh

sqdn04:x:201:200:SAP Database Administrator:/home/sqdn04:/bin/bash

sdb:x:500:502:MaxDB Software Owner:/home/sdb:/bin/bash

SUPERDBA:x:202:502::/home/SUPERDBA:/bin/bash

 

 

excerpt from /etc/group:

 

...

sapsys:x:200:

n04adm:x:500:

sapinst:x:501:root

sqdn04:x:201:

sdba:x:502:sqdn04

 

PLEASE help me to resolve this !!

Re: NetWeaver 2004 on MaxDB - assertion failed

$
0
0

Hi Symon,

 

Please check the enries in X-user as per SAP note

39439XUSER entries for SAP MaxDB

 

Also check whether you are able to connect to MaxDB using

dbmcli -d <SID> -u control,control

 

Additionally share the details from below command

 

sdbregview  -l

dbmcli inst_enum

dbmcli db_enum

 

 

Regards,

Deepak Kori

Viewing all 2539 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>