SAPSTART Error – soap_bind failed, Webservice thread enters retry loop

Error:

The sapstartsrv.log inside of instance work folder shows below error :

Webservice thread started, listening on port 5<instance_number>13
soap_bind failed, Webservice thread enters retry loop

Some of the other symptoms are :

sapstartsrv daemon is running and “sapcontrol -nr <instance_number> -function GetProcessList ” fails with error

GetProcessList
FAIL: End of file or no input: ‘No such file or directory’

Resolution

Shutdown all applications in AIX/Linux server and clear all temp files /tmp directory and reboot server.

Start all applications and check.

 

How To Find Wi-Fi Password Using CMD

  • Open the command prompt and run it as administrator.
  • This command will list out all the WiFi profiles that you have ever connected to
    netsh wlan show profile
  • Type the following command to see the password of any WiFi network:
    netsh wlan show profile WiFi-name key=clear
  • Under the security settings, in the ‘key content’, you see the WiFi password of that particular network

Enable Telnet in suse linux

By default ,telnet is disabled in SUSE.

Go to YAST and double click SOFTWARE MANAGEMENT ,in the search box, enter “telnet” and
click SEARCH ,tick on telnet-server and click ACCEPT .

Open the TERMINAL.
Edit the telnet file with vi editor and change disable from “yes” to “no”,Then save the file.

# vi /etc/xinetd.d/telnet

Finally ,restart the xinetd and test the connection.

# /etc/init.d/xinetd restart
# telnet <your ip-address> <port>

Unix OS AIX Backup command

Backup AIX 
-System backup = rootvg 
-Volume group backup = vg(data) 
-File system Backup = /mount point 
-File & directory backup 
Backup rootvg 
edit file /image.data /bosinst.data 
mksysb image= kernel + /image.data,/bosinstdata + dummy toc + rootvg 
smit sysbackup –or– smit mksysb 
mksysb 

Restore rootvg 
70 Gb –> shrinkfile opton 36 Gb 
allocate used allocate used 
/ 10 G 1G /1G /1Gb 
Restoring a mksysb 
boot cd –> 3 start maintenance mode –>4 install from a system backup –> choose device–>2 change/show –>choose disk,shrink 
Backup vg 
smit savevg 

Restoring vg 
smit restvg 

backup by file name (backup) !!relative vs full path is not same 
find . |backup -iqvf /dev/rmt0 
–or– 
smit backfile 

backup file system by inode 
levels 0 =full,1 increment 0 ,2 increment 1(Not 0) 
-u updataes file /etc/dumpdates 
backup -u -1 -f /dev/rmt0 /home 
–or– 
smit backupfilesys 
Restore backup file system 
List files on media(verify the backup) 
restore -Tvf /dev/rmt0 
Restore individual 
restore -xvf /dev/rmt0 /home/test 
Restore complete file system(if incremental use 0 then restore 1,2,3…) 
restore -rqvf /dev/rmt0 
Restore attributes withow restoring file content 
restore -Pa -vf /dev/rmt0 ./etc/passwd 

— or — 
smit restfile 

control tape 
tctl -f /dev/rmt0 rewind 
tctl -f /dev/rmt0.1 fsf 3 
tctl -f /dev/rmt0 rewoffl (rew and ejects) 
tctl -f /dev/rmt0 offline (eject)

Credit: Knowledge Management IT for you: Unix OS AIX Backup command
Under Creative Commons License: Attribution

Basic Unix Commands

1. When in doubt ..
    man commands
Samples:  man talk
   $ 
man grep
2. What’s my Unix system name, OS,CPU?
   $ uname -a
Sample result:
   SunOS hostname 5.8 Generic_108528-06 sun4u sparc SUNW, Ultra-5_10
3. Where am I (current working directory)?
   $ pwd /export/home/user
4. Who am I?
   $ who           ; returns all users who logged on to the system.
who am i ; returns only your log in name and time.

5. What is my hostname?
   $ 
hostname
6. What is my account info?
   $ finger [account]    ; to see login name, real name, TTY, idle time, when & where
7. What is my default printer?
   $ lpstat -t    ; shows printer statistic and status
8. When pressing BackSpace it shows ^H, how do I set it to work correctly?
   $ stty erasectrl-v + bs ;press ctrl-v and back space button
9. Change directory
   $ cd /usr/bin
   $ 
cd ~+                  ; ~+ = cwd or “.”   wherein ~- previous working directory
   $ 
cd $HOME         ; changes directory to your home folder = cd ~
   $ 
cd ../../hw1
cd ..                   ; moves one level up from your current working directory
10. List contents of the directory
   $ ls *[x,X]*        ; returns a listing of files that contain x or X in the file name
   $ 
ls -R               ; lists recursively that includes subdirectories 
   $ 
ls -li             ; displays long listing with inode number, or -a to list hidden files
11. File permissions
   $ chmod u+x, g-r myfileadd execute permission to user, remove read from group
   $ 
chmod u=rx, g=r, o=file   ; allows user to read and execute, group to read, no
                                                    read, write and execute for others
   $ 
chmod a=rxfile          ; allows user, group and others to read and execute
   $ 
chmod 754 myfile7-> 111 in binary represents rwx for user
                                             5-> 101 in binary represents r-x for group
                                             4-> 100 in binary represents r– for others
12. Read text file(s)
   $ 
catmyfile                    ; alternately, you can use more myfile
   $ 
catmyfile news mail    ; read multiple files
   $ 
cat *ing
13. Copy file(s)
   $ cpmyfile newfile
cp * ../hw
   $ cp -r /home/mydir /home/newdir   ; copies everything in mydir to newdir
   $ 
cp -p source destination               ; retains existing permissions (copy ACL along)
   $ 
cp -i source destination                ; does not overwrite an existing file
14. Move files to another directory
   $ mv * /home/my_account
   $ 
mvmyfile $HOME
15. Delete file(s)
   $ rm myfile
rmmyfile?        ; removes myfile1, myfile2, myfile3 and so on.
16. Make a directory
   $ mkdirmydir

17. Delete an empty directory
   $ 
rmdirmydir
18. Delete a directory that contains files and subdirectories
   $ rm-rmydir       ; removes recursively all files and subdirectories
19. Symbolic link (can span/accross file systems)
   $ ln -sfile1link1   ; uses ls -li to see link1-> file1 with 2 different inodes.
                                  symbolic link always has a=rwx permissions
20. Hard link (files contain the same inode, can not span file systems)
   $ lnfile1 link1      ; allows the same file to be accessed under different names