MongoDB Tutorial 2: Alternative control: Difference between revisions

From The Uniform Server Wiki
Jump to navigation Jump to search
(New page: {{Nav MongoDB Tutorial 2}} '''''MongoDB''''' == Introduction == Alternative control is a spin-off from testing the main application. These batch/scripts are worth keeping because users may...)
 
No edit summary
Line 1: Line 1:
=[http://ezapazuhem.co.cc Under Construction! Please Visit Reserve Page. Page Will Be Available Shortly]=
{{Nav MongoDB Tutorial 2}}
{{Nav MongoDB Tutorial 2}}
'''''MongoDB'''''
'''''MongoDB'''''
Line 21: Line 22:
In folder z_mongo\UniServer\unicon\'''tray_menu_2'''.
In folder z_mongo\UniServer\unicon\'''tray_menu_2'''.
  create a new file named '''''mongo_db_inc.php''''' from file  z_mongo\temp\'''''z_temp\mongo_db_inc.php''''' copy the following lines.
  create a new file named '''''mongo_db_inc.php''''' from file  z_mongo\temp\'''''z_temp\mongo_db_inc.php''''' copy the following lines.
<pre>
&lt;pre&gt;
$path_array      = explode("\\usr",getcwd());              // Split at folder usr
$path_array      = explode(&quot;\\usr&quot;,getcwd());              // Split at folder usr
$mongo_base      = $path_array[0];                        // find drive letter and any sub-folders  
$mongo_base      = $path_array[0];                        // find drive letter and any sub-folders  
$mongo_base_f    = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /
$mongo_base_f    = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /


//=== FOLDERS ===
//=== FOLDERS ===
define("MONGO_BIN""$mongo_base_f/usr/local/mongo_tutorial/bin");  // Binaries for MongoDB
define(&quot;MONGO_BIN&quot;&quot;$mongo_base_f/usr/local/mongo_tutorial/bin&quot;);  // Binaries for MongoDB


//=== FILES ===
//=== FILES ===
define("CONFIG_NO_AUTH_F""$mongo_base_f/usr/local/mongo_tutorial/bin/config_no_auth.ini");  
define(&quot;CONFIG_NO_AUTH_F&quot;&quot;$mongo_base_f/usr/local/mongo_tutorial/bin/config_no_auth.ini&quot;);  
define("CONFIG_AUTH_F",      "$mongo_base_f/usr/local/mongo_tutorial/bin/config_auth.ini");  
define(&quot;CONFIG_AUTH_F&quot;,      &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/config_auth.ini&quot;);  
define("NAME_PWD_F",        "$mongo_base_f/usr/local/mongo_tutorial/bin/mongo_name_password");  
define(&quot;NAME_PWD_F&quot;,        &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/mongo_name_password&quot;);  
define("UNISERV_EXE",        "$mongo_base_f/usr/local/mongo_tutorial/bin/uniserv.exe"); // Utility  
define(&quot;UNISERV_EXE&quot;,        &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/uniserv.exe&quot;); // Utility  
define("UNISERV_EXE_B",      $mongo_base.'\usr\local\mongo_tutorial\bin\uniserv.exe');  // Utility  
define(&quot;UNISERV_EXE_B&quot;,      $mongo_base.'\usr\local\mongo_tutorial\bin\uniserv.exe');  // Utility  
define("MON_PSKILL_EXE",    "$mongo_base_f/usr/local/mongo_tutorial/bin/pskill.exe");  // Utility  
define(&quot;MON_PSKILL_EXE&quot;,    &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/pskill.exe&quot;);  // Utility  
define("CMD_DUMMY_TXT",      "$mongo_base_f/usr/local/mongo_tutorial/bin/cmd_dummy.txt"); // Temp command fie
define(&quot;CMD_DUMMY_TXT&quot;,      &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/cmd_dummy.txt&quot;); // Temp command fie
</pre>
&lt;/pre&gt;
It should be obvious all paths are incorrect and need updating added to this are items relating to authentication these need deleting.
It should be obvious all paths are incorrect and need updating added to this are items relating to authentication these need deleting.


First delete authentication related to give:
First delete authentication related to give:
<pre>
&lt;pre&gt;
$path_array      = explode("\\usr",getcwd());              // Split at folder usr
$path_array      = explode(&quot;\\usr&quot;,getcwd());              // Split at folder usr
$mongo_base      = $path_array[0];                        // find drive letter and any sub-folders  
$mongo_base      = $path_array[0];                        // find drive letter and any sub-folders  
$mongo_base_f    = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /
$mongo_base_f    = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /


//=== FOLDERS ===
//=== FOLDERS ===
define("MONGO_BIN""$mongo_base_f/usr/local/mongo_tutorial/bin");  // Binaries for MongoDB
define(&quot;MONGO_BIN&quot;&quot;$mongo_base_f/usr/local/mongo_tutorial/bin&quot;);  // Binaries for MongoDB


//=== FILES ===
//=== FILES ===
define("CONFIG_NO_AUTH_F""$mongo_base_f/usr/local/mongo_tutorial/bin/config_no_auth.ini");  
define(&quot;CONFIG_NO_AUTH_F&quot;&quot;$mongo_base_f/usr/local/mongo_tutorial/bin/config_no_auth.ini&quot;);  
define("UNISERV_EXE",        "$mongo_base_f/usr/local/mongo_tutorial/bin/uniserv.exe"); // Utility  
define(&quot;UNISERV_EXE&quot;,        &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/uniserv.exe&quot;); // Utility  
define("UNISERV_EXE_B",      $mongo_base.'\usr\local\mongo_tutorial\bin\uniserv.exe');  // Utility  
define(&quot;UNISERV_EXE_B&quot;,      $mongo_base.'\usr\local\mongo_tutorial\bin\uniserv.exe');  // Utility  
define("MON_PSKILL_EXE",    "$mongo_base_f/usr/local/mongo_tutorial/bin/pskill.exe");  // Utility  
define(&quot;MON_PSKILL_EXE&quot;,    &quot;$mongo_base_f/usr/local/mongo_tutorial/bin/pskill.exe&quot;);  // Utility  
</pre>
&lt;/pre&gt;
First line splits current working directory at folder '''''usr''''' this requires changing. Choose a folder that is common to folders '''usr''' and '''unicon''', in this case use folder '''''UniServer'''''
First line splits current working directory at folder '''''usr''''' this requires changing. Choose a folder that is common to folders '''usr''' and '''unicon''', in this case use folder '''''UniServer'''''


Line 62: Line 63:
=== Paths ===
=== Paths ===
After making the changes section looks like this:
After making the changes section looks like this:
<pre>
&lt;pre&gt;
$path_array      = explode("\\UniServer",getcwd());              // Split at folder usr
$path_array      = explode(&quot;\\UniServer&quot;,getcwd());              // Split at folder usr
$mongo_base      = $path_array[0];                        // find drive letter and any sub-folders  
$mongo_base      = $path_array[0];                        // find drive letter and any sub-folders  
$mongo_base_f    = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /
$mongo_base_f    = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /


//=== FOLDERS ===
//=== FOLDERS ===
define("MONGO_BIN""$mongo_base_f/UniServer/usr/local/mongo/bin");  // Binaries for MongoDB
define(&quot;MONGO_BIN&quot;&quot;$mongo_base_f/UniServer/usr/local/mongo/bin&quot;);  // Binaries for MongoDB


//=== FILES ===
//=== FILES ===
define("CONFIG_NO_AUTH_F",  MONGO_BIN."/config_no_auth.ini");  
define(&quot;CONFIG_NO_AUTH_F&quot;,  MONGO_BIN.&quot;/config_no_auth.ini&quot;);  
define("UNISERV_EXE",        MONGO_BIN."/uniserv.exe"); // Utility  
define(&quot;UNISERV_EXE&quot;,        MONGO_BIN.&quot;/uniserv.exe&quot;); // Utility  
define("UNISERV_EXE_B",      $mongo_base.'\UniServer\usr\local\mongo\bin\uniserv.exe');  // Utility  
define(&quot;UNISERV_EXE_B&quot;,      $mongo_base.'\UniServer\usr\local\mongo\bin\uniserv.exe');  // Utility  
define("MON_PSKILL_EXE",    MONGO_BIN."/pskill.exe");  // Utility  
define(&quot;MON_PSKILL_EXE&quot;,    MONGO_BIN.&quot;/pskill.exe&quot;);  // Utility  


</pre>
&lt;/pre&gt;


'''''[[#top | Top]]'''''
'''''[[#top | Top]]'''''
Line 90: Line 91:
|-
|-
|
|
<pre>
&lt;pre&gt;
TITLE UNIFORM SERVER - Run Command Prompt
TITLE UNIFORM SERVER - Run Command Prompt
COLOR B0
COLOR B0
Line 101: Line 102:
pause
pause
EXIT
EXIT
</pre>
&lt;/pre&gt;
|
|
'''''Comments'':'''
'''''Comments'':'''
Line 120: Line 121:
|-
|-
|
|
<pre>
&lt;pre&gt;
<?php
&lt;?php


chdir(dirname(__FILE__)); // Change wd to this files location
chdir(dirname(__FILE__)); // Change wd to this files location
include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";
include_once &quot;../../../../unicon/tray_menu_2/mongo_db_inc.php&quot;;


open_cmd_window(); // Run command prompt function
open_cmd_window(); // Run command prompt function


?>
?&gt;
</pre>
&lt;/pre&gt;
|
|
* Change folder to alt_control
* Change folder to alt_control
Line 165: Line 166:
Create the following scripts with content as shown
Create the following scripts with content as shown
=== Run_start_mongo.bat ===
=== Run_start_mongo.bat ===
<pre>
&lt;pre&gt;


TITLE UNIFORM SERVER - Run Start MongoDB
TITLE UNIFORM SERVER - Run Start MongoDB
Line 177: Line 178:
pause
pause
EXIT
EXIT
</pre>
&lt;/pre&gt;
=== run_start_mongo.php ===
=== run_start_mongo.php ===
<pre>
&lt;pre&gt;
<?php
&lt;?php


chdir(dirname(__FILE__)); // Change wd to this files location
chdir(dirname(__FILE__)); // Change wd to this files location
include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";
include_once &quot;../../../../unicon/tray_menu_2/mongo_db_inc.php&quot;;


start_mongo_no_auth(); // Run start mongo function
start_mongo_no_auth(); // Run start mongo function
?>
?&gt;
</pre>
&lt;/pre&gt;
=== Run_stop_mongo.bat ===
=== Run_stop_mongo.bat ===
<pre>
&lt;pre&gt;


TITLE UNIFORM SERVER - Run Stop MongoDB
TITLE UNIFORM SERVER - Run Stop MongoDB
Line 201: Line 202:
pause
pause
EXIT
EXIT
</pre>
&lt;/pre&gt;
=== run_stop_mongo.php ===
=== run_stop_mongo.php ===
<pre>
&lt;pre&gt;
<?php
&lt;?php
chdir(dirname(__FILE__)); // Change wd to this files location
chdir(dirname(__FILE__)); // Change wd to this files location
include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";
include_once &quot;../../../../unicon/tray_menu_2/mongo_db_inc.php&quot;;


stop_mongo_no_auth() ; // Run command prompt function
stop_mongo_no_auth() ; // Run command prompt function
?>
?&gt;
</pre>
&lt;/pre&gt;


=== Run_client.bat ===
=== Run_client.bat ===
<pre>
&lt;pre&gt;
TITLE UNIFORM SERVER - Run Mongo Client
TITLE UNIFORM SERVER - Run Mongo Client
COLOR B0
COLOR B0
Line 224: Line 225:
pause
pause
EXIT
EXIT
</pre>
&lt;/pre&gt;
=== run_client.php ===
=== run_client.php ===
<pre>
&lt;pre&gt;
<?php
&lt;?php
chdir(dirname(__FILE__)); // Change wd to this files location
chdir(dirname(__FILE__)); // Change wd to this files location
include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";
include_once &quot;../../../../unicon/tray_menu_2/mongo_db_inc.php&quot;;


client_no_auth() ; // Run command prompt function
client_no_auth() ; // Run command prompt function
?>
?&gt;
</pre>
&lt;/pre&gt;


'''''[[#top | Top]]'''''
'''''[[#top | Top]]'''''

Revision as of 01:19, 24 November 2010

Under Construction! Please Visit Reserve Page. Page Will Be Available Shortly

 

MongoDB Plugin
UniServer 6-Carbo.

MongoDB

Introduction

Alternative control is a spin-off from testing the main application. These batch/scripts are worth keeping because users may prefer them.

Requirements

Scripts for alternative control are contained in folder z_mongo\UniServer\usr\local\mongo\alt_control\alt_control these scripts reflect functionality of our main program.

We require scripts that perform the following tasks:

  • Start MongoDB
  • Stop MongoDB
  • Run Mongo client
  • Open a command prompt

Four batch files and corresponding PHP scripts are required. These PHP scripts obtain their resources (paths function) from a shared include file located in folder z_mongo\UniServer\unicon\tray_menu_2.

Top

Main include file

During the introduction tutorial we created a file mongo_db_inc.php containing functions required for various application. A sub-set from this file is required for this application.

In folder z_mongo\UniServer\unicon\tray_menu_2.

create a new file named mongo_db_inc.php from file  z_mongo\temp\z_temp\mongo_db_inc.php copy the following lines.

<pre> $path_array = explode("\\usr",getcwd()); // Split at folder usr $mongo_base = $path_array[0]; // find drive letter and any sub-folders $mongo_base_f = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /

//=== FOLDERS === define("MONGO_BIN", "$mongo_base_f/usr/local/mongo_tutorial/bin"); // Binaries for MongoDB

//=== FILES === define("CONFIG_NO_AUTH_F", "$mongo_base_f/usr/local/mongo_tutorial/bin/config_no_auth.ini"); define("CONFIG_AUTH_F", "$mongo_base_f/usr/local/mongo_tutorial/bin/config_auth.ini"); define("NAME_PWD_F", "$mongo_base_f/usr/local/mongo_tutorial/bin/mongo_name_password"); define("UNISERV_EXE", "$mongo_base_f/usr/local/mongo_tutorial/bin/uniserv.exe"); // Utility define("UNISERV_EXE_B", $mongo_base.'\usr\local\mongo_tutorial\bin\uniserv.exe'); // Utility define("MON_PSKILL_EXE", "$mongo_base_f/usr/local/mongo_tutorial/bin/pskill.exe"); // Utility define("CMD_DUMMY_TXT", "$mongo_base_f/usr/local/mongo_tutorial/bin/cmd_dummy.txt"); // Temp command fie </pre> It should be obvious all paths are incorrect and need updating added to this are items relating to authentication these need deleting.

First delete authentication related to give: <pre> $path_array = explode("\\usr",getcwd()); // Split at folder usr $mongo_base = $path_array[0]; // find drive letter and any sub-folders $mongo_base_f = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /

//=== FOLDERS === define("MONGO_BIN", "$mongo_base_f/usr/local/mongo_tutorial/bin"); // Binaries for MongoDB

//=== FILES === define("CONFIG_NO_AUTH_F", "$mongo_base_f/usr/local/mongo_tutorial/bin/config_no_auth.ini"); define("UNISERV_EXE", "$mongo_base_f/usr/local/mongo_tutorial/bin/uniserv.exe"); // Utility define("UNISERV_EXE_B", $mongo_base.'\usr\local\mongo_tutorial\bin\uniserv.exe'); // Utility define("MON_PSKILL_EXE", "$mongo_base_f/usr/local/mongo_tutorial/bin/pskill.exe"); // Utility </pre> First line splits current working directory at folder usr this requires changing. Choose a folder that is common to folders usr and unicon, in this case use folder UniServer

With this split we have a reference $mongo_base that is a path up to folder UniSerer hence this folder must be added to the paths being reconstructed.

Top

Paths

After making the changes section looks like this: <pre> $path_array = explode("\\UniServer",getcwd()); // Split at folder usr $mongo_base = $path_array[0]; // find drive letter and any sub-folders $mongo_base_f = preg_replace('/\\\/','/', $mongo_base); // Replace \ with /

//=== FOLDERS === define("MONGO_BIN", "$mongo_base_f/UniServer/usr/local/mongo/bin"); // Binaries for MongoDB

//=== FILES === define("CONFIG_NO_AUTH_F", MONGO_BIN."/config_no_auth.ini"); define("UNISERV_EXE", MONGO_BIN."/uniserv.exe"); // Utility define("UNISERV_EXE_B", $mongo_base.'\UniServer\usr\local\mongo\bin\uniserv.exe'); // Utility define("MON_PSKILL_EXE", MONGO_BIN."/pskill.exe"); // Utility

</pre>

Top

Command Prompt

From z_mongo\temp\mongo_db_inc.php copy function open_cmd_window() to file z_mongo\UniServer\unicon\tray_menu_2\mongo_db_inc.php

In folder alt_control create the following two files with content as shown

Top

Run_cmd.bat

<pre> TITLE UNIFORM SERVER - Run Command Prompt COLOR B0 @echo off cls

cd ..\..\php php.exe -c mongo_cli.ini ..\mongo\alt_control\run_cmd.php

pause EXIT </pre>

Comments:

  • ..\..\php Changes working folder. From current folder ..\..\ move up two folder levels and down into folder php
  • php.exe Run PHP
  • -c mongo_cli.ini Use this configuration file
  • ..\mongo\alt_control\run_cmd.php Move up one folder level and down into folder alt_control and run script run_cmd.php

Note:

After testing you can comment out the pause.

run_cmd.php

<pre> <?php

chdir(dirname(__FILE__)); // Change wd to this files location include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";

open_cmd_window(); // Run command prompt function

?> </pre>

  • Change folder to alt_control
  • Include file. Move up four folder levels down into folder tray_menu_2 and include file mongo_db_inc.php
  • Run function open_cmd_window()

Top

Test

  • Run batch file. Double click on Run_cmd.bat
  • A command window opens displaying the content of folder bin

Above confirms we have a working structure and can add further components.

Top

Support Functions

A user can change server’s working port in the configuration file.

We have a function that determines this

From z_mongo\temp\mongo_db_inc.php copy function get_mongo_port_no_auth() to file z_mongo\UniServer\unicon\tray_menu_2\mongo_db_inc.php

We will require several functions hence copy the following:

  • set_mongo_port_no_auth($new_port)
  • start_mongo_no_auth()
  • stop_mongo_no_auth()
  • client_no_auth()
  • mongodb_running()
  • mongo_client_running()

Top

Additional Scripts

Create the following scripts with content as shown

Run_start_mongo.bat

<pre>

TITLE UNIFORM SERVER - Run Start MongoDB COLOR B0 @echo off cls

cd ..\..\php php.exe -c mongo_cli.ini ..\mongo\alt_control\run_start_mongo.php

pause EXIT </pre>

run_start_mongo.php

<pre> <?php

chdir(dirname(__FILE__)); // Change wd to this files location include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";

start_mongo_no_auth(); // Run start mongo function ?> </pre>

Run_stop_mongo.bat

<pre>

TITLE UNIFORM SERVER - Run Stop MongoDB COLOR B0 @echo off cls

cd ..\..\php php.exe -c mongo_cli.ini ..\mongo\alt_control\run_stop_mongo.php

pause EXIT </pre>

run_stop_mongo.php

<pre> <?php chdir(dirname(__FILE__)); // Change wd to this files location include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";

stop_mongo_no_auth() ; // Run command prompt function ?> </pre>

Run_client.bat

<pre> TITLE UNIFORM SERVER - Run Mongo Client COLOR B0 @echo off cls

cd ..\..\php php.exe -c mongo_cli.ini ..\mongo\alt_control\run_client.php

pause EXIT </pre>

run_client.php

<pre> <?php chdir(dirname(__FILE__)); // Change wd to this files location include_once "../../../../unicon/tray_menu_2/mongo_db_inc.php";

client_no_auth() ; // Run command prompt function ?> </pre>

Top

Test

  • Start server double click on Run_start_mongo.bat wait a short time
  • Run client double click on Run_client.bat check connection is made. Type exit
  • Stop server double click on Run_stop_mongo.bat wait a short time
  • Run client double click on Run_client.bat check connection fails.

Top

Summary

I was asked why do you need the PHP CLI scripts? They were included only to test each associated function.

Thinking about that question the user had not missed the point what they wanted were pure batch files no PHP.

I have addressed the above on the next page Alternative control 2


Top