Tampilkan postingan dengan label server. Tampilkan semua postingan
Tampilkan postingan dengan label server. Tampilkan semua postingan

Jumat, 23 September 2022

, , , ,

Memperbaiki GDBus.Error:org.freedesktop.PolicyKit1




Memperbaiki 

Unable to register authentication agent: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Cannot determine user of subject

Group Policy

groupadd -g 23 nohidproc usermod -a -G nohidproc polkitd mount -o remount,rw,hidepid=2,gid=nohidproc /proc systemctl restart polkit

/etc/fstab

echo "proc /proc proc defaults,hidepid=2,gid=nohidproc 0 0" >> /etc/fstab

Mount Point A. mount -a
systemctl restart polkit
Continue reading Memperbaiki GDBus.Error:org.freedesktop.PolicyKit1

Kamis, 15 September 2022

, , , ,

WMS 4.5 on Centos 7

WMS 4.5 on Centos 7



WMS Merupakan Aplikasi Streaming Server yang sangat banyak digunakan

adapun rilis dari WMS adalah sebagai berikut:

WowzaStreamingEngine_UsersGuide-4.5.0

untuk dapat mengunduh pada link berikut:

Wowza Streaming Engine 4.5.0 Crack

instalasi file windows 

https://www.wowza.com/downloads/WowzaStreamingEngine-4-5-0/WowzaStreamingEngine-4.5.0-windows-installer.exe

instalasi file linux 64

https://www.wowza.com/downloads/WowzaStreamingEngine-4-5-0/WowzaStreamingEngine-4.5.0-linux-x64-installer.run

instalasi file linux 32

https://www.wowza.com/downloads/WowzaStreamingEngine-4-5-0/WowzaStreamingEngine-4.5.0-linux-installer.run


Proses Instalasi

Windows:
Double-click the WowzaStreamingEngine-4.5.0-windows-installer.exe installer file and follow the onscreen instructions.
To run Wowza™ Transcoder on Windows Server 2008 or 2012 the following components are required:
- .NET Framework 3.5.1
- Desktop Experience


Linux 64

sudo chmod +x WowzaStreamingEngine-4.5.0-linux-x64-installer.run sudo ./WowzaStreamingEngine-4.5.0-linux-x64-installer.run

follow Instruction


Linux 32

sudo chmod +x WowzaStreamingEngine-4.5.0-linux-installer.run sudo ./WowzaStreamingEngine-4.5.0-linux-installer.run


Crack installation:

1. Download the installer for Linux/Windows from Wowza website

2. Install as normal with trial key (just for get the installation done): ET1A4-CyFTr-erYEd-pAAwE-dzut4-BkNZZ-6fdJKYCMTUDV

3. Stop the Wowza Services:

    3.1 Wowza Streaming Engine as described bellow

    3.2 Wowza Streaming Engine Manager as described bellow

4. Download the crack file "wowza4.5.0_crack.zip ", unpack it. It does contains "wms-server.jar" file.

5. Replace wms-server.jar with original file at:

    5.1 On Windows OS: "C:\Program Files (x86)\Wowza Media Systems\Wowza Streaming Engine 4.5.0\lib"    

    5.2 On Linux OS: "/usr/local/WowzaStreamingEngine-4.5.0/lib/" 

6. Add following lines to yor System hosts file (you need admin or root permissions)

    6.1 On Windows OS: "C:\Windows\System32\drivers\etc\hosts"

    6.2 On Linux OS: "/etc/hosts"

# Wowza 127.0.0.1 wowzalicense1.wowzamedia.com 127.0.0.1 wowzalicense2.wowzamedia.com 127.0.0.1 wowzalicense3.wowzamedia.com 127.0.0.1 wowzalicense4.wowzamedia.com

7. Start the Wowza Services:

    7.1 Wowza Streaming Engine as described bellow

    7.2 Wowza Streaming Engine Manager as described bellow

8. Open Streaming Engine Manager 

http://SERVER_IP:8088/enginemanager/

9. Enjoy and Keep Private

Continue reading WMS 4.5 on Centos 7

Rabu, 08 Juni 2022

, , , ,

Samba Management User

 

Menambahkan User

# useradd cosinusteta

 Menambahkan Password User

# passwd cosinusteta

Menambahkan Samba User

# smbpasswd -a cosinusteta
# New SMB password : 
# Retype SMB password :

 

Merubah Password Samba User

# smbpasswd cosinusteta
# New SMB password : 
# Retype SMB password :


Delete Samba User password

# smbpasswd -x cosinusteta 

delete unix user(cosinusteta) by userdel 


Menghapus User System

# userdel -r cosinusteta


Menambahkan User ke dalam Group

# sudo usermod -a -G namagrup username



Continue reading Samba Management User

Kamis, 27 Januari 2022

, , , , , , ,

server to server migration with rsync

 


What is rsync?

rsync is a way to transfer and synchronize files efficiently between one server and another and only different files are synced. The rsync command is very suitable to be used as a backup, because only different files will be synchronized, so it will save more time and resources.

How to Install rsync on server Linux

install rsync on server Debian/ Ubuntu

apt-get install rsync

install rsync on server Centos/ Fedora

yum install rsync

How to Use rsync

Transfer File Server to Server with RSYNC on port 22

for migration file

rsync filehosteko.zip root@xxx.xxx.xxx.xxx:/home/folder

for migration Directory/ Folder

rsync -avzh folderhost root@xxx.xxx.xxx.xxx:/home/folder

info:
folderhost: folrder you want to migrate/copy
xxx.xxx.xxx.xxx= destination IP server

Transfer File Server to Server with RSYNC with Custom port

for migration file

rsync -e 'ssh -p 1234' filehost.zip root@xxx.xxx.xxx.xxx:/home/folder

for migration Directory/ Folder

rsync -avzh -e 'ssh -p 1234' folderhost root@xxx.xxx.xxx.xxx:/home/folder

info:
folderhost= folder you want to migrate/copy

1234 = destination Port SSH

xxx.xxx.xxx.xxx= destination IP server

Continue reading server to server migration with rsync

Kamis, 09 September 2021