weblogic reading .ser file on startup - weblogic

I have a .ser file which supposed to be intialized within weblogic server on server start.
I have created my own domain in weblogic 12c in windows os.
Which place would be ideally to store that .ser file to get initialize on server start up ?
Do i need to write any script here ?
Please let me know.

Related

How to set Rabbitmq.config on Windows OS

I am using Rabbitmq server 3.9.13 on windows.
When I runs Rabbitmq server, it saids
This timeout value can be configured, see consumers doc guide to learn more
So I am going to edit the config file but I can not find where the file is located.
Is there someone know it?
I found the config file path using the following command.
rabbitmq-diagnostics.bat status
The file was located in 'C:/Users/Your User/AppData/Roaming/RabbitMQ/advance.config'

Not able to start appserver due to the missing batch file

I have installed weblogic 12.2.3.1.0 and when I tried to start the appserver its failing because not able to find common\bin\startpointbase.cmd batch file.
But it didn't come with installation. can any of you let me know where can I find that file
This script starts a PointBase database that you could use for your domain, it's inside weblogic_home/common/bin/.
It is shipped with weblogic, you need to run startpointbase.cmd before starting your weblogic instance if you are using it.
Before starting it make sure all path variable are set.

Not able to start the IBM HTTP Server

We have taken the Images of the mount points from one existing IBM HTTP Server v8.5 and copied it to another Server. When we tried to start the server using ./apachectl start am not getting any error messages but no I couldn't find any httpd instance running.
When I tried to stop the server I got "httpd (pid 19422?) not running" message.
Changes have been made in httpd.conf by changing the server name.
Please let me know if this Image copying is possible?
If yes, please let me know where else should I have to make the changes?
As long as you keep the path the same, and copy a stopped server, it should be fine.
If you change path, obviously you'll have to change all references to that path in the installation root.
If the server was running, when you copied it, you'll need to zap the PidFile (logs/httpd.pid by default). Usually this is recovered automatically.
Solved this issue, by granting the access to the particular file. It was due to different user who started the server on the parent server from where the Application was cloned.

How to upload set of all the files in folder on flowForce server using system ftp store method?

I have setup flow force server in my local pc and I was able to run couple of sample jobs. Then I try to setup FTP store job by providing required details. I was also able to upload specific file in to FTP server as well.
But now I need to know whether there is a possibility to upload all the files in particular folder in to target folder in FTP server. Appreciate if someone who have knowledge above flowforce server can share their thoughts about this.

Apache running MongoDB and PHP

I'm using XAMPP in my Mac OSX. I've installed mongodb and copied the .so file into xampp plugins folder. My phpinfo() of the page shows that MongoDB section which is installed.
After i start Apache of XAMPP server, when i code
m = new MongoClient();
$db = $m->mydatabase;
$collection = $db->myCollection;
Its saying some Fatal Error.
If i run mongod command in Terminal window, its working. Then what is the use of installing mongodb in XAMPP server. My Questions are
Why its working like that..?
Is there any way to start mongod when we start Apache server.
Why its working like that..?
Installing the PHP driver and the MongoDB server are two completely different things.
This is very basic driver stuff; you require a library or communication layer that can route your PHP programming to the MongoDB server (basically).
Is there any way to start mongod when we start Apache server.
You could make an sh script that looks like:
/etc/init.d/xammp_service_dunno_what_it_is_called start
/etc/init.d/mongodb start
Then you could just attach to the startup, or even better you can just attach both services (XAMPP and MongoDB) to the startup of your computer.
However, as far as I know, there is no way to create a sort of trigger mechanism that will load up MongoDB when the OS detects that you have started running Apache.