Posts

AWS S3 Some Backet Full Permission and read Write

 {     "Version": "2012-10-17",     "Statement": [         {             "Effect": "Allow",             "Action": [                 "s3:GetBucketLocation",                 "s3:ListAllMyBuckets"             ],             "Resource": "arn:aws:s3:::*"         },         {             "Effect": "Allow",             "Action": "s3:*",             "Resource": [                 "arn:aws:s3:::my-data-s3",                 "arn:aws:s3:::my-data-s3-1",                 "arn:aws:s3:::my-data-s3-2",     ...

How to Install GitLab enterprise edition on Ubuntu Server

  Gitalb Installion:- 1. Install and configure the necessary dependencies sudo apt-get update sudo apt-get install -y curl openssh-server ca-certificates tzdata   Next, install Postfix to send notification emails. If you want to use another solution to send emails please skip this step and configure an external SMTP server after GitLab has been installed.   sudo apt-get install -y postfix   During Postfix installation a configuration screen may appear. Select 'Internet Site' and press enter. Use your server's external DNS for 'mail name' and press enter. If additional screens appear, continue to press enter to accept the defaults. 2. Add the GitLab package repository and install the package Add the GitLab package repository.   curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.deb.sh | sudo bash   Next, install the GitLab package. Make sure you have correctly set up your DNS, and change https://gitlab...

How to install nuke in windows 10 and windows 11,Installing Nuke on Windows, Install Nuke on Windows

  SINGLE MACHINE 1.Install Your Foundry Product 2.Install FLT7 (If you already have our rlm server working and running , jump to step 8)  3.Stop Foundry License Server 4.Copy the cracked rlm.foundry.exe over the original one (C:\Program Files\The Foundry\LicensingTools7.1\bin\RLM\rlm.foundry.exe)  5.Edit xf_foundry.lic replacing desktop 1234567890123456 (host name, Mac-Address)  You can get those informations using rlmutil.exe , a simple dos window ipconfig/all   or you can start Foundry License Utility and choose Diagnostics and Run Diagnostics, you will find your hostname, your mac address (System ID)     PORT is by default 5053 if you dont put any (dont forget to delete the word PORT then if you dont want to specify one) . If you need more infos read RLM manual. 6.Copy the xf_foundry.lic to C:\ProgramData\The Foundry\RLM or C:\Program Files\The Foundry\LicensingTools7.1\bin\RLM\ 7.Restart RLM Server you can do that from services or just with Fo...

How to install Docker on Ubuntu Desktop, Ubuntu Server & AWS Ubuntu Server https://youtu.be/EiGZlkqPuN0

 How to install Docker in Ubuntu Desktop, Ubuntu Server & AWS Ubuntu Server... 1. sudo apt update 2. sudo apt install apt-transport-https ca-certificates curl software-properties-common 3. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 4. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" 5. sudo apt update 6. apt-cache policy docker-ce 7. sudo apt install docker-ce 8. sudo systemctl status docker 9. docker run hello-world 10. docker search ubuntu 11. docker pull ubuntu 12. docker images 13. docker run -it ubuntu 14. apt update 15. apt install nodejs 16. node -v 17. exit 18. docker ps 19. docker ps -a 20. docker ps -l Thanks For Watching ..... https://youtu.be/EiGZlkqPuN0

How to Install Apache, MySQL and PHP on Ubuntu 20.10

 How to Install Apache, MySQL and PHP on Ubuntu 20.10 1. Install Apache :- sudo apt-get update -y #using the -y option will automatically accept the conditions of the source update sudo apt-get install apache2 -y  sudo apt-get install apache sudo systemctl start apache 2. Install MySQL:- sudo apt-get install mysql-server -y sudo /usr/bin/mysql_secure_installation 3. Install PHP:- sudo apt-get install php -y sudo apt-get install -y php-{bcmath,bz2,intl,gd,mbstring,mcrypt,mysql,zip} sudo apt-get install libapache2-mod-php -y sudo systemctl enable apache service sudo systemctl enable mysql.service systemctl restart apache service cd /var/www/html/ rm index.html gedit index.html     save and exit Press 

How to install Apache JMeter in Ubuntu 20.04

 How to install Apache JMeter in Ubuntu 20.04 JMeter supports the load and performance testing om many different server/protocol types such as:       Web Servers  are HTTP, HTTPS     SOAP / REST       FTP          Database via JDBC     LDAP     Mail - SMTP, POP3, and IMAP     MongoDB (NoSQL)     Native commands or shell scripts     TCP Steps to Install JMeter:- Step 1) Install Java:- sudo apt-get update sudo apt-get install default-jre sudo apt-get install default-jdk Installing Oracle JDK (optional) sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo update-alternatives --config java Setting the "JAVA_HOME" environment variable sudo nano /etc/environment JAVA_HOME="java path" source /etc/environment Apache JMeter 4.0 (Requires Java 8 or 9.) Download Jmeter:-   http://jmeter.apache.o...

How to Install and Use NPM (Node Package Manager) on Ubuntu 20.04:-

 How to Install and Use NPM (Node Package Manager) on Ubuntu 20.04:- sudo apt-get update sudo apt-get install nodejs npm node --version npm --version npm update npm search “web framework” Installing Node.js Module using NPM:--- mkdir node-demo && cd node-demo npm install express sudo npm -g install express-generator express --version npm list npm -g list    ( install globally installed Node.js Modules)