Welcome to World of IPTV

Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?

Forum Rules

Our Rules: Read to avoid getting banned!

Advertising

Introduce Yourself to the World with Us!

Resource Database

Find the newest resources around IPTV!

Account upgrade

Upgrade your account to unlock more benefits!
Resource icon

Resource XUI.ONE BACKUP SCRIPT 1.01

Register & Get access to index

elchispa

Extended Member
Ext. Member
Joined
Sep 27, 2019
Messages
109
Reaction score
1,106
Points
104
Location
spain
elchispa submitted a new resource:

XUI.ONE BACKUP SCRIPT - XUI BACKUP

This Script creates secure copies for XUI.ONE

Creates sql files
Creates compressed sql.zip files
in the same folder /home/xui/backups
Download the script
Unzip xui_backup.zip
Copy its contents to /root
chmod 777 xui_backup
./xui_backup

and you will have your backups in /home/xui/backups/ or
in the panel under backups

If you need automatic crontab options
edit the crontab file
ssh as root
crontab -e
and paste the desired option
option1 #crontab every 4 hours: * */4 * * * * bash...

Read more about this resource...
 
Hi,
Why make an script ?
Backup work fine.
And if doesn't work on certain dedicated server, you need to make an config and it's work ;)

Thanks for the info, but if share how to solve the issue, would be more usefull mate.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
is an interim solution until the problem is resolved.
The prob was on server, not on panel, you need to make establish rights in the server for the backups to work.
Because after several tries on different VPS and servers.

Here is my return:
- On VPS: Works 100%
- On dedicated server: It depends on the server, if there are ip failover etc. etc... So it will have to be given access for it to work 100%

I have already solved the problem
 
The prob was on server, not on panel, you need to make establish rights in the server for the backups to work.
Because after several tries on different VPS and servers.

Here is my return:
- On VPS: Works 100%
- On dedicated server: It depends on the server, if there are ip failover etc. etc... So it will have to be given access for it to work 100%

I have already solved the problem
what is the solution, share it here so that everyone can benefit, or it doesn't make sense after I didn't write the solution
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
The prob was on server, not on panel, you need to make establish rights in the server for the backups to work.
Because after several tries on different VPS and servers.

Here is my return:
- On VPS: Works 100%
- On dedicated server: It depends on the server, if there are ip failover etc. etc... So it will have to be given access for it to work 100%

I have already solved the problem
Sorry to reach out so direct but im completely stumped and this is off topic

Xui one I have had it set up and working fine for awhile but just yesterday I started having a issue with any new content I add goes uncategories and does not work the stream works in panel player but not on anything else i make new categories and bouquet but shows uncategories
 
The prob was on server, not on panel, you need to make establish rights in the server for the backups to work.
Because after several tries on different VPS and servers.

Here is my return:
- On VPS: Works 100%
- On dedicated server: It depends on the server, if there are ip failover etc. etc... So it will have to be given access for it to work 100%

I have already solved the problem


Hi, could you share the solution?

myself on a dedicated server does not work xui's own backup, I click on create backup now and nothing works. I'm currently doing manual backups by mysqldump.
 
The prob was on server, not on panel, you need to make establish rights in the server for the backups to work.
Because after several tries on different VPS and servers.

Here is my return:
- On VPS: Works 100%
- On dedicated server: It depends on the server, if there are ip failover etc. etc... So it will have to be given access for it to work 100%

I have already solved the problem

Hi, could you share what config on dedicated server is correct ? I have problem with http://ip-address:port/c ERROR 404.

None mag client cannot connect to server.

It works on VPS correctly.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
for people wondering why backup doesn't work from panel, check that your user is not trying to connect in ipv6 when you click on backup now:

grep "::1" /var/log/syslog
-> [Warning] Aborted connection 66 to db: 'unconnected' user: 'unauthenticated' host: '::1' (This connection closed normally without authentication)

you have to create an user in mariadb with the credentials you had in credentials.txt:

Code:
CREATE USER 'user'@'::1' IDENTIFIED BY 'pass';
GRANT ALL PRIVILEGES ON xui.* to 'user'@'::1' WITH GRANT OPTION;
flush privileges;
 
we need solution. can anybody share the right way?
 
we need solution. can anybody share the right way

we need solution. can anybody share the right way?
Hi. I was installing xui one on for a friend today and I stumbled on the problem. Its a 20 core dedicated server from a quite popular datacenter in the Netherlands and backup would not work. we tried install on ubuntu 20 and 18, and changed many settings however no joy. After reading this thread there seems to be people indicating the problem is related to ip v6 but no clear solution.
We finally got it to work with procedures as follows.
1) perform a clean install of ubuntu 20.04 and install net tools code: apt install net-tools or apt-get net-tools
2) Disable IP v6 support persistent. to do so log on as root or sudo and edit the following file /etc/default/grub with your favorite text editor.
Change line GRUB_CMDLINE_LINUX_DEFAULT="" to GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1" and save the change.
Then in shell type the following: update-grub or sudo update-grub to update the changes.
3) Install xui one (and crack if nulled) and backup should be now working. (the first backup should be already present in the list)
This problem only seems to happen on certain dedicated servers with multiple NICs and ip v6 support and never on vps.
I hope its of help
Regards
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
Hi. I was installing xui one on for a friend today and I stumbled on the problem. Its a 20 core dedicated server from a quite popular datacenter in the Netherlands and backup would not work. we tried install on ubuntu 20 and 18, and changed many settings however no joy. After reading this thread there seems to be people indicating the problem is related to ip v6 but no clear solution.
We finally got it to work with procedures as follows.
1) perform a clean install of ubuntu 20.04 and install net tools code: apt install net-tools or apt-get net-tools
2) Disable IP v6 support persistent. to do so log on as root or sudo and edit the following file /etc/default/grub with your favorite text editor.
Change line GRUB_CMDLINE_LINUX_DEFAULT="" to GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1" and save the change.
Then in shell type the following: update-grub or sudo update-grub to update the changes.
3) Install xui one (and crack if nulled) and backup should be now working. (the first backup should be already present in the list)
This problem only seems to happen on certain dedicated servers with multiple NICs and ip v6 support and never on vps.
I hope its of help
Regards
can this do do when xui is already installed and working ? I do atm mz backup always over ssh
 
Hi. I was installing xui one on for a friend today and I stumbled on the problem. Its a 20 core dedicated server from a quite popular datacenter in the Netherlands and backup would not work. we tried install on ubuntu 20 and 18, and changed many settings however no joy. After reading this thread there seems to be people indicating the problem is related to ip v6 but no clear solution.
We finally got it to work with procedures as follows.
1) perform a clean install of ubuntu 20.04 and install net tools code: apt install net-tools or apt-get net-tools
2) Disable IP v6 support persistent. to do so log on as root or sudo and edit the following file /etc/default/grub with your favorite text editor.
Change line GRUB_CMDLINE_LINUX_DEFAULT="" to GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1" and save the change.
Then in shell type the following: update-grub or sudo update-grub to update the changes.
3) Install xui one (and crack if nulled) and backup should be now working. (the first backup should be already present in the list)
This problem only seems to happen on certain dedicated servers with multiple NICs and ip v6 support and never on vps.
I hope its of help
Regards
thank you pal. i have made the change on an active server and will report back when i check to see if works ;-)
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changcdn
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
After several tries all your answer command etc etc, I finally solved my problem, put your backups file in attribute 777 and it works directly after
 
After several tries all your answer command etc etc, I finally solved my problem, put your backups file in attribute 777 and it works directly after
I'm still having this issue, anything else you did ?
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top