formats

How to create swap drive after install Linux

Published on 10 May 2012 by in 2. Linux/Unix

How to create swap drive after install Linux installation Create a new partition by using fdisk command,  fdisk /dev/sdb (in my case) option “n” option “w”   This creates for me partition /dev/sdb1 …and then use the commands: mkswap  /dev/sdb1 (1 is partition number) do the entry in /etc/fstab as below: /dev/sdb1     swap      swap     defaults    

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

JSPM ForceMode – How To Set JSPM To Force And DeployALL Mode

JSPM ForceMode – How To Set JSPM To Force Mode And DeployALL Mode We can make the JSPM to work in ‘forced’ and ‘deploy all’ mode by adding parameters in the JSPM config file(jspm_config.txt) located at    \usr\sap\<SID>\J10\j2ee\JSPM\param\ jspm_config.txt To make deployment in force mode, add the lines: /jspm/deployVersionRule=updateSameAndLower /jspm/deployVersionRule=updateAll /jspm/forceMode=true Normally JSPM will allow

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

How to Enable Remote Access to MySQL

How to Enable Remote Access to MySQL   Login to your server 1: ssh root@server.com 2:  3: vi /etc/mysql/my.conf You can use any other editor like mcedit.   Edit this file. What is important? 1. bind-address – you serever adress. 2. comment skip-networking (in new MySQL server you will NOT find this section) 3. comment

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Fast imagemagick install on ubuntu

Fast imagemagick install on ubuntu ImageMagick is a software suite which can be used to create, edit and display bitmap images, either from the command line or using a graphical interface. It can read, convert and write images in a large variety of formats. Images can be cropped, colors can be changed, various effects can

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
3 Comments  comments 
formats

NGINX – 413 Request Entity Too Large

NGINX – 413 Request Entity Too Large You need to insert new parameter in your server configuration: client_max_body_size 20M;   server { client_max_body_size 20M; listen 80; server_name localhost;   # Main location location / { proxy_pass http://127.0.0.1:8080/; } }

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Install JBoss AS7 (Application Server 7) on Ubuntu 11.10

Install JBoss AS7 (Application Server 7) on Ubuntu 11.10   First install java: Click here to see how install Oracle Java Development Kit 6 Now download current version of JBoss AS 7 at: http://www.jboss.org/jbossas/downloads/ Copy downloaded file to your server and unzip it.   If you don’t have unzip program …install it with command: 1:

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
2 Comments  comments 
formats

How to install the Sun Java SDK in Ubuntu 11.10?

How to install the Sun Java SDK in Ubuntu 11.10?   Its very easy. Just type: 1: sudo apt-get install python-software-properties 2: sudo add-apt-repository ppa:ferramroberto/java 3: sudo apt-get update 4: sudo apt-get install sun-java6-jdk sun-java6-plugin   You may want to also add the following …but if this is only java you have it’s not necessary:

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
No Comments  comments 
formats

Max. number of debugging mode users reached

Max. number of debugging mode users reached   You attempt to debug a running program from transaction SM50. The system issues the above message:   Go to RZ11 Paste the: rdisp/wpdbug_max_no  as a parameter name and check actual value: Default value is: 1   Go to RZ10: And in instance profile edit or add this

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
3 Comments  comments 
formats

SAP WebDispatcher (NW 7.3) Installation on Linux/UNIX

SAP WebDispatcher (NW 7.3) Installation on Linux/UNIX   This post will describe process of installation SAP WebDispatcher (using install files of SAP NetWeaver 7.3 …so the newest version) DON’T FORGET TO READ SAP INSTALL GUIDE FIRST!!! (http://service.sap.com/instguides) First of all you need to download files: 1. Master 2. Kernel Nothing else is required. No SAP

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
1 Comment  comments 
formats

How to update an existing SDM installation – SDMKIT.JAR installation

How to update an SDM  – SDMKIT.JAR installation   Change directory to SDM folder. If you have a standard J2EE installation this directory will be /usr/sap/<SID>/<INSTANCE>/SDM/program Change SDM to standalone mode Unix 1: ./StopServer.sh 2: ./sdm.sh jstartup "mode=standalone" Windows 1: StopServer.bat 2: sdm.bat jstartup "mode=standalone" Copy sdmkit.jar (or SDMKIT<SP_NUMBER>_<PATCH_LEVEL>-<COUNTER>.JAR) to /temp folder in SDM directory

(More)…

 
 Share on Facebook Share on Twitter Share on Reddit Share on LinkedIn
2 Comments  comments