Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

BX750MI - how to change battery.charge.low

APC UPS for Home and Office Forum

Support forum to share knowledge about installation and configuration of APC offers including Home Office UPS, Surge Protectors, UTS, software and services.

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • APC UPS, Critical Power, Cooling and Racks
  • APC UPS for Home and Office Forum
  • BX750MI - how to change battery.charge.low
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
BillP
Administrator BillP Administrator
2151
Teken
Spock Teken
99
voidstar_apc
Janeway voidstar_apc
83
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to APC UPS for Home and Office Forum
Solved
szerwony
Crewman szerwony
Crewman

Posted: ‎2024-05-20 12:50 AM

0 Likes
13
3472
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-20 12:50 AM

BX750MI - how to change battery.charge.low

Hi. Recently I bought APC BX750MI for my Synology NAS. I did a simulated power loss and it turned out, that NAS enters standby mode after 4 minutes, when UPS battery is at 95%. It's because of battery.charge.low value, which is set to 95 in my UPS. So the question is, how can I change this value? There is no such option in PowerChute software. Why battery.charge.low is set to 95, if battery is almost full?

Labels
  • Labels:
  • Home & Office - UPS & Software
  • Tags:
  • english
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
StanDD
Crewman StanDD
Crewman

Posted: ‎2025-01-28 11:35 PM

In response to jpsmith16
0 Likes
1
2168
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-01-28 11:35 PM

Yes, sure, put this script somewhere accessible, for example:
/volume2/homes/YOUR_USERNAME/scripts/update_ups_config.sh

 

File contents:

#!/bin/bash
# Path to UPS configuration file
UPS_CONF="/etc/ups/ups.conf"

# Check if configuration file exists
if [ ! -f "$UPS_CONF" ]; then
echo "Error: file $UPS_CONF not found."
exit 1
fi

# Backup the original file
cp "$UPS_CONF" "${UPS_CONF}.bak"
echo "Configuration file backup created: ${UPS_CONF}.bak"

# Rewrite the configuration file content
cat <<EOL > "$UPS_CONF"
pollinterval = 5
[ups]
driver = usbhid-ups
port = auto
ignorelb
override.battery.charge.low = 20
EOL
echo "Configuration file $UPS_CONF successfully updated."

# Restart UPS service
sudo systemctl restart ups-usb
if [ $? -eq 0 ]; then
echo "UPS service successfully restarted."
else
echo "Error restarting UPS service."
exit 1
fi

 

And create a task in the task scheduler in the NAS web interface that will be launched when NAS starts:

 

StanDD_0-1738136064788.png

 

StanDD_1-1738136099488.png

 

 

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 13
Teken
Spock Teken
Spock

Posted: ‎2024-05-20 07:51 AM

0 Likes
4
3446
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-20 07:51 AM

Can you provide an image capture of the different options (tabs) in Power Chute Personal Edition as it relates to the power options, shutdown, and voltage control.

 

What does PCPE indicate is the connected load to the UPS in watts? When  you disconnect the AC Mains from the wall what does PCPE indicate the runtime is vs battery voltage before it begins the shutdown sequence?

Reply

Link copied. Please paste this link to share this article on your social media post.

szerwony
Crewman szerwony
Crewman

Posted: ‎2024-05-20 11:44 PM

In response to Teken
0 Likes
3
3428
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-20 11:44 PM

In the downloads for my UPS I see only PowerChute Serial Shutdown, not PowerChute Personal Edition.

I also did a test with NAS unplugged from the UPS, so NAS doesn't know it needs to turn off. I let it run from battery for 25 minutes and after that UPS battery was at 55%. So on the hardware side, UPS is fine.

Reply

Link copied. Please paste this link to share this article on your social media post.

Teken
Spock Teken
Spock

Posted: ‎2024-05-21 03:24 AM

In response to szerwony
0 Likes
2
3425
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-21 03:24 AM

There should be a setting to define when the NAS should begin the shutdown sequence either based on available runtime or battery voltage / both during a grid down event.

 

Post up what the available options are for PCSS so it’s viewable on the APC Forum.

Reply

Link copied. Please paste this link to share this article on your social media post.

szerwony
Crewman szerwony
Crewman

Posted: ‎2024-05-21 12:30 PM

In response to Teken
0 Likes
1
3398
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-21 12:30 PM

Here are the screenshots. 1 - 4 are showing the settings of UPS. 5 - 6 are just PowerChute settings. There is nowhere an option to change battery.charge.low value.

I also contacted APC support. They don't know how to change it and they said that NAS is probably reading wrong value of battery.charge.low. But when I asked what's the default value when UPS comes out from factory they told they don't know. What an incompetence.

Attachments
Reply

Link copied. Please paste this link to share this article on your social media post.

Teken
Spock Teken
Spock

Posted: ‎2024-05-22 02:00 AM

In response to szerwony
0 Likes
0
3380
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-22 02:00 AM

I would suggest you contact them again to obtain the last release of Power Chute Personal Edition. You have a 50/50 chance of PCPE working or not as the newer models are not supported on the legacy PCPE Software.

 

In your screenshot what are the options for the computer that is greyed out?!?

Reply

Link copied. Please paste this link to share this article on your social media post.

szerwony
Crewman szerwony
Crewman

Posted: ‎2024-05-25 06:50 AM

0 Likes
3
3328
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-25 06:50 AM

I attach photos from PCPE, there is nothing more than in new software.

Attachments
Reply

Link copied. Please paste this link to share this article on your social media post.

Teken
Spock Teken
Spock

Posted: ‎2024-05-28 05:04 AM

In response to szerwony
0 Likes
2
3314
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-28 05:04 AM

Appreciate you taking the time to upload what the PCPE tabs show as the settings and options.

 

Some random thoughts and suggestions given some unknowns. The first step is to confirm the UPS operates as expected. That would entail installing PCPE on a computer system and simulating a grid down / lights out event.

 

The key test is to see and affirm the computer runs for the expected time before a graceful shutdown. If the PC does operate correctly this way but the NAS doesn’t.

 

This would indicate some kind of problem or conflict with the two systems. Given there doesn’t seem to be more options available in the APC PCPE software I would focus on the NAS.

 

Depending upon the brand and model I would see if others have experienced the same problem and what the solutions were applied to solve the same.

 

I would start with what options are available on the NAS. If you would like to provide screen shots of them here. I have no problem reviewing them to see if some changes can be suggested / made.

 

I would also suggest you see if there are software / firmware updates available for your NAS. You may be surprised to learn one of the updates solved this very issue.

 

As you have done here I would recommend you reach out to the NAS vendor to see if they have some insight as it relates to this problem.

 

Please do call out the Synology model you have on hand. Lastly, as a break fix / stop gab once the UPS has been defined to your liking remove the USB cable connecting the two systems (UPS & NAS).

 

In this less than ideal situation the UPS will continue to operate until it’s defined 5 minutes before shutting down. Obviously the NAS will operate a lot longer during an outage than you have experienced before.

 

But, the NAS will not know to initiate a graceful shutdown because it hasn’t received the shutdown sequence command. 

Let me know what you find in terms of updates for your NAS. Along with image captures of the options in the NAS as it relates to power management etc.

 

Cheers! 👍🍺

Reply

Link copied. Please paste this link to share this article on your social media post.

szerwony
Crewman szerwony
Crewman

Posted: ‎2024-05-29 03:34 AM

In response to Teken
0 Likes
1
3301
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-29 03:34 AM

There are not many options in the NAS, and on top of that, they are all overwritten by the low battery signal from the UPS. It's Synology DS1522+. I already contacted Synology support before posting here. They checked logs from my NAS and send screenshot where it's visible, that UPS sends low battery signal at 95%. For safety reasons Synology doesn't allow to ignore this signal.

Attachments
Reply

Link copied. Please paste this link to share this article on your social media post.

Teken
Spock Teken
Spock

Posted: ‎2024-05-29 08:50 AM

In response to szerwony
0 Likes
0
3291
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-05-29 08:50 AM

I’m pretty surprised by that reply from Synology. ☹️ As I see it you follow my first suggestion and leave the USB disconnected to offer the longest operational runtime.

 

The obvious downside of going this route is if the power outage is longer than expected. At that point the NAS won’t know to either shutdown or go into low power mode (sleep / hibernate) and thus risk data corruption. 🤦‍♂️

 

You may consider installing some third party software like NUT / APCUPSD. You would disable the Synology UPS software and allow the other 3rd party software to manage the NAS.

 

Let me know what you decide and the final outcome. As I’m sure this information will assist others asking the same! 👍

Reply

Link copied. Please paste this link to share this article on your social media post.

StanDD
Crewman StanDD
Crewman

Posted: ‎2024-09-12 04:24 AM

0 Likes
0
2870
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2024-09-12 04:24 AM

Here's the solution in case someone comes here with the same problem (Back-UPS BX750MI + Synology NAS UPS):

 

1. Connect to Synology NAS via SSH
2. Edit /etc/ups/ups.conf

    pollinterval = 5
    [ups]
    driver = usbhid-ups
    port = auto
    ignorelb
    override.battery.charge.low = 20

 

3. Restart UPS service: sudo systemctl restart ups-usb

4. Check: upsc ups | grep battery.charge

Reply

Link copied. Please paste this link to share this article on your social media post.

jpsmith16
jpsmith16
Cadet

Posted: ‎2025-01-25 11:22 AM

0 Likes
2
2207
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-01-25 11:22 AM

Sorry to bring up a dormant thread, but is there a way to make this change persist upon NAS reboot? I made the changes referenced, however when NAS reboots, it gets overwritten

 

Wondering if there is a script I can set to trigger after a reboot that will replace the ups.conf file with the correct details?

Reply

Link copied. Please paste this link to share this article on your social media post.

StanDD
Crewman StanDD
Crewman

Posted: ‎2025-01-28 11:35 PM

In response to jpsmith16
0 Likes
1
2169
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-01-28 11:35 PM

Yes, sure, put this script somewhere accessible, for example:
/volume2/homes/YOUR_USERNAME/scripts/update_ups_config.sh

 

File contents:

#!/bin/bash
# Path to UPS configuration file
UPS_CONF="/etc/ups/ups.conf"

# Check if configuration file exists
if [ ! -f "$UPS_CONF" ]; then
echo "Error: file $UPS_CONF not found."
exit 1
fi

# Backup the original file
cp "$UPS_CONF" "${UPS_CONF}.bak"
echo "Configuration file backup created: ${UPS_CONF}.bak"

# Rewrite the configuration file content
cat <<EOL > "$UPS_CONF"
pollinterval = 5
[ups]
driver = usbhid-ups
port = auto
ignorelb
override.battery.charge.low = 20
EOL
echo "Configuration file $UPS_CONF successfully updated."

# Restart UPS service
sudo systemctl restart ups-usb
if [ $? -eq 0 ]; then
echo "UPS service successfully restarted."
else
echo "Error restarting UPS service."
exit 1
fi

 

And create a task in the task scheduler in the NAS web interface that will be launched when NAS starts:

 

StanDD_0-1738136064788.png

 

StanDD_1-1738136099488.png

 

 

Reply

Link copied. Please paste this link to share this article on your social media post.

jpsmith16
jpsmith16
Cadet

Posted: ‎2025-01-30 07:24 AM

In response to StanDD
0 Likes
0
2143
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2025-01-30 07:24 AM

Thanks very much for the detailed reply! Will try that out

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of