Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apt update
- apt upgrade -y
- apt install ca-certificates apt-transport-https lsb-release gnupg curl nano unzip -y
- wget -q https://packages.sury.org/php/apt.gpg -O- | apt-key add -
- echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | tee /etc/apt/sources.list.d/php.list
- apt update
- apt install apache2 -y
- apt install php7.4 php7.4-cli php7.4-common php7.4-curl php7.4-gd php7.4-intl php7.4-json php7.4-mbstring php7.4-mysql php7.4-opcache php7.4-readline php7.4-xml php7.4-xsl php7.4-zip php7.4-bz2 libapache2-mod-php7.4 -y
- apt install mariadb-server mariadb-client -y
- mysql_secure_installation
- cd /usr/share
- wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.zip -O phpmyadmin.zip
- unzip phpmyadmin.zip
- rm phpmyadmin.zip
- mv phpMyAdmin-*-all-languages phpmyadmin
- chmod -R 0755 phpmyadmin
- nano /etc/apache2/conf-available/phpmyadmin.conf
- ---------------------
- # phpMyAdmin Apache configuration
- Alias /phpmyadmin /usr/share/phpmyadmin
- <Directory /usr/share/phpmyadmin>
- Options SymLinksIfOwnerMatch
- DirectoryIndex index.php
- </Directory>
- # Disallow web access to directories that don't need it
- <Directory /usr/share/phpmyadmin/templates>
- Require all denied
- </Directory>
- <Directory /usr/share/phpmyadmin/libraries>
- Require all denied
- </Directory>
- <Directory /usr/share/phpmyadmin/setup/lib>
- Require all denied
- </Directory>
- -------------------
- a2enconf phpmyadmin
- systemctl reload apache2
- mkdir /usr/share/phpmyadmin/tmp/
- chown -R www-data:www-data /usr/share/phpmyadmin/tmp/
- mysql -u root
- UPDATE mysql.user SET plugin = 'mysql_native_password' WHERE user = 'root' AND plugin = 'unix_socket';
- FLUSH PRIVILEGES;
- exit
- --------------------------------
- mkdir /home/FXServer/
- mkdir /home/FXServer/server/
- cd /home/FXServer/server
- wget [link in Zeile eintragen]
- cd /home/FXServer/server && tar xf fx.tar.xz
- rm fx.tar.xz
- ---------
- wget link : https://runtime.fivem.net/artifacts/fivem/build_proot_linux/master/
- --------
- cd /home/FXServer
- -------
- Das hier Herunterladen:
- https://workupload.com/file/aTmpyntL3hE
- -------
- apt-get install unzip
- unzip server-data.zip
- rm neptunbrot tamplate.zip
- apt-get install screen
- chmod 777 start.sh
- -------
- cd /home/FXServer
- ./start.sh
- screen -x
- ----------------
- link´s für sie server.cfg
- https://steamcommunity.com/dev/apikey
- https://keymaster.fivem.net/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement