First of all, you have to troubleshoot each LAG, one at a time. It sounds like you just plugged everything in, and you didn't walk through the setup process with one server, first. Otherwise, it sounds like you're asking us to read the manual for you. :-)
Regarding switch configuration:
On the switch, you need to create a separate link aggregation group (or "bond" or "LAG") for each individual server. So if you have Server #1 and Server #2, you need to configure LAG #1 and LAG #2 on the switch.
Most "smart" switches (web interface) have a separate configuration page for assigning switch ports to LAGs. Command line interfaces differ, but generally have a configuration sub-tree specifically to handle this. Check your switch's manual--there will be a chapter dedicated to this topic.
Specifically, you'll need to assign each server's real (physical) switch ports to that server's LAG. If Server #1 plugs into switch ports 5 and 6, then you assign switch ports 5 and 6 to LAG #1. Server #2 gets the same treatment, except its switch ports get assigned to LAG #2.
Configure the LAG-specific parameters for each LAG. Make sure you configure the LACP timeout parameter identically for each LAG/server pair. Generally, you want to use a "short" (1 second) LACP timeout, but it's most important that the settings are the same on both sides. You'll also want to make sure that the LAG type is correct: Many switches support multiple link aggregation/bonding types, chiefly Cisco's Portchannel and 802.3ad. You must configure your LAGs for DYNAMIC 802.3ad operation, to match how your Linux machines are configured.
Finally, you should configure any VLAN, trunking, or other port-specific parameters for each LAG. For these parameters, your switch will treat each LAG as if it were just another switch port--it can be tagged or trunked, you can turn on Jumbo frames, you can filter traffic, etc. Whatever settings you gave the underlying, real member ports are ignored while those ports are assigned to the LAG.
After you've configured your LAGs and assigned their port settings, you should be able to check the status of each one through the switch interface. It will report some kind of link state, probably an overall state for the whole bonded group plus the states of the individual real links in the group. You may get more information, depending on your switch interface.
On the Linux server, run cat /proc/net/bonding/bond0
(change 'bond0' to whatever your bond device name is) to see the status of the whole bond and the member links. This shows a stanza for the bond and each member link, and each stanza will have a line like 'MII Status: up' if it's healthy and functioning.